public marks

PUBLIC MARKS from decembre with tag plugin

2020

đź“› FIR / CHROME - ADDON - ANTI FAKE TOOL - InVID Verification Plugin - InVID project

(via)
This toolkit is provided by the InVID european project to help journalists to verify content on social networks (please note that external InVID services used via this interface, such as those presented under the Analysis and Keyframes tabs, are not open-sourced). It has been designed as a verification “Swiss army knife” helping journalists to save time and be more efficient in their fact-checking and debunking tasks on social networks especially when verifying videos and images. The provided tools allow you to quickly get contextual information on Facebook and YouTube videos, to perform reverse image search on Google, Baidu or Yandex search engines, to fragment videos from various platforms (Facebook, Instagram, YouTube, Twitter, Daily Motion) into keyframes, to enhance and explore keyframes and images through a magnifying lens, to query Twitter more efficiently through time intervals and many other filters, to read video and image metadata, to check the video copyrights, and to apply forensic filters on still images. The main features of the toolkit are explained below, and in the following tutorial video.

2018

EBOOK - Comment déprotéger un livre Kindle pour le prêter, le lire sur l’ordi ou l’exporter sous un autre format (PDF, EPUB) ? – Korben

Hier soir, je voulais passer à ma chérie, un livre Kindle que j’ai acheté et bien apprécié. Mais pas moyen, via le site Amazon France, de « prêter » un livre à quelqu’un de sa famille. En effet, quand vous achetez un ebook sur Amazon, celui-ci est verrouillé et lisible uniquement avec la liseuse choisie. Pourtant, il me semblait que c’était possible, mais en creusant un peu, j’ai vu que cette possibilité était offerte uniquement sur le site US d’Amazon. Dommage… Je n’aurai pas eu ce souci avec un livre papier, c’est certain. Comment faire alors ? Et bien je suis retombé sur un vieux projet baptisé DeDrm, toujours maintenu, qui permet de faire sauter le DRM des ebooks et ainsi pouvoir les lire sur n’importe quel support. Pratique si vous achetez des livres que vous voulez ensuite lire sur votre ordinateur ou sur un autre support qui ne sait lire que les epub ou les PDF. DeDrm est disponible sous la forme d’une application Windows, Mac et d’un plugin pour Calibre qui déverrouille votre livre au moment de l’import dans le logiciel. Mais avant, pour que cela ne fonctionne, il faut relever le n° de série de votre appareil officiel (Kindle) en cliquant ici puis sur le petit bouton avec les 3 petits points.

JQUERY - COOKIE - Easy jQuery Cookies: Get, Set, Update, Delete | kevinleary.net

(via)
The jQuery cookie plugin makes it very easy to create, update and access information using cookies.

JAVASCRIPT - URL - QUERY - url - How can I get query string values in JavaScript? - Stack Overflow

Is there a plugin-less way of retrieving query string values via jQuery (or without)? If so, how? If not, is there a plugin which can do so?

CSS - TOOL - postcss/postcss: Transforming styles with JS plugins

(via)
PostCSS is a tool for transforming styles with JS plugins. These plugins can lint your CSS, support variables and mixins, transpile future CSS syntax, inline images, and more. PostCSS is used by industry leaders including Wikipedia, Twitter, Alibaba, and JetBrains. The Autoprefixer PostCSS plugin is one of the most popular CSS processors.

2017

JQUERY CHECKBOX - PLUGIN - jQuery-CheckAll by mjball

Using the plugin: To use the checkbox with id master to control the checkboxes that are children of the form with id myForm, this is all you need:

LOG - IMAGE - PLUGIN - bG'MIC - GREYC's Magic for Image Computing: A Full-Featured Open-Source Framework for Image Processing

by 1 other (via)
G'MIC is a full-featured open-source framework for image processing, distributed under the CeCILL license. It provides several different user interfaces to convert / manipulate / filter / visualize generic image datasets, ranging from 1d scalar signals to 3d+t sequences of multi-spectral volumetric images, thus including 2d color images.

LOG - IMAGE - PLUGIN - G'MIC - PC Astuces - Améliorer GIMP avec de nouveaux filtres et effets

Améliorer GIMP avec de nouveaux filtres et effets GIMP est un logiciel de traitement d'images assez complet qui est libre et gratuit et qui peut aisément remplacer le célèbre Photoshop pour tous vos travaux de retouches. Pour aller plus loin, vous pouvez ajouter de nombreux filtres et effets au logiciel à l'aide du plugin G'MIC. Ce dernier est un outil qui définit un ensemble de commandes permettant des traitements complexes à appliquer à vos images. Avec le plugin G'MIC pour GIMP, vous avez directement accès à plus d'une centaine d'effets déjà programmés et que vous pouvez personnaliser grâce aux nombreux réglages disponibles. Voici comment les ajouter à GIMP, que vous soyez sous Windows ou sous Linux.

jQUERY - JAVASCRIPT - jQuery udraggable Plugin

jquery.udraggable.js This plugin provides an API similar to jQueryUI's draggable but with support for unified mouse and touch events. It builds on Michael S. Mikowski's jquery.event.ue unified event plugin.

html - Draggable div without jQuery UI - Stack Overflow

(via)
Here's another updated code: $(document).ready(function() { var $dragging = null; $('body').on("mousedown", "div", function(e) { $(this).attr('unselectable', 'on').addClass('draggable'); var el_w = $('.draggable').outerWidth(), el_h = $('.draggable').outerHeight(); $('body').on("mousemove", function(e) { if ($dragging) { $dragging.offset({ top: e.pageY - el_h / 2, left: e.pageX - el_w / 2 }); } }); $dragging = $(e.target); }).on("mouseup", ".draggable", function(e) { $dragging = null; $(this).removeAttr('unselectable').removeClass('draggable'); }); });​

jQUERY - Responsive jQuery Masonry — Osvaldas Valutis (2012)

2012 …or Pinterest-style layout. jQuery Masonry is a jQuery-based plugin for a dynamic grid layout built by David DeSandro. What it does is “arranges elements vertically, positioning each element in the next open spot in the grid” and what you get is “minimized vertical gaps between elements of varying height”.

jQuery - LIBRARY - SCROLL - Tiny Scrollbar: A crossbrowser lightweight Javascript / jQuery scrollbar.

What is it? Tiny Scrollbar is a nice and elegant way to enable the scrolling of content on mobile and desktop devices. Its designed to be a dynamic lightweight utility. Furthermore it gives a User Interface Designer a powerful way of enhancing the Ui (user interface) of a website. It comes in 2 flavours as a vanilla Javascript microlib and as a jQuery plugin. Browser support differs between the jQuery plugin and the plain Javascript microlib. Specifically, the plain Javascript microlib does not support legacy browsers such as IE6-8. Use the jQuery plugin release if support for those browsers is required. Source is on GitHub

CSS - GRID - Building a CSS Grid Overlay | CSS-Tricks

Let's take a look at what it takes to build a grid overlay with CSS. It will be responsive, easily customizable and make heavy use of CSS variables (known more accurately as "CSS custom properties"). If you aren't familiar with custom properties, I'd highly recommend reading What is the difference between CSS variables and preprocessor variables? and watching Lea Verou's enlighting talk on using them. This grid overlay that we're building will consider a developer tool, as in, a tool just for us, not really our users. So, let's not worry too much about browser support (If you do care, check out caniuse… data on custom properties). While it's impossible to preprocess custom properties to behave exactly the same as native support, if you use them just like you would preprocessor variables, tools like the postCSS plugin cssnext can transform them into CSS compliant with older browsers.

2016

FREEBOX - Universal Media Server - 01net.com - Telecharger.com

(via)
Universal Media Server est un serveur multimédia DLNA qui permet de profiter de vos fichiers sur n'importe quel appareil de la maison, cablé en réseau. L'application est compatible avec la FreeBox HD, la PS3, Google Android, XBMC Media Server, les télévisions connectées Samsung, la XboX 360, etc. Universal Media Server dispose de réglages pour le transcodage des protocoles et codecs (MEncoder, FFmpeg, Avisynth, etc.) ainsi que de paramètres ajustables pour la navigation (parsing), et un gestionnaire de plugins (GrooveShark, IMDB, GoogleMusic, etc.).

FIR - SEARCH - Firefox Plugins : Créez votre propre module de recherche sur Firefox | Le Référencement

(via)
Comment créer son propre module de recherche ? Le module de recherche sous Firefox est un fichier XML dont le code est écrit de la manière suivante

2015

jQuery - Infinite Scroll - jQuery One Page Navigation Plugin | Trevor Davis | Front-End Developer @ Viget

(via)
When appropriate, I am a fan of the one-page sites. I really like the ones that add smooth scrolling and highlight the navigation depending upon which part of the page you have scrolled to.

INFINITE SCROLL - jQuery - Reset / disable infinite scroll after AJAX call - Stack Overflow

I am using infinite-ajax-scroll (https://github.com/webcreate/infinite-ajax-scroll) plugin with filtering. I have the filters working with the infinite scroll but my issue is, whenever the scroll get the the end of the results for one filter it will no longer scroll, even after another filter is selected. I therefore need to reset the infinate scroll when the filter is selected but I cannot find anywhere in the documentation on how to reset this and am not great with JQuery and so cannot figure this out.

READY2SEARCH - Exemples - Recherche Bibliothèque de l'Université OPAC

Ready2Search makes search plug-in for Internet Explorer, Firefox, Chrome, and Google Toolbar. HERE : examples in en japonais

2014

PIN - Pinterest - WordPress › jQuery Pin It Button For Images « WordPress Plugins

(via)
If you're looking for an easy way to pin images in your blog posts and pages, this plugin will help you with that. It highlights images and adds a "Pin it" button over them once the user hovers his mouse over an image. Once the user clicks the "Pin it" button, the plugin shows a pop-up window with the image and a description. Everything is ready for pinning, although the user can alter the description

jQuery Collapser - collapsing/truncating an element text - Plugin demo page - Aakash Web

Collapser is a small and useful jQuery plugin for collapsing/truncating an element text by words, characters and lines with a flexible API. It is an all in one plugin with multiple functionalities to truncate a paragraph or any element as desired.

JQuery Plugin : Freetile.js (organiser contenu ) - By Yannis Chatzikonstantinou /

(via)
Freetile est un plugin pour jQuery qui permet à l' organisation du contenu de la page Web dans une mise en page efficace , dynamique et réactive . Elle peut être appliquée à un élément conteneur et il va tenter de l'organiser ses enfants dans une disposition qui permet l'utilisation optimale de l'espace de l'écran , par " l'emballage " dans un arrangement serré . Freetile a été le moteur de rendu derrière Assemblage et Assemblage Plus pour près de deux ans , et maintenant il devient disponible en tant que projet Open Source indépendant .

JQuery - jQuery Reverse Order plugin | The Arc90 Lab

(via)
Ever want to reverse the order of a group of DOM elements? Or want to give your user the option?

2013

JAVASCRIPT - jQuery - Lazy Load Plugin for jQuery

by 10 others (via)
Lazy Load is delays loading of images in long web pages. Images outside of viewport are not loaded until user scrolls to them. This is opposite of image preloading. Using Lazy Load on long web pages will make the page load faster. In some cases it can also help to reduce server load.