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

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

5185 links 

page 96 / 260

Liste des liens

start [Wiki]
2018-12-4 10:51 - permalink -

Le wiki d'Oros, avec tout plein de bonnes choses dedans !

oros wiki
- https://ecirtam.net/wiki/doku.php
Microsoft is building a Chromium-powered web browser that will replace Edge on Windows 10
2018-12-4 10:21 - permalink -

Pas sûr que ce soit une bonne chose que les moteurs de rendus disparaissent comme peau de chagrin. :-(

chrome micro$oft navigateur web
- https://www.windowscentral.com/microsoft-building-chromium-powered-web-browser-windows-10
Barre de progression avec l’élément HTML5 <progress> - Styler en CSS une barre de progression - CSS3 Create
2018-12-4 2:51 - permalink -
css html5
- http://www.css3create.com/Barre-de-progression-avec-l-element-HTML5-progress
Sécurité des applications AJAX
2018-12-4 2:36 - permalink -
ajax javascript sécurité
- https://www.cert-ist.com/public/fr/SO_detail?code=securite_ajax
GitHub - brillout/forge-sha256: SHA-256 implementation extracted from digitalbazaar/forge
2018-11-29 0:38 - permalink -

SHA-256 implementation extracted from digitalbazaar/forge

cryptographie javascript
- https://github.com/brillout/forge-sha256
C & F Éditions
2018-11-27 10:58 - permalink -

Une grande partie des activités humaines se déroule aujourd'hui sur l'Internet. On y fait des affaires, de la politique, on y bavarde, on travaille, on s'y distrait, on drague... L'Internet n'est donc pas un outil qu'on utilise, c'est un espace où se déroulent nos activités.

Stéphane Bortzmeyer

internet livre
- https://cfeditions.com/cyberstructure/
Les croissants au beurre maison : Il était une fois la pâtisserie
2018-11-27 10:34 - permalink -

Miam

croissants recette
- https://www.iletaitunefoislapatisserie.com/2014/02/les-croissants-maison.html
Encoder et décoder des données en base64 - le hollandais volant - Le Hollandais Volant
2018-11-27 10:16 - permalink -

Salut Timo,
Tu as laissé le lien vers cryptoJs que tu n'utilises plus...

base64 javascript
- https://lehollandaisvolant.net/?mode=links&id=20181126181156
Image preview example
2018-11-26 11:5 - permalink -
<!doctype html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<title>Image preview example</title>
<script type="text/javascript">
oFReader = new FileReader(), rFilter = /^(?:image\/bmp|image\/cis\-cod|image\/gif|image\/ief|image\/jpeg|image\/jpeg|image\/jpeg|image\/pipeg|image\/png|image\/svg\+xml|image\/tiff|image\/x\-cmu\-raster|image\/x\-cmx|image\/x\-icon|image\/x\-portable\-anymap|image\/x\-portable\-bitmap|image\/x\-portable\-graymap|image\/x\-portable\-pixmap|image\/x\-rgb|image\/x\-xbitmap|image\/x\-xpixmap|image\/x\-xwindowdump)$/i;

oFReader.onload = function (oFREvent) {
  document.getElementById("uploadPreview").src = oFREvent.target.result;
};

function loadImageFile() {
  if (document.getElementById("uploadImage").files.length === 0) { return; }
  var oFile = document.getElementById("uploadImage").files[0];
  if (!rFilter.test(oFile.type)) { alert("You must select a valid image file!"); return; }
  oFReader.readAsDataURL(oFile);
}
</script>
</head>

<body onload="loadImageFile();">
<form name="uploadForm">
<table>
<tbody>
<tr>
<td><img id="uploadPreview" style="width: 100px; height: 100px;" src="" alt="Image preview" /></td>
<td><input id="uploadImage" type="file" name="myPhoto" onchange="loadImageFile();" /></td>
</tr>
</tbody>
</table>
<p><input type="submit" value="Send" /></p>
</form>
</body>
</html>

Multinavigateurs :

<!doctype html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<title>Image preview example</title>
<script type="text/javascript">
var loadImageFile = (function () {
    if (window.FileReader) {
        var oPreviewImg = null, oFReader = new window.FileReader(),
            rFilter = /^(?:image\/bmp|image\/cis\-cod|image\/gif|image\/ief|image\/jpeg|image\/jpeg|image\/jpeg|image\/pipeg|image\/png|image\/svg\+xml|image\/tiff|image\/x\-cmu\-raster|image\/x\-cmx|image\/x\-icon|image\/x\-portable\-anymap|image\/x\-portable\-bitmap|image\/x\-portable\-graymap|image\/x\-portable\-pixmap|image\/x\-rgb|image\/x\-xbitmap|image\/x\-xpixmap|image\/x\-xwindowdump)$/i;

        oFReader.onload = function (oFREvent) {
            if (!oPreviewImg) {
                var newPreview = document.getElementById("imagePreview");
                oPreviewImg = new Image();
                oPreviewImg.style.width = (newPreview.offsetWidth).toString() + "px";
                oPreviewImg.style.height = (newPreview.offsetHeight).toString() + "px";
                newPreview.appendChild(oPreviewImg);
            }
            oPreviewImg.src = oFREvent.target.result;
        };

        return function () {
            var aFiles = document.getElementById("imageInput").files;
            if (aFiles.length === 0) { return; }
            if (!rFilter.test(aFiles[0].type)) { alert("You must select a valid image file!"); return; }
            oFReader.readAsDataURL(aFiles[0]);
        }

    }
    if (navigator.appName === "Microsoft Internet Explorer") {
        return function () {
            document.getElementById("imagePreview").filters.item("DXImageTransform.Microsoft.AlphaImageLoader").src = document.getElementById("imageInput").value;

        }
    }
})();
</script>
<style type="text/css">
#imagePreview {
    width: 160px;
    height: 120px;
    float: right;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale);
}
</style>
</head>

<body>
<div id="imagePreview"></div>

<form name="uploadForm">
<p><input id="imageInput" type="file" name="myPhoto" onchange="loadImageFile();" /><br />
<input type="submit" value="Send" /></p>
</form>
</body>
</html>
image javascript
- https://mdn.mozillademos.org/files/3698/image_upload_preview.html
Home | wire
2018-11-26 1:18 - permalink -

Un framework css

css framework
- https://www.wirecss.com/
Listen to the best YouTube music livestreams - Radios.YT
2018-11-26 0:58 - permalink -

Agrégateur de radio postées sur youtube

Musique
- https://radios.yt/
Homepage - phonosti.co
2018-11-26 0:40 - permalink -

De la musique libre de qualité

Libre Musique
- https://phonosti.co/
cchound
2018-11-26 0:31 - permalink -

De la musique libre de qualite

Libre Musique
- https://cchound.com/
WindowOrWorkerGlobalScope.atob() - Web APIs | MDN - Le Hollandais Volant
2018-11-25 20:41 - permalink -
javascript
- https://lehollandaisvolant.net/?mode=links&id=20181125153802
PeerTube instances
2018-11-22 18:59 - permalink -

Les instances PeerTube

ActivityPub instances peertube
- https://instances.joinpeertube.org/instances
bioinfo-fr.net | Le repère des Geekus biologicus
2018-11-22 14:7 - permalink -

Un blog de bioinformatique.

blog
- https://bioinfo-fr.net/
Open.Audio
2018-11-22 12:5 - permalink -

Une bibliothèque musicale qui repose sur ActivityPub.

ActivityPub fédivers Musique
- https://open.audio/about
Decentralizing Social Interactions with ActivityPub - Mozilla Hacks - the Web developer blog
2018-11-21 15:34 - permalink -
ActivityPub tutoriels
- https://hacks.mozilla.org/2018/11/decentralizing-social-interactions-with-activitypub/
Cha ronronne !
2018-11-21 15:33 - permalink -

Miaou !

dégafamisation
- https://chapril.org/
Décentraliser Internet par la fédération : l’exemple d’ActivityPub
2018-11-21 15:7 - permalink -

Rapport de stage de fin d’étude du 3 avril au 30 août 2018.
Auteure : Nathalie Rafaralahy
toky.rafaralahy (at) ecl14.ec-lyon.fr

ActivityPub pdf tutoriels
- https://asso.framasoft.org/nextcloud/s/geoJBDycra8P8AX#pdfviewer
page 96 / 260


Tags


  • shaarli
  • wikipedia

Tags cloud

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