2161 lines
250 KiB
HTML
2161 lines
250 KiB
HTML
|
<!DOCTYPE html><html lang="fr">
|
|||
|
<head><meta charset="utf-8">
|
|||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|||
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"><title>YannStatic</title>
|
|||
|
|
|||
|
<meta name="description" content="Expérimentations et tests
|
|||
|
">
|
|||
|
<link rel="canonical" href="https://static.rnmkcy.eu/liens_ttrss.html"><link rel="alternate" type="application/rss+xml" title="YannStatic" href="/feed.xml">
|
|||
|
|
|||
|
<!-- - include head/favicon.html - -->
|
|||
|
<link rel="shortcut icon" type="image/png" href="/assets/favicon/favicon.png"><link rel="stylesheet" href="/assets/css/main.css"><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" ><!-- start custom head snippets --><link rel="stylesheet" href="/assets/css/expand.css">
|
|||
|
<!-- end custom head snippets --><script>(function() {
|
|||
|
window.isArray = function(val) {
|
|||
|
return Object.prototype.toString.call(val) === '[object Array]';
|
|||
|
};
|
|||
|
window.isString = function(val) {
|
|||
|
return typeof val === 'string';
|
|||
|
};
|
|||
|
|
|||
|
window.hasEvent = function(event) {
|
|||
|
return 'on'.concat(event) in window.document;
|
|||
|
};
|
|||
|
|
|||
|
window.isOverallScroller = function(node) {
|
|||
|
return node === document.documentElement || node === document.body || node === window;
|
|||
|
};
|
|||
|
|
|||
|
window.isFormElement = function(node) {
|
|||
|
var tagName = node.tagName;
|
|||
|
return tagName === 'INPUT' || tagName === 'SELECT' || tagName === 'TEXTAREA';
|
|||
|
};
|
|||
|
|
|||
|
window.pageLoad = (function () {
|
|||
|
var loaded = false, cbs = [];
|
|||
|
window.addEventListener('load', function () {
|
|||
|
var i;
|
|||
|
loaded = true;
|
|||
|
if (cbs.length > 0) {
|
|||
|
for (i = 0; i < cbs.length; i++) {
|
|||
|
cbs[i]();
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
return {
|
|||
|
then: function(cb) {
|
|||
|
cb && (loaded ? cb() : (cbs.push(cb)));
|
|||
|
}
|
|||
|
};
|
|||
|
})();
|
|||
|
})();
|
|||
|
(function() {
|
|||
|
window.throttle = function(func, wait) {
|
|||
|
var args, result, thisArg, timeoutId, lastCalled = 0;
|
|||
|
|
|||
|
function trailingCall() {
|
|||
|
lastCalled = new Date;
|
|||
|
timeoutId = null;
|
|||
|
result = func.apply(thisArg, args);
|
|||
|
}
|
|||
|
return function() {
|
|||
|
var now = new Date,
|
|||
|
remaining = wait - (now - lastCalled);
|
|||
|
|
|||
|
args = arguments;
|
|||
|
thisArg = this;
|
|||
|
|
|||
|
if (remaining <= 0) {
|
|||
|
clearTimeout(timeoutId);
|
|||
|
timeoutId = null;
|
|||
|
lastCalled = now;
|
|||
|
result = func.apply(thisArg, args);
|
|||
|
} else if (!timeoutId) {
|
|||
|
timeoutId = setTimeout(trailingCall, remaining);
|
|||
|
}
|
|||
|
return result;
|
|||
|
};
|
|||
|
};
|
|||
|
})();
|
|||
|
(function() {
|
|||
|
var Set = (function() {
|
|||
|
var add = function(item) {
|
|||
|
var i, data = this._data;
|
|||
|
for (i = 0; i < data.length; i++) {
|
|||
|
if (data[i] === item) {
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
this.size ++;
|
|||
|
data.push(item);
|
|||
|
return data;
|
|||
|
};
|
|||
|
|
|||
|
var Set = function(data) {
|
|||
|
this.size = 0;
|
|||
|
this._data = [];
|
|||
|
var i;
|
|||
|
if (data.length > 0) {
|
|||
|
for (i = 0; i < data.length; i++) {
|
|||
|
add.call(this, data[i]);
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
Set.prototype.add = add;
|
|||
|
Set.prototype.get = function(index) { return this._data[index]; };
|
|||
|
Set.prototype.has = function(item) {
|
|||
|
var i, data = this._data;
|
|||
|
for (i = 0; i < data.length; i++) {
|
|||
|
if (this.get(i) === item) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|
|||
|
return false;
|
|||
|
};
|
|||
|
Set.prototype.is = function(map) {
|
|||
|
if (map._data.length !== this._data.length) { return false; }
|
|||
|
var i, j, flag, tData = this._data, mData = map._data;
|
|||
|
for (i = 0; i < tData.length; i++) {
|
|||
|
for (flag = false, j = 0; j < mData.length; j++) {
|
|||
|
if (tData[i] === mData[j]) {
|
|||
|
flag = true;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
if (!flag) { return false; }
|
|||
|
}
|
|||
|
return true;
|
|||
|
};
|
|||
|
Set.prototype.values = function() {
|
|||
|
return this._data;
|
|||
|
};
|
|||
|
return Set;
|
|||
|
})();
|
|||
|
|
|||
|
window.Lazyload = (function(doc) {
|
|||
|
var queue = {js: [], css: []}, sources = {js: {}, css: {}}, context = this;
|
|||
|
var createNode = function(name, attrs) {
|
|||
|
var node = doc.createElement(name), attr;
|
|||
|
for (attr in attrs) {
|
|||
|
if (attrs.hasOwnProperty(attr)) {
|
|||
|
node.setAttribute(attr, attrs[attr]);
|
|||
|
}
|
|||
|
}
|
|||
|
return node;
|
|||
|
};
|
|||
|
var end = function(type, url) {
|
|||
|
var s, q, qi, cbs, i, j, cur, val, flag;
|
|||
|
if (type === 'js' || type ==='css') {
|
|||
|
s = sources[type], q = queue[type];
|
|||
|
s[url] = true;
|
|||
|
for (i = 0; i < q.length; i++) {
|
|||
|
cur = q[i];
|
|||
|
if (cur.urls.has(url)) {
|
|||
|
qi = cur, val = qi.urls.values();
|
|||
|
qi && (cbs = qi.callbacks);
|
|||
|
for (flag = true, j = 0; j < val.length; j++) {
|
|||
|
cur = val[j];
|
|||
|
if (!s[cur]) {
|
|||
|
flag = false;
|
|||
|
}
|
|||
|
}
|
|||
|
if (flag && cbs && cbs.length > 0) {
|
|||
|
for (j = 0; j < cbs.length; j++) {
|
|||
|
cbs[j].call(context);
|
|||
|
}
|
|||
|
qi.load = true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
var load = function(type, urls, callback) {
|
|||
|
var s, q, qi, node, i, cur,
|
|||
|
_urls = typeof urls === 'string' ? new Set([urls]) : new Set(urls), val, url;
|
|||
|
if (type === 'js' || type ==='css') {
|
|||
|
s = sources[type], q = queue[type];
|
|||
|
for (i = 0; i < q.length; i++) {
|
|||
|
cur = q[i];
|
|||
|
if (_urls.is(cur.urls)) {
|
|||
|
qi = cur;
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
val = _urls.values();
|
|||
|
if (qi) {
|
|||
|
callback && (qi.load || qi.callbacks.push(callback));
|
|||
|
callback && (qi.load && callback());
|
|||
|
} else {
|
|||
|
q.push({
|
|||
|
urls: _urls,
|
|||
|
callbacks: callback ? [callback] : [],
|
|||
|
load: false
|
|||
|
});
|
|||
|
for (i = 0; i < val.length; i++) {
|
|||
|
node = null, url = val[i];
|
|||
|
if (s[url] === undefined) {
|
|||
|
(type === 'js' ) && (node = createNode('script', { src: url }));
|
|||
|
(type === 'css') && (node = createNode('link', { rel: 'stylesheet', href: url }));
|
|||
|
if (node) {
|
|||
|
node.onload = (function(type, url) {
|
|||
|
return function() {
|
|||
|
end(type, url);
|
|||
|
};
|
|||
|
})(type, url);
|
|||
|
(doc.head || doc.body).appendChild(node);
|
|||
|
s[url] = false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
return {
|
|||
|
js: function(url, callback) {
|
|||
|
load('js', url, callback);
|
|||
|
},
|
|||
|
css: function(url, callback) {
|
|||
|
load('css', url, callback);
|
|||
|
}
|
|||
|
};
|
|||
|
})(this.document);
|
|||
|
})();
|
|||
|
</script><script>
|
|||
|
(function() {
|
|||
|
var TEXT_VARIABLES = {
|
|||
|
version: '2.2.6',
|
|||
|
sources: {
|
|||
|
font_awesome: 'https://use.fontawesome.com/releases/v5.0.13/css/all.css',
|
|||
|
jquery: '/assets/js/jquery.min.js',
|
|||
|
leancloud_js_sdk: '//cdn.jsdelivr.net/npm/leancloud-storage@3.13.2/dist/av-min.js',
|
|||
|
chart: 'https://cdn.bootcss.com/Chart.js/2.7.2/Chart.bundle.min.js',
|
|||
|
gitalk: {
|
|||
|
js: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.js',
|
|||
|
css: 'https://cdn.bootcss.com/gitalk/1.2.2/gitalk.min.css'
|
|||
|
},
|
|||
|
valine: 'https://unpkg.com/valine/dist/Valine.min.js'
|
|||
|
},
|
|||
|
site: {
|
|||
|
toc: {
|
|||
|
selectors: 'h1,h2,h3'
|
|||
|
}
|
|||
|
},
|
|||
|
paths: {
|
|||
|
search_js: '/assets/search.js'
|
|||
|
}
|
|||
|
};
|
|||
|
window.TEXT_VARIABLES = TEXT_VARIABLES;
|
|||
|
})();
|
|||
|
</script>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<div class="root" data-is-touch="false">
|
|||
|
<div class="layout--page js-page-root"><!----><div class="page__main js-page-main page__viewport hide-footer has-aside cell cell--auto">
|
|||
|
|
|||
|
<div class="page__main-inner"><div class="page__header d-print-none"><header class="header"><div class="main">
|
|||
|
<div class="header__title">
|
|||
|
<div class="header__brand"><svg id="svg" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="478.9473684210526" viewBox="0, 0, 400,478.9473684210526"><g id="svgg"><path id="path0" d="M308.400 56.805 C 306.970 56.966,303.280 57.385,300.200 57.738 C 290.906 58.803,278.299 59.676,269.200 59.887 L 260.600 60.085 259.400 61.171 C 258.010 62.428,256.198 63.600,255.645 63.600 C 255.070 63.600,252.887 65.897,252.598 66.806 C 252.460 67.243,252.206 67.600,252.034 67.600 C 251.397 67.600,247.206 71.509,247.202 72.107 C 247.201 72.275,246.390 73.190,245.400 74.138 C 243.961 75.517,243.598 76.137,243.592 77.231 C 243.579 79.293,241.785 83.966,240.470 85.364 C 239.176 86.740,238.522 88.365,237.991 91.521 C 237.631 93.665,236.114 97.200,235.554 97.200 C 234.938 97.200,232.737 102.354,232.450 104.472 C 232.158 106.625,230.879 109.226,229.535 110.400 C 228.933 110.926,228.171 113.162,226.434 119.500 C 226.178 120.435,225.795 121.200,225.584 121.200 C 225.373 121.200,225.200 121.476,225.200 121.813 C 225.200 122.149,224.885 122.541,224.500 122.683 C 223.606 123.013,223.214 123.593,223.204 124.600 C 223.183 126.555,220.763 132.911,219.410 134.562 C 218.443 135.742,217.876 136.956,217.599 138.440 C 217.041 141.424,215.177 146.434,214.532 146.681 C 214.240 146.794,214.000 147.055,214.000 147.261 C 214.000 147.467,213.550 148.086,213.000 148.636 C 212.450 149.186,212.000 149.893,212.000 150.208 C 212.000 151.386,208.441 154.450,207.597 153.998 C 206.319 153.315,204.913 150.379,204.633 147.811 C 204.365 145.357,202.848 142.147,201.759 141.729 C 200.967 141.425,199.200 137.451,199.200 135.974 C 199.200 134.629,198.435 133.224,196.660 131.311 C 195.363 129.913,194.572 128.123,193.870 125.000 C 193.623 123.900,193.236 122.793,193.010 122.540 C 190.863 120.133,190.147 118.880,188.978 115.481 C 188.100 112.928,187.151 111.003,186.254 109.955 C 185.358 108.908,184.518 107.204,183.847 105.073 C 183.280 103.273,182.497 101.329,182.108 100.753 C 181.719 100.177,180.904 98.997,180.298 98.131 C 179.693 97.265,178.939 95.576,178.624 94.378 C 178.041 92.159,177.125 90.326,175.023 87.168 C 174.375 86.196,173.619 84.539,173.342 83.486 C 172.800 81.429,171.529 79.567,170.131 78.785 C 169.654 78.517,168.697 77.511,168.006 76.549 C 167.316 75.587,166.594 74.800,166.402 74.800 C 166.210 74.800,164.869 73.633,163.421 72.206 C 160.103 68.936,161.107 69.109,146.550 69.301 C 133.437 69.474,128.581 70.162,126.618 72.124 C 126.248 72.495,125.462 72.904,124.872 73.033 C 124.282 73.163,123.088 73.536,122.219 73.863 C 121.349 74.191,119.028 74.638,117.061 74.858 C 113.514 75.254,109.970 76.350,108.782 77.419 C 107.652 78.436,100.146 80.400,97.388 80.400 C 95.775 80.400,93.167 81.360,91.200 82.679 C 90.430 83.195,89.113 83.804,88.274 84.031 C 85.875 84.681,78.799 90.910,74.400 96.243 L 73.400 97.456 73.455 106.028 C 73.526 117.055,74.527 121.238,77.820 124.263 C 78.919 125.273,80.400 127.902,80.400 128.842 C 80.400 129.202,81.075 130.256,81.900 131.186 C 83.563 133.059,85.497 136.346,86.039 138.216 C 86.233 138.886,87.203 140.207,88.196 141.153 C 89.188 142.098,90.000 143.104,90.000 143.388 C 90.000 144.337,92.129 148.594,92.869 149.123 C 93.271 149.410,93.600 149.831,93.600 150.059 C 93.600 150.286,93.932 150.771,94.337 151.136 C 94.743 151.501,95.598 153.004,96.237 154.475 C 96.877 155.947,97.760 157.351,98.200 157.596 C 98.640 157.841,99.900 159.943,101.000 162.267 C 102.207 164.817,103.327 166.644,103.825 166.876 C 104.278 167.087,105.065 168.101,105.573 169.130 C 107.658 173.348,108.097 174.093,110.006 176.647 C 111.103 178.114,112.000 179.725,112.000 180.227 C 112.000 181.048,113.425 183.163,114.678 184.200 C 115.295 184.711,117.396 188.733,117.720 190.022 C 117.855 190.562,118.603 191.633,119.381 192.402 C 120.160 193.171,121.496 195.258,122.351 197.039 C 123.206 198.820,124.167 200.378,124.487 200.501 C 124.807 200.624,125.953 202.496,127.034 204.662 C 128.114 206.828,129.676 209.299,130.505 210.153 C 131.333 211.007,132.124 212.177,132.262 212.753 C 132.618 214.239,134.291 217.048,136.288 219.5
|
|||
|
" href="/">YannStatic</a></div><!--<button class="button button--secondary button--circle search-button js-search-toggle"><i class="fas fa-search"></i></button>--><!-- <li><button class="button button--secondary button--circle search-button js-search-toggle"><i class="fas fa-search"></i></button></li> -->
|
|||
|
<!-- Champ de recherche -->
|
|||
|
<div id="searchbox" class="search search--dark" style="visibility: visible">
|
|||
|
<div class="main">
|
|||
|
<div class="search__header"></div>
|
|||
|
<div class="search-bar">
|
|||
|
<div class="search-box js-search-box">
|
|||
|
<div class="search-box__icon-search"><i class="fas fa-search"></i></div>
|
|||
|
<input id="search-input" type="text" />
|
|||
|
<!-- <div class="search-box__icon-clear js-icon-clear">
|
|||
|
<a><i class="fas fa-times"></i></a>
|
|||
|
</div> -->
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<!-- Script pointing to search-script.js -->
|
|||
|
<script>/*!
|
|||
|
* Simple-Jekyll-Search
|
|||
|
* Copyright 2015-2020, Christian Fei
|
|||
|
* Licensed under the MIT License.
|
|||
|
*/
|
|||
|
|
|||
|
(function(){
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$Templater_7 = {
|
|||
|
compile: compile,
|
|||
|
setOptions: setOptions
|
|||
|
}
|
|||
|
|
|||
|
const options = {}
|
|||
|
options.pattern = /\{(.*?)\}/g
|
|||
|
options.template = ''
|
|||
|
options.middleware = function () {}
|
|||
|
|
|||
|
function setOptions (_options) {
|
|||
|
options.pattern = _options.pattern || options.pattern
|
|||
|
options.template = _options.template || options.template
|
|||
|
if (typeof _options.middleware === 'function') {
|
|||
|
options.middleware = _options.middleware
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function compile (data) {
|
|||
|
return options.template.replace(options.pattern, function (match, prop) {
|
|||
|
const value = options.middleware(prop, data[prop], options.template)
|
|||
|
if (typeof value !== 'undefined') {
|
|||
|
return value
|
|||
|
}
|
|||
|
return data[prop] || match
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
'use strict';
|
|||
|
|
|||
|
function fuzzysearch (needle, haystack) {
|
|||
|
var tlen = haystack.length;
|
|||
|
var qlen = needle.length;
|
|||
|
if (qlen > tlen) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (qlen === tlen) {
|
|||
|
return needle === haystack;
|
|||
|
}
|
|||
|
outer: for (var i = 0, j = 0; i < qlen; i++) {
|
|||
|
var nch = needle.charCodeAt(i);
|
|||
|
while (j < tlen) {
|
|||
|
if (haystack.charCodeAt(j++) === nch) {
|
|||
|
continue outer;
|
|||
|
}
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
var _$fuzzysearch_1 = fuzzysearch;
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
/* removed: const _$fuzzysearch_1 = require('fuzzysearch') */;
|
|||
|
|
|||
|
var _$FuzzySearchStrategy_5 = new FuzzySearchStrategy()
|
|||
|
|
|||
|
function FuzzySearchStrategy () {
|
|||
|
this.matches = function (string, crit) {
|
|||
|
return _$fuzzysearch_1(crit.toLowerCase(), string.toLowerCase())
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$LiteralSearchStrategy_6 = new LiteralSearchStrategy()
|
|||
|
|
|||
|
function LiteralSearchStrategy () {
|
|||
|
this.matches = function (str, crit) {
|
|||
|
if (!str) return false
|
|||
|
|
|||
|
str = str.trim().toLowerCase()
|
|||
|
crit = crit.trim().toLowerCase()
|
|||
|
|
|||
|
return crit.split(' ').filter(function (word) {
|
|||
|
return str.indexOf(word) >= 0
|
|||
|
}).length === crit.split(' ').length
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$Repository_4 = {
|
|||
|
put: put,
|
|||
|
clear: clear,
|
|||
|
search: search,
|
|||
|
setOptions: __setOptions_4
|
|||
|
}
|
|||
|
|
|||
|
/* removed: const _$FuzzySearchStrategy_5 = require('./SearchStrategies/FuzzySearchStrategy') */;
|
|||
|
/* removed: const _$LiteralSearchStrategy_6 = require('./SearchStrategies/LiteralSearchStrategy') */;
|
|||
|
|
|||
|
function NoSort () {
|
|||
|
return 0
|
|||
|
}
|
|||
|
|
|||
|
const data = []
|
|||
|
let opt = {}
|
|||
|
|
|||
|
opt.fuzzy = false
|
|||
|
opt.limit = 10
|
|||
|
opt.searchStrategy = opt.fuzzy ? _$FuzzySearchStrategy_5 : _$LiteralSearchStrategy_6
|
|||
|
opt.sort = NoSort
|
|||
|
opt.exclude = []
|
|||
|
|
|||
|
function put (data) {
|
|||
|
if (isObject(data)) {
|
|||
|
return addObject(data)
|
|||
|
}
|
|||
|
if (isArray(data)) {
|
|||
|
return addArray(data)
|
|||
|
}
|
|||
|
return undefined
|
|||
|
}
|
|||
|
function clear () {
|
|||
|
data.length = 0
|
|||
|
return data
|
|||
|
}
|
|||
|
|
|||
|
function isObject (obj) {
|
|||
|
return Boolean(obj) && Object.prototype.toString.call(obj) === '[object Object]'
|
|||
|
}
|
|||
|
|
|||
|
function isArray (obj) {
|
|||
|
return Boolean(obj) && Object.prototype.toString.call(obj) === '[object Array]'
|
|||
|
}
|
|||
|
|
|||
|
function addObject (_data) {
|
|||
|
data.push(_data)
|
|||
|
return data
|
|||
|
}
|
|||
|
|
|||
|
function addArray (_data) {
|
|||
|
const added = []
|
|||
|
clear()
|
|||
|
for (let i = 0, len = _data.length; i < len; i++) {
|
|||
|
if (isObject(_data[i])) {
|
|||
|
added.push(addObject(_data[i]))
|
|||
|
}
|
|||
|
}
|
|||
|
return added
|
|||
|
}
|
|||
|
|
|||
|
function search (crit) {
|
|||
|
if (!crit) {
|
|||
|
return []
|
|||
|
}
|
|||
|
return findMatches(data, crit, opt.searchStrategy, opt).sort(opt.sort)
|
|||
|
}
|
|||
|
|
|||
|
function __setOptions_4 (_opt) {
|
|||
|
opt = _opt || {}
|
|||
|
|
|||
|
opt.fuzzy = _opt.fuzzy || false
|
|||
|
opt.limit = _opt.limit || 10
|
|||
|
opt.searchStrategy = _opt.fuzzy ? _$FuzzySearchStrategy_5 : _$LiteralSearchStrategy_6
|
|||
|
opt.sort = _opt.sort || NoSort
|
|||
|
opt.exclude = _opt.exclude || []
|
|||
|
}
|
|||
|
|
|||
|
function findMatches (data, crit, strategy, opt) {
|
|||
|
const matches = []
|
|||
|
for (let i = 0; i < data.length && matches.length < opt.limit; i++) {
|
|||
|
const match = findMatchesInObject(data[i], crit, strategy, opt)
|
|||
|
if (match) {
|
|||
|
matches.push(match)
|
|||
|
}
|
|||
|
}
|
|||
|
return matches
|
|||
|
}
|
|||
|
|
|||
|
function findMatchesInObject (obj, crit, strategy, opt) {
|
|||
|
for (const key in obj) {
|
|||
|
if (!isExcluded(obj[key], opt.exclude) && strategy.matches(obj[key], crit)) {
|
|||
|
return obj
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function isExcluded (term, excludedTerms) {
|
|||
|
for (let i = 0, len = excludedTerms.length; i < len; i++) {
|
|||
|
const excludedTerm = excludedTerms[i]
|
|||
|
if (new RegExp(excludedTerm).test(term)) {
|
|||
|
return true
|
|||
|
}
|
|||
|
}
|
|||
|
return false
|
|||
|
}
|
|||
|
|
|||
|
/* globals ActiveXObject:false */
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$JSONLoader_2 = {
|
|||
|
load: load
|
|||
|
}
|
|||
|
|
|||
|
function load (location, callback) {
|
|||
|
const xhr = getXHR()
|
|||
|
xhr.open('GET', location, true)
|
|||
|
xhr.onreadystatechange = createStateChangeListener(xhr, callback)
|
|||
|
xhr.send()
|
|||
|
}
|
|||
|
|
|||
|
function createStateChangeListener (xhr, callback) {
|
|||
|
return function () {
|
|||
|
if (xhr.readyState === 4 && xhr.status === 200) {
|
|||
|
try {
|
|||
|
callback(null, JSON.parse(xhr.responseText))
|
|||
|
} catch (err) {
|
|||
|
callback(err, null)
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function getXHR () {
|
|||
|
return window.XMLHttpRequest ? new window.XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP')
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$OptionsValidator_3 = function OptionsValidator (params) {
|
|||
|
if (!validateParams(params)) {
|
|||
|
throw new Error('-- OptionsValidator: required options missing')
|
|||
|
}
|
|||
|
|
|||
|
if (!(this instanceof OptionsValidator)) {
|
|||
|
return new OptionsValidator(params)
|
|||
|
}
|
|||
|
|
|||
|
const requiredOptions = params.required
|
|||
|
|
|||
|
this.getRequiredOptions = function () {
|
|||
|
return requiredOptions
|
|||
|
}
|
|||
|
|
|||
|
this.validate = function (parameters) {
|
|||
|
const errors = []
|
|||
|
requiredOptions.forEach(function (requiredOptionName) {
|
|||
|
if (typeof parameters[requiredOptionName] === 'undefined') {
|
|||
|
errors.push(requiredOptionName)
|
|||
|
}
|
|||
|
})
|
|||
|
return errors
|
|||
|
}
|
|||
|
|
|||
|
function validateParams (params) {
|
|||
|
if (!params) {
|
|||
|
return false
|
|||
|
}
|
|||
|
return typeof params.required !== 'undefined' && params.required instanceof Array
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$utils_9 = {
|
|||
|
merge: merge,
|
|||
|
isJSON: isJSON
|
|||
|
}
|
|||
|
|
|||
|
function merge (defaultParams, mergeParams) {
|
|||
|
const mergedOptions = {}
|
|||
|
for (const option in defaultParams) {
|
|||
|
mergedOptions[option] = defaultParams[option]
|
|||
|
if (typeof mergeParams[option] !== 'undefined') {
|
|||
|
mergedOptions[option] = mergeParams[option]
|
|||
|
}
|
|||
|
}
|
|||
|
return mergedOptions
|
|||
|
}
|
|||
|
|
|||
|
function isJSON (json) {
|
|||
|
try {
|
|||
|
if (json instanceof Object && JSON.parse(JSON.stringify(json))) {
|
|||
|
return true
|
|||
|
}
|
|||
|
return false
|
|||
|
} catch (err) {
|
|||
|
return false
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
var _$src_8 = {};
|
|||
|
(function (window) {
|
|||
|
'use strict'
|
|||
|
|
|||
|
let options = {
|
|||
|
searchInput: null,
|
|||
|
resultsContainer: null,
|
|||
|
json: [],
|
|||
|
success: Function.prototype,
|
|||
|
searchResultTemplate: '<li><a href="{url}" title="{desc}">{title}</a></li>',
|
|||
|
templateMiddleware: Function.prototype,
|
|||
|
sortMiddleware: function () {
|
|||
|
return 0
|
|||
|
},
|
|||
|
noResultsText: 'No results found',
|
|||
|
limit: 10,
|
|||
|
fuzzy: false,
|
|||
|
debounceTime: null,
|
|||
|
exclude: []
|
|||
|
}
|
|||
|
|
|||
|
let debounceTimerHandle
|
|||
|
const debounce = function (func, delayMillis) {
|
|||
|
if (delayMillis) {
|
|||
|
clearTimeout(debounceTimerHandle)
|
|||
|
debounceTimerHandle = setTimeout(func, delayMillis)
|
|||
|
} else {
|
|||
|
func.call()
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
const requiredOptions = ['searchInput', 'resultsContainer', 'json']
|
|||
|
|
|||
|
/* removed: const _$Templater_7 = require('./Templater') */;
|
|||
|
/* removed: const _$Repository_4 = require('./Repository') */;
|
|||
|
/* removed: const _$JSONLoader_2 = require('./JSONLoader') */;
|
|||
|
const optionsValidator = _$OptionsValidator_3({
|
|||
|
required: requiredOptions
|
|||
|
})
|
|||
|
/* removed: const _$utils_9 = require('./utils') */;
|
|||
|
|
|||
|
window.SimpleJekyllSearch = function (_options) {
|
|||
|
const errors = optionsValidator.validate(_options)
|
|||
|
if (errors.length > 0) {
|
|||
|
throwError('You must specify the following required options: ' + requiredOptions)
|
|||
|
}
|
|||
|
|
|||
|
options = _$utils_9.merge(options, _options)
|
|||
|
|
|||
|
_$Templater_7.setOptions({
|
|||
|
template: options.searchResultTemplate,
|
|||
|
middleware: options.templateMiddleware
|
|||
|
})
|
|||
|
|
|||
|
_$Repository_4.setOptions({
|
|||
|
fuzzy: options.fuzzy,
|
|||
|
limit: options.limit,
|
|||
|
sort: options.sortMiddleware,
|
|||
|
exclude: options.exclude
|
|||
|
})
|
|||
|
|
|||
|
if (_$utils_9.isJSON(options.json)) {
|
|||
|
initWithJSON(options.json)
|
|||
|
} else {
|
|||
|
initWithURL(options.json)
|
|||
|
}
|
|||
|
|
|||
|
const rv = {
|
|||
|
search: search
|
|||
|
}
|
|||
|
|
|||
|
typeof options.success === 'function' && options.success.call(rv)
|
|||
|
return rv
|
|||
|
}
|
|||
|
|
|||
|
function initWithJSON (json) {
|
|||
|
_$Repository_4.put(json)
|
|||
|
registerInput()
|
|||
|
}
|
|||
|
|
|||
|
function initWithURL (url) {
|
|||
|
_$JSONLoader_2.load(url, function (err, json) {
|
|||
|
if (err) {
|
|||
|
throwError('failed to get JSON (' + url + ')')
|
|||
|
}
|
|||
|
initWithJSON(json)
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
function emptyResultsContainer () {
|
|||
|
options.resultsContainer.innerHTML = ''
|
|||
|
}
|
|||
|
|
|||
|
function appendToResultsContainer (text) {
|
|||
|
options.resultsContainer.innerHTML += text
|
|||
|
}
|
|||
|
|
|||
|
function registerInput () {
|
|||
|
options.searchInput.addEventListener('input', function (e) {
|
|||
|
if (isWhitelistedKey(e.which)) {
|
|||
|
emptyResultsContainer()
|
|||
|
debounce(function () { search(e.target.value) }, options.debounceTime)
|
|||
|
}
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
function search (query) {
|
|||
|
if (isValidQuery(query)) {
|
|||
|
emptyResultsContainer()
|
|||
|
render(_$Repository_4.search(query), query)
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function render (results, query) {
|
|||
|
const len = results.length
|
|||
|
if (len === 0) {
|
|||
|
return appendToResultsContainer(options.noResultsText)
|
|||
|
}
|
|||
|
for (let i = 0; i < len; i++) {
|
|||
|
results[i].query = query
|
|||
|
appendToResultsContainer(_$Templater_7.compile(results[i]))
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function isValidQuery (query) {
|
|||
|
return query && query.length > 0
|
|||
|
}
|
|||
|
|
|||
|
function isWhitelistedKey (key) {
|
|||
|
return [13, 16, 20, 37, 38, 39, 40, 91].indexOf(key) === -1
|
|||
|
}
|
|||
|
|
|||
|
function throwError (message) {
|
|||
|
throw new Error('SimpleJekyllSearch --- ' + message)
|
|||
|
}
|
|||
|
})(window)
|
|||
|
|
|||
|
}());
|
|||
|
</script>
|
|||
|
|
|||
|
<!-- Configuration -->
|
|||
|
<script>
|
|||
|
SimpleJekyllSearch({
|
|||
|
searchInput: document.getElementById('search-input'),
|
|||
|
resultsContainer: document.getElementById('results-container'),
|
|||
|
json: '/search.json',
|
|||
|
//searchResultTemplate: '<li><a href="https://static.rnmkcy.eu{url}">{date} {title}</a></li>'
|
|||
|
searchResultTemplate: '<li><a href="{url}">{date} {title}</a></li>'
|
|||
|
})
|
|||
|
</script>
|
|||
|
<!-- Fin déclaration champ de recherche --></div><nav class="navigation">
|
|||
|
<ul><li class="navigation__item"><a href="/archive.html">Etiquettes</a></li><li class="navigation__item"><a href="/htmldoc.html">Documents</a></li><li class="navigation__item navigation__item--active"><a href="/liens_ttrss.html">Liens</a></li><li class="navigation__item"><a href="/aide-jekyll-text-theme.html">Aide</a></li></ul>
|
|||
|
</nav></div>
|
|||
|
</header>
|
|||
|
|
|||
|
</div><div class="page__content"><div class ="main"><div class="grid grid--reverse">
|
|||
|
<div class="col-main cell cell--auto"><!-- start custom main top snippet --><div id="results-container" class="search-result js-search-result"></div><!-- end custom main top snippet -->
|
|||
|
<article itemscope itemtype="http://schema.org/Article"><div class="article__header"><header><h1 style="color:Tomato;"></h1></header></div><meta itemprop="headline" content=""><div class="js-article-content">
|
|||
|
<div class="layout--article"><!-- start custom article top snippet -->
|
|||
|
<style>
|
|||
|
#myBtn {
|
|||
|
display: none;
|
|||
|
position: fixed;
|
|||
|
bottom: 10px;
|
|||
|
right: 10px;
|
|||
|
z-index: 99;
|
|||
|
font-size: 12px;
|
|||
|
font-weight: bold;
|
|||
|
border: none;
|
|||
|
outline: none;
|
|||
|
background-color: white;
|
|||
|
color: black;
|
|||
|
cursor: pointer;
|
|||
|
padding: 5px;
|
|||
|
border-radius: 4px;
|
|||
|
}
|
|||
|
|
|||
|
#myBtn:hover {
|
|||
|
background-color: #555;
|
|||
|
}
|
|||
|
</style>
|
|||
|
|
|||
|
<button onclick="topFunction()" id="myBtn" title="Haut de page">⇧</button>
|
|||
|
|
|||
|
<script>
|
|||
|
//Get the button
|
|||
|
var mybutton = document.getElementById("myBtn");
|
|||
|
|
|||
|
// When the user scrolls down 20px from the top of the document, show the button
|
|||
|
window.onscroll = function() {scrollFunction()};
|
|||
|
|
|||
|
function scrollFunction() {
|
|||
|
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
|||
|
mybutton.style.display = "block";
|
|||
|
} else {
|
|||
|
mybutton.style.display = "none";
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// When the user clicks on the button, scroll to the top of the document
|
|||
|
function topFunction() {
|
|||
|
document.body.scrollTop = 0;
|
|||
|
document.documentElement.scrollTop = 0;
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
|
|||
|
<!-- end custom article top snippet -->
|
|||
|
<div class="article__content" itemprop="articleBody"><html lang="fr">
|
|||
|
<body>
|
|||
|
<head>
|
|||
|
<meta charset="utf-8" />
|
|||
|
<title>Doc Html</title>
|
|||
|
</head>
|
|||
|
<div class="search-bar">
|
|||
|
<div class="search-box js-search-box">
|
|||
|
<input type="text" id="saisie-recherche" onkeyup="rechercheFonction()" placeholder="Rechercher..." title="Saisir" autofocus="" />
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<ul id="articlesTTRSS">
|
|||
|
|
|||
|
<li><a href="https://www.youtube.com/watch?v=WlF7AXCWwvQ">NixOS : Découverte de cette distribution Linux "reproductible" (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=3nQI60toL7Q">CMDécouverte : du pour afficher la taille des dossiers et des fichiers (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=Ks8nt1-L_Ec">bash : Personnaliser son shell avec Oh My Bash ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=1EyLYhCCD5w">Lancement des lives hebdo, péripéties du boulot aujourd'hui, LinuxPratique (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=uULvlRiOfcg">Signer les modules noyau tiers (dkms) pour le Secure Boot sous Linux (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=WorZG2KZNKs">Android : Désinstaller les applications impossible à désinstaller installées par défaut ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=898-undmSyY">Ubuntu Server : Utiliser le gestionnaire réseau netplan (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=fAr53tPA1hQ">rtcwake : Éteindre le système pour une durée définie (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=8RbCQ2Z4k0A">Zenity : Des boites de dialogue pour vos scripts shell (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=v_sXU2lSynI">Développons un logiciel (Linux ou Web) uniquement avec l'aide de l'IA ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=DpV7Yta1ew8">Nautilus Scripts : Exécutez des scripts sur des fichiers ou dossiers ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=DKrIynPvj8c">GNOME 47 est là ! Tour des nouveautés ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=2MlV43BGJ-s">Ubuntu 24.04.1 LTS : Première révision, nouveautés installation et mise à niveau dispo ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=O4X04CWmyY4">systemd : La résolution de nom avec systemd-resolved (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=mwCp_1HIqxA">Deepin 23 est là ! Tour des nouveautés ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=5gn298G0cyc">Installer COSMIC Desktop sur Fedora Linux ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=b4Tu4DnBNTY">Gérer les répertoires standards utilisateurs avec xdg-user-dirs (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=YkY1z2TRT08">Floorp : Firefox en mieux ? avec plus de fonctionnalités ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=8PtBR7n4XtM">Webmin pour administrer facilement tous les services installés sur un serveur Linux ! (Adrien D : youtube)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907172360/0/baeldung/linux~Checking-if-a-File-Exists-on-a-Remote-Linux-Host-via-SSH">Checking if a File Exists on a Remote Linux Host via SSH (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907161623/0/baeldung/linux~GUI-for-User-Management-in-Linux">GUI for User Management in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907146968/0/baeldung/linux~How-to-Find-IP-of-Virtual-Machine">How to Find IP of Virtual Machine (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907146971/0/baeldung/linux~How-to-List-Recently-Deleted-Files-From-a-Directory">How to List Recently Deleted Files From a Directory (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907053563/0/baeldung/linux~How-to-Forward-Traffic-to-an-OpenVPN-Tunnel-Using-iptables">How to Forward Traffic to an OpenVPN Tunnel Using iptables (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907052996/0/baeldung/linux~Difference-Between-ufw-vs-nftables-vs-iptables">Difference Between ufw vs. nftables vs. iptables (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907052999/0/baeldung/linux~How-to-Use-ls-on-Very-Large-Directories">How to Use ls on Very Large Directories (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/907053002/0/baeldung/linux~What-Is-the-runuserUID-Directory">What Is the /run/user/$UID Directory? (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906881054/0/baeldung/linux~Determining-the-Correct-Ports-for-IPSecLTP">Determining the Correct Ports for IPSec/LT2P (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906744842/0/baeldung/linux~How-to-Find-Memory-Leak-of-a-Running-Process-in-Linux">How to Find Memory Leak of a Running Process in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906530693/0/baeldung/linux~Running-a-Linux-Command-From-a-C-Program">Running a Linux Command From a C Program (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906529127/0/baeldung/linux~Why-is-the-etcprofile-Not-Invoked-for-NonLogin-Shells">Why is the /etc/profile Not Invoked for Non-Login Shells? (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906529130/0/baeldung/linux~Run-a-Shell-Script-in-New-Terminal-From-Current-Terminal">Run a Shell Script in New Terminal From Current Terminal (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906235052/0/baeldung/linux~Guide-to-Naming-Conventions-for-Shell-Variables">Guide to Naming Conventions for Shell Variables (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906235055/0/baeldung/linux~Different-Ways-to-Extract-IP-Address-in-Linux">Different Ways to Extract IP Address in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/906114533/0/baeldung/linux~How-to-Create-a-User-With-Limited-RAM-Usage">How to Create a User With Limited RAM Usage (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905990156/0/baeldung/linux~How-to-Convert-SVG-to-PNG-in-Linux">How to Convert SVG to PNG in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905990159/0/baeldung/linux~Load-Testing-in-Linux-With-ApacheBench-ab">Load Testing in Linux With ApacheBench (ab) (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905954948/0/baeldung/linux~Install-sudo-in-Alpine-Linux">Install sudo in Alpine Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905883740/0/baeldung/linux~How-to-Set-the-CPU-Governor-for-All-Cores-at-Once">How to Set the CPU Governor for All Cores at Once (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905883743/0/baeldung/linux~How-to-Add-a-Prefix-String-Before-Each-Line-of-a-File-in-Linux">How to Add a Prefix String Before Each Line of a File in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905883746/0/baeldung/linux~Guide-to-Linux-visudo-Command">Guide to Linux visudo Command (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905883749/0/baeldung/linux~How-to-Reset-a-USB-Device-From-the-CLI">How to Reset a USB Device From the CLI (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905757617/0/baeldung/linux~What-is-Machine-Owner-Key-MOK-in-Linux">What is Machine Owner Key (MOK) in Linux? (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905757620/0/baeldung/linux~How-to-Use-Multiple-Ports-in-iptables">How to Use Multiple Ports in iptables? (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905757623/0/baeldung/linux~How-to-%d0%a1heck-if-a-Computer-Is-a-Desktop-or-a-Laptop-From-the-Command-Line">How to Сheck if a Computer Is a Desktop or a Laptop From the Command Line (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905757626/0/baeldung/linux~Going-to-the-End-of-the-File-in-journalctl">Going to the End of the File in journalctl (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905757092/0/baeldung/linux~Send-Line-Break-With-curl">Send Line Break With curl (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905624552/0/baeldung/linux~How-to-Match-Words-and-Ignore-Multiple-Spaces-Using-grep-and-tr">How to Match Words and Ignore Multiple Spaces Using grep and tr (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905607899/0/baeldung/linux~Increasing-the-Maximum-Number-of-TCPIP-Connections-in-Linux">Increasing the Maximum Number of TCP/IP Connections in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905435942/0/baeldung/linux~ExportImport-of-NFS-Shares-Having-Subdirectories-as-Mount-Points">Export/Import of NFS Shares Having Subdirectories as Mount Points (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905392745/0/baeldung/linux~Configuring-Additional-Buttons-on-a-Mouse-in-Linux">Configuring Additional Buttons on a Mouse in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905294069/0/baeldung/linux~Sorting-by-Two-Fields-in-Linux">Sorting by Two Fields in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905189282/0/baeldung/linux~Using-awk-With-Column-Value-Conditions">Using awk With Column Value Conditions (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905184794/0/baeldung/linux~Guide-to-sshagent">Guide to ssh-agent (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905182046/0/baeldung/linux~Resetting-a-Messedup-Terminal-Screen">Resetting a Messed-up Terminal Screen (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905182049/0/baeldung/linux~How-to-Monitor-Running-rsync-Processes">How to Monitor Running rsync Processes (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905088152/0/baeldung/linux~Restrict-SSH-to-the-Local-Network-on-Linux">Restrict SSH to the Local Network on Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905083757/0/baeldung/linux~How-the-Sticky-Bit-Works-in-Linux">How the Sticky Bit Works in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905083046/0/baeldung/linux~Running-Scripts-at-a-XSecond-Interval">Running Scripts at a X-Second Interval (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905081903/0/baeldung/linux~Restarting-a-Systemd-Service-Only-With-a-Specific-User">Restarting a Systemd Service Only With a Specific User (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905081069/0/baeldung/linux~Flushing-Local-DNS-Cache-in-Linux">Flushing Local DNS Cache in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905081072/0/baeldung/linux~How-to-Check-if-Last-Shutdown-Was-Clean-in-Linux">How to Check if Last Shutdown Was Clean in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905081075/0/baeldung/linux~How-to-Fix-Login-Issues-for-New-Users-in-Linux">How to Fix Login Issues for New Users in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905080262/0/baeldung/linux~Converting-a-File-to-the-mp-Format">Converting a .264 File to the .mp4 Format (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905080265/0/baeldung/linux~How-to-Fix-Frequent-WiFi-Disconnections-on-Linux">How to Fix Frequent Wi-Fi Disconnections on Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/905068142/0/baeldung/linux~What-Is-a-Bootloader-in-Linux">What Is a Bootloader in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904644347/0/baeldung/linux~Set-Proxy-for-Specific-YUMDNF-Repositories">Set Proxy for Specific YUM/DNF Repositories (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904567307/0/baeldung/linux~Checking-TPM-Support-in-Linux">Checking TPM Support in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904565495/0/baeldung/linux~Installing-SSL-for-Local-Network">Installing SSL for Local Network (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904565498/0/baeldung/linux~How-to-Use-Ifconfig-to-Show-Active-Interfaces-Only">How to Use Ifconfig to Show Active Interfaces Only (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904534289/0/baeldung/linux~Checking-the-Package-Version-Before-Installing-It-Using-apt">Checking the Package Version Before Installing It Using apt (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904291964/0/baeldung/linux~How-to-Adjust-Sleep-Settings-Using-the-Linux-CLI">How to Adjust Sleep Settings Using the Linux CLI (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904261208/0/baeldung/linux~Obtain-phpMyAdmin-Version-Using-the-Linux-CLI">Obtain phpMyAdmin Version Using the Linux CLI (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904165508/0/baeldung/linux~Difference-Between-aptget-upgrade-and-aptget-distupgrade">Difference Between apt-get upgrade and apt-get dist-upgrade (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904165511/0/baeldung/linux~List-Open-Ports-Using-firewallcmd">List Open Ports Using firewall-cmd (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904164698/0/baeldung/linux~Retrieving-the-File-Size-for-a-Downloadable-File-Using-cURL">Retrieving the File Size for a Downloadable File Using cURL (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/904164701/0/baeldung/linux~Best-Practice-to-Represent-Boolean-Value-in-Shell-Script">Best Practice to Represent Boolean Value in Shell Script (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903914456/0/baeldung/linux~How-to-List-User-Installed-Packages-Using-Pacman">How to List User Installed Packages Using Pacman (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903899654/0/baeldung/linux~How-to-Get-All-Processes-Running-on-Each-CPU-Core">How to Get All Processes Running on Each CPU Core (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903750605/0/baeldung/linux~How-to-Delete-an-IP-Route-in-Linux">How to Delete an IP Route in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903699296/0/baeldung/linux~Installing-APK-in-Alpine-Linux">Installing APK in Alpine Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903699299/0/baeldung/linux~How-to-Check-if-the-Current-User-Can-Run-sudo-Without-Using-a-Password">How to Check if the Current User Can Run sudo Without Using a Password (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903470954/0/baeldung/linux~Activating-a-Conda-Environment-in-bashrc">Activating a Conda Environment in .bashrc (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903407150/0/baeldung/linux~How-to-Check-Umask-for-All-Users-in-Linux">How to Check Umask for All Users in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903352340/0/baeldung/linux~How-to-Set-SSH-Keys-While-Using-cloudinit-in-Linux">How to Set SSH Keys While Using cloud-init in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903351728/0/baeldung/linux~How-to-Connect-MySQL-Workbench-to-MySQL-Server-on-Linux">How to Connect MySQL Workbench to MySQL Server on Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903345077/0/baeldung/linux~Comment-Multiple-Lines-in-the-Nano-Editor">Comment Multiple Lines in the Nano Editor (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903298571/0/baeldung/linux~Installing-OpenJDK-on-Alpine-Linux">Installing OpenJDK on Alpine Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903297809/0/baeldung/linux~How-to-Identify-Duplicate-Lines-in-a-File-Without-Deleting-Them">How to Identify Duplicate Lines in a File Without Deleting Them (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903116054/0/baeldung/linux~Properly-Disable-GNOME-Tracker">Properly Disable GNOME Tracker (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903116057/0/baeldung/linux~How-to-Extract-and-Use-an-imgxz-File-in-Linux">How to Extract and Use an .img.xz File in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/903007697/0/baeldung/linux~How-to-Switch-Back-to-etcnetworkinterfaces-From-Netplan">How to Switch Back to /etc/network/interfaces From Netplan (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902952593/0/baeldung/linux~Jumping-to-the-End-of-File-in-Nano">Jumping to the End of File in Nano (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902883524/0/baeldung/linux~How-to-Check-All-Available-Webcams-in-Linux">How to Check All Available Webcams in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902715731/0/baeldung/linux~Build-a-JSON-String-With-Bash-Variables">Build a JSON String With Bash Variables (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902715734/0/baeldung/linux~Guide-to-Linux-parallel-Command-With-Examples">Guide to Linux parallel Command With Examples (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902638154/0/baeldung/linux~Converting-docdocx-Format-to-PDF-With-Help-of-LibreOffice-and-LaTeX">Converting doc/docx Format to PDF With Help of LibreOffice and LaTeX (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902527871/0/baeldung/linux~Listing-Dependent-Packages-of-a-Package">Listing Dependent Packages of a Package (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902527874/0/baeldung/linux~How-to-Manage-Startup-Applications-in-Linux">How to Manage Startup Applications in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902527877/0/baeldung/linux~How-to-Move-System-Directories-to-Separate-Partitions">How to Move System Directories to Separate Partitions (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902394923/0/baeldung/linux~How-to-Start-and-Use-SSHAgent-as-a-Systemd-Unit">How to Start and Use SSH-Agent as a Systemd Unit (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902307269/0/baeldung/linux~How-to-Print-Only-Filenames-Matching-a-Pattern-Using-ripgrep">How to Print Only Filenames Matching a Pattern Using ripgrep (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902307272/0/baeldung/linux~How-to-Play-MP-Files-Using-Rhythmbox-in-Ubuntu">How to Play MP3 Files Using Rhythmbox in Ubuntu (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902306768/0/baeldung/linux~How-to-Reverse-a-Bash-Array">How to Reverse a Bash Array (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902306771/0/baeldung/linux~Communication-Between-Containers-in-Rootless-Podman">Communication Between Containers in Rootless Podman (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902306774/0/baeldung/linux~Capturing-Video-From-Webcam-in-Linux">Capturing Video From Webcam in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902054285/0/baeldung/linux~Resolving-the-Forbidden-Error-When-Attempting-to-Reach-a-Web-Server-in-Linux">Resolving the 403 Forbidden Error When Attempting to Reach a Web Server in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902054288/0/baeldung/linux~How-to-Minify-CSS-and-JS-Files-Using-the-Linux-CLI">How to Minify CSS and JS Files Using the Linux CLI (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902054291/0/baeldung/linux~How-to-Completely-Uninstall-Wine-From-Linux">How to Completely Uninstall Wine From Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902054294/0/baeldung/linux~How-to-Open-STL-Files-in-Linux">How to Open STL Files in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/902054297/0/baeldung/linux~What-Is-Root-in-Linux">What Is Root in Linux? (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901844609/0/baeldung/linux~Limiting-the-Number-of-Login-Sessions-per-User">Limiting the Number of Login Sessions per User (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901844612/0/baeldung/linux~Creating-a-Nested-JSON-File-From-Variables-Using-jq">Creating a Nested JSON File From Variables Using jq (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901843652/0/baeldung/linux~Checking-the-Battery-Level-of-a-Connected-Bluetooth-Device">Checking the Battery Level of a Connected Bluetooth Device (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901843655/0/baeldung/linux~Successful-SSH-Login-With-PasswordAuthentication-no-Setting">Successful SSH Login With PasswordAuthentication no Setting (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901773911/0/baeldung/linux~Guide-to-Linux-OpenSSL-Command-With-Examples">Guide to Linux OpenSSL Command With Examples (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901773914/0/baeldung/linux~Booting-From-UEFI-in-QEMU">Booting From UEFI in QEMU (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901773920/0/baeldung/linux~How-to-Install-Ollama-Generative-AI-on-Linux">How to Install Ollama Generative AI on Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901773107/0/baeldung/linux~How-to-Set-IFS-for-a-Single-Statement-in-Bash">How to Set IFS for a Single Statement in Bash (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901773110/0/baeldung/linux~How-to-Log-FTP-Transfers">How to Log FTP Transfers (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901579304/0/baeldung/linux~How-to-Compute-bcrypt-Hash-in-Shell">How to Compute bcrypt Hash in Shell (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901565687/0/baeldung/linux~Replacing-a-String-on-the-Nth-Line-of-Multiple-Text-Files">Replacing a String on the Nth Line of Multiple Text Files (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901565690/0/baeldung/linux~How-to-Create-an-sftp-User-in-Linux">How to Create an sftp User in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901517096/0/baeldung/linux~How-to-Limit-grep-Context-to-n-Characters-in-a-Line">How to Limit grep Context to “n” Characters in a Line (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901517102/0/baeldung/linux~Guide-to-Linux-readlink-Command-With-Examples">Guide to Linux readlink Command With Examples (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901491761/0/baeldung/linux~Understanding-the-Role-of-the-nobody-User-in-Linux">Understanding the Role of the nobody User in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901427528/0/baeldung/linux~Showing-Memory-Usage-Information-in-the-Top-Bar-or-as-a-Notification-in-Ubuntu">Showing Memory Usage Information in the Top Bar or as a Notification in Ubuntu (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901427531/0/baeldung/linux~How-to-Install-Previous-Version-of-a-deb-Package-and-Pin-It">How to Install Previous Version of a .deb Package and Pin It (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901427534/0/baeldung/linux~Rotating-Login-Screen-for-a-Rotated-Monitor-in-Linux">Rotating Login Screen for a Rotated Monitor in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901383827/0/baeldung/linux~What-Is-a-Shell-Script-in-Linux">What Is a Shell Script in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901383830/0/baeldung/linux~Get-a-List-of-Installed-Packages-Matching-a-Pattern-Using-apt">Get a List of Installed Packages Matching a Pattern Using apt (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901383833/0/baeldung/linux~What%e2%80%99s-the-Purpose-of-Prefixing-a-String-With-The-Sign-in-Bash">What’s the Purpose of Prefixing a String With The $ Sign in Bash (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901383839/0/baeldung/linux~How-to-Disable-zram-at-Boot-in-Linux">How to Disable zram at Boot in Linux (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901214126/0/baeldung/linux~How-to-Take-a-Snapshot-of-an-ext-File-System">How to Take a Snapshot of an ext4 File System (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://feeds.feedblitz.com/~/901214129/0/baeldung/linux~Guide-to-Linux-netstat-Command-With-Examples">Guide to Linux netstat Command With Examples (Baeldung - Linux)</a></li>
|
|||
|
<li><a href="https://blablalinux.be/2024/10/29/pingvin-share-plateforme-de-partage-de-fichiers/">Pingvin Share – Plateforme de partage de fichiers (BlaBlaLinux)</a></li>
|
|||
|
<li><a href="https://www.phonandroid.com/android-16-fera-tourner-nativement-des-applications-linux-sur-votre-smartphone-voici-comment.html">Android 16 fera tourner nativement des applications Linux sur votre smartphone, voici comment (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.01net.com/actualites/google-prepare-support-apps-linux-android.html">Google prépare le support des apps Linux sur Android (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.frandroid.com/os/2354632_la-bonne-idee-de-valve-pour-ameliorer-steamos-et-le-steam-deck">La bonne idée de Valve pour améliorer SteamOS et le Steam Deck (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/guide-achat/linux-les-5-meilleures-distributions-pour-les-eleves-et-etudiants-398118.htm">Linux : Les 5 meilleures distributions pour les élèves et étudiants - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/linux-la-structure-du-systeme-de-fichiers-expliquee-397880.htm">Linux : la structure du système de fichiers expliquée - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.lesnumeriques.com/informatique/comment-transferer-des-fichiers-sans-fil-entre-un-ordinateur-et-un-smartphone-a226239.html">Comment transférer des fichiers sans fil entre un ordinateur et un smartphone ? (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.techcroute.com/comment-verifier-lutilisation-du-gpu-sur-linux/">Comment vérifier l’utilisation du GPU sur Linux (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/vie-privee-comment-utiliser-lextension-de-navigateur-open-source-proton-vpn-397133.htm">Vie privée : comment utiliser l'extension de navigateur open-source Proton VPN - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/flipper-zero-recoit-une-mise-a-jour-importante-et-de-nouvelles-fonctionnalites-396947.htm">Flipper Zero reçoit une mise à jour importante et de nouvelles fonctionnalités - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/flipper-zero-recoit-une-mise-a-jour-importante-et-de-nouvelles-fonctionnalites-396947.htm">Flipper Zero reçoit une mise à jour importante et de nouvelles fonctionnalités - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/flipper-zero-recoit-une-mise-a-jour-importante-et-de-nouvelles-fonctionnalites-396947.htm">Flipper Zero reçoit une mise à jour importante et de nouvelles fonctionnalités - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.lesnumeriques.com/jeux-video/steam-il-est-desormais-possible-de-partager-ses-jeux-avec-cette-derniere-mise-a-jour-n226236.html">Steam : il est désormais possible de partager ses jeux avec cette dernière mise à jour (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.techcroute.com/oubliez-teamviewer-rustdesk-est-lalternative-open-source/">Oubliez TeamViewer, RustDesk est l’alternative open-source que vous attendiez (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-installer-steam-sur-linux-et-jouer-a-des-milliers-de-jeux-396358.htm">Comment installer Steam sur Linux et jouer à des milliers de jeux ? - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.cnetfrance.fr/news/proton-vpn-integre-wireguard-a-son-application-linux-411844.htm">Proton VPN intègre WireGuard à son application Linux (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://android-mt.ouest-france.fr/news/navigateurs-quelles-sont-les-4-meilleures-alternatives-a-chrome/166667/">Navigateurs : quelles sont les 4 meilleures alternatives à Google Chrome ? (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://android-mt.ouest-france.fr/news/navigateurs-quelles-sont-les-4-meilleures-alternatives-a-chrome/166667/">Navigateurs : quelles sont les 4 meilleures alternatives à Google Chrome ? (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://android-mt.ouest-france.fr/news/nordvpn-prix-avis-et-tutti-quanti-le-meilleur-vpn-a-la-loupe/166560/">NordVPN : prix, avis et tutti quanti… Le « meilleur VPN » à la loupe ! (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/quel-est-mon-processeur-et-quelle-est-ma-carte-mere-voici-quelques-moyens-simples-et-rapides-de-le-savoir-395731.htm">Quel est mon processeur et quelle est ma carte mère ? Voici quelques moyens simples et rapides de le savoir - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/quel-est-mon-processeur-et-quelle-est-ma-carte-mere-voici-quelques-moyens-simples-et-rapides-de-le-savoir-395731.htm">Quel est mon processeur et quelle est ma carte mère ? Voici quelques moyens simples et rapides de le savoir - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.macg.co/materiel/2024/08/un-semblant-de-support-pour-la-touch-bar-arrive-sous-gnulinux-145427">Un semblant de support pour la Touch Bar arrive sous GNU/Linux (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/proton-vpn-deploie-un-protocole-anti-censure-pour-windows-395639.htm">Proton VPN déploie un protocole anti-censure pour Windows - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/guide-achat/linux-nixos-cette-distribution-nest-pas-la-plus-facile-a-utiliser-mais-cest-lune-des-plus-gratifiantes-395310.htm">Linux NixOS : cette distribution n'est pas la plus facile à utiliser, mais c'est l'une des plus gratifiantes - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/cette-distribution-linux-inspiree-de-windows-11-fonctionne-etonnamment-bien-395324.htm">Cette distribution Linux inspirée de Windows 11 fonctionne étonnamment bien - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/5-raisons-pour-lesquelles-linux-finira-par-depasser-windows-et-macos-sur-les-ordinateurs-de-bureau-395356.htm">5 raisons pour lesquelles Linux finira par dépasser Windows et MacOS sur les ordinateurs de bureau - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/guide-achat/geckolinux-si-vous-en-avez-assez-de-windows-ou-de-macos-jetez-un-coup-doeil-a-cette-alternative-facile-a-utiliser-395071.htm">GeckoLinux : si vous en avez assez de Windows ou de MacOS, jetez un coup d'œil à cette alternative facile à utiliser - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-connecter-linux-et-android-et-pourquoi-vous-devriez-le-faire-394022.htm">Comment connecter Linux et Android - et pourquoi vous devriez le faire - ZDNET (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.phonandroid.com/le-nouveau-ecran-bleu-de-la-mort-de-linux-est-la-mais-a-quoi-sert-il.html">Si votre PC plante sous Linux, ce nouvel écran bleu de la mort pourrait vous être très utile (Flipboard : Linux)</a></li>
|
|||
|
<li><a href="https://www.francetvinfo.fr/culture/livres/les-dix-polars-et-thrillers-incontournables-de-la-rentree-2024-le-choix-de-la-redaction_6843305.html#xtor=RSS-3-[lestitres]">Les dix polars et thrillers incontournables de la rentrée 2024 : le choix de la rédaction (Franceinfo - Les Titres)</a></li>
|
|||
|
<li><a href="https://goodtech.info/proton-60-de-reduction-en-ce-moment-et-80-pour-les-etudiants/">Proton : 60 % de réduction en ce moment (et 80 % pour les étudiants) (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/parution-du-livre-cartographie-web-avec-leaflet/">Parution du livre « Cartographie web avec Leaflet » (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/tor-13/">Tor Browser 14.0 continue de faire évoluer son interface (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/valkey-se-fait-une-place-sur-ubuntu/">Valkey se fait une place sur Ubuntu (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/rhel-ai-sintegre-aux-serveurs-thinksystem-de-lenovo/">RHEL AI s’intègre aux serveurs ThinkSystem de Lenovo (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/le-futur-de-la-cybersecurite-en-europe-infographie/">Le futur de la Cybersécurité en Europe (Infographie) (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/nextdns-guide-avantages-avis/">NextDNS : notre guide pour utiliser le DNS public et pare-feu (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/proton-pass-6-comptes-dans-la-formule-famille/">Proton Pass : 6 comptes dans la formule « Famille » (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/tails-linux-nouvelle-version/">Tails 6.8 s’offre un nouveau noyau Linux pour l’automne (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/quoi-de-neuf-dans-incus-6-6/">Quoi de neuf dans Incus 6.6 ? (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/ovhcloud-annonce-son-integration-avec-git-et-github/">OVHcloud annonce son intégration avec Git et GitHub (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/routeur-wifi-eero-max-7-disponible-avis/">Le routeur Eero Max 7 à 525 € au lieu de 699 € : qu’en penser ? (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/le-mini-pc-nipogi-alder-lake-n95-passe-a-149-e-quen-penser/">Compatible Linux, le mini PC NiPoGi Alder Lake N95 passe à 149 € : qu’en penser ? (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/open-source-experience-2024/">Open Source Experience 2024 : le programme est publié (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/part-de-marche-linux/">Quelle part de marché pour Linux dans le monde ? 4,5 % (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/une-collaboration-directe-entre-valve-et-arch-linux/">Une collaboration directe entre Valve et Arch Linux (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/tor-et-tails-linux-fusion/">Pourquoi le projet Tor et Tails Linux ont décidé de s’unir (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/proton-pass-sutilise-desormais-hors-ligne/">Proton Pass s’utilise désormais hors ligne (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/application-open-source-du-mois-void-alternative-open-source-a-cursor/">Application open source du mois : Void, alternative open source à Cursor (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/gnome-47-denver/">GNOME 47 “Denver” disponible : les nouveautés (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/sortie-de-valkey-8-0-lalternative-open-source-a-redis/">Sortie de Valkey 8.0, l’alternative open source à Redis (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/nextcloud-hub-9/">Quoi de neuf dans Nextcloud Hub 9 ? (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/publicites-malveillantes-pour-des-logiciels-libres-vigilance/">Publicités malveillantes pour des logiciels libres : vigilance (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/authd-lauthentification-oidc-pour-ubuntu-desktop-et-server/">Authd, l’authentification OIDC pour Ubuntu Desktop et Server (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/la-nist-publie-les-premieres-normes-de-cryptographie-resistante-aux-ordinateurs-quantiques/">La NIST publie les premières normes de cryptographie résistante aux ordinateurs quantiques (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/tuta-developpera-son-backend-a-munich/">Tuta développera son backend à Munich (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/valve-soigne-son-client-steam-pour-jouer-sous-linux/">Valve soigne son client Steam pour jouer sous Linux (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/libreoffice-24-8-nouveautes/">Les nouveautés de la suite open source LibreOffice 24.8.1 (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/pourquoi-jmap-twake-linagora-email/">Pourquoi Linagora a opté pour JMAP, l’e-mail 2.0 (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/valkey-principale-alternative-open-source-a-redis/">Valkey, principale alternative open source à Redis ? (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/rentree-dun-rssi-mesures-pour-faire-evoluer-sa-strategie-de-cyber-defense/">Rentrée d’un RSSI : mesures pour faire évoluer sa stratégie de cyber défense (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/qemu-nouvelle-version-nouveautes/">Émulation : quoi de neuf dans votre QEMU 9.1 ? (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/le-prochain-firefox-donnera-des-autorisations-temporaires-aux-sites-web/">Le prochain Firefox donnera des autorisations temporaires aux sites web (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/firefox-130-permet-de-tester-de-nouvelles-fonctions/">Firefox 130 permet de tester de nouvelles fonctions (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/votre-revue-de-presse-goodtech-du-lundi-2-septembre-2024/">Votre revue de presse #GoodTech du lundi 2 septembre 2024 (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/premiere-grande-mise-a-jour-pour-ubuntu-24-04-lts/">Première grande mise à jour pour Ubuntu 24.04 LTS (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/tout-ce-qui-vous-attend-dans-opera-one-r2/">Tout ce qui vous attend dans Opera One R2 (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/synology-dsm-7-2-2-est-plus-fiable-et-plus-efficace/">Synology : DSM 7.2.2 est plus fiable et plus efficace (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/deepin-linux-nouvelle-version/">La distribution Linux Deepin 23 est arrivée : quoi de neuf ? (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/les-developpeurs-peuvent-tester-red-hat-openshift-lightspeed-lassistant-virtuel-genai-dopenshift/">Les développeurs peuvent tester Red Hat OpenShift Lightspeed, l’assistant virtuel GenAI d’OpenShift (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/ascensio-onlyoffice-ouvre-un-bureau-en-chine/">Ascensio (OnlyOffice) ouvre un bureau en Chine (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/proton-lance-un-abonnement-duo/">Proton lance un abonnement Duo (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/une-resilience-des-donnees-zero-trust-doit-placer-la-sauvegarde-au-centre/">Une résilience des données « Zero Trust » doit placer la sauvegarde au centre (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/vanilla-os-2-orchid-nouveautes/">Vanilla OS 2 Orchid fait la synthèse entre Linux et les applications Android (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/nord-ce4-lite-5g-test-complet/">Que penser du OnePlus Nord CE4 Lite ? Notre test (GoodTech)</a></li>
|
|||
|
<li><a href="https://goodtech.info/le-cms-ghost-va-mieux-gerer-les-liens-internes-de-votre-site-web/">Le CMS Ghost gère mieux vos liens internes et propose de nouveaux moyens de paiement (GoodTech)</a></li>
|
|||
|
<li><a href="https://infoidevice.fr/lilypad-organiser-icones-gnome-shell/">Utiliser Lilypad pour réorganiser ou cacher les icônes dans GNOME Shell (InfoIdevice : Linux)</a></li>
|
|||
|
<li><a href="https://www.linuxtricks.fr/wiki/du-afficher-la-taille-des-dossiers-et-des-fichiers">du : Afficher la taille des dossiers et des fichiers (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://youtu.be/oBhpOZj2cq4?si=9kqMA6JLV5lGkysg">Keycloak : Passwordless Authentication (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://quick-tutoriel.com/comment-utiliser-le-ftp-en-ligne-de-commande/">Comment utiliser le FTP en ligne de commande (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.blackswift.fr/2024/10/17/starlight-faites-briller-votre-documentation/">Starlight - Faites briller votre documentation (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.microlinux.fr/docker-cmatrix-alpine-03/">TP Docker (3) – Un conteneur CMatrix pour toutes les plateformes (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.microlinux.fr/docker-cmatrix-alpine-02/">TP Docker (2) – Conteneuriser CMatrix avec un multi-stage build optimisé (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.microlinux.fr/docker-cmatrix-alpine-01/">TP Docker (1) – Compiler CMatrix sous Alpine Linux (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/admin-serveurs/linux/scripts-shell-securises/">Écrire des scripts shell sécurisés (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://pro-domo.ddns.net/blog/domotiser-son-chauffage-avec-home-assistant-partie-1.html">Domotiser son chauffage avec Home Assistant (en 5 parties) (01/2023) (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/observer/metriques/hertzbeat/">Introduction à HertzBeat (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=ELTwwTsR5w8">Vas-y, viens, on recode Windows de zéro (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/conteneurs/moteurs-conteneurs/cheat-sheet/">Les commandes Docker essentielles à connaître (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/conteneurs/moteurs-conteneurs/docker-network/">Comprendre le réseau Docker (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/conteneurs/registres/docker-hub/">Docker Hub de long en large (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/conteneurs/orchestrateurs/kind/">Kind, le cluster kunernetes en local (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.antoinefi.net/index.php/2024/10/06/laboratoire-infra-linux-ha-6/">Laboratoire infra Linux HA #6 - Surveillance avec Munin (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://korben.info/ryman-eco-typographie-ecologique-belle-gratuite.html">Ryman Eco - La typographie jolie, écologique et gratuite (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/developper/programmation/python/formatage-chaine/">Python : Le formatage de chaînes de caractères (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.flozz.fr/2024/10/06/flozz-daily-mix-un-generateur-de-playlist-pour-nextcloud-music-et-subsonic/?mtm_campaign=fzzdm&mtm_kwd=jdh">FLOZz Daily Mix : un générateur de playlist pour Nextcloud Music et Subsonic (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://korben.info/neverest-outil-ultime-synchronisation-emails.html">Neverest - Un outil CLI pour synchroniser / sauvegarder vos emails (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/cloud/aws/outils/aws-cli/">Maitrisez la CLI AWS (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/cloud/outils/rclone/">Gérer vos données sur le cloud avec rclone (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://go.itanea.fr/nl104">Quoi de neuf les devs ? Numéro 104 avec l'interview de Josh Cirre (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.sweego.io/fr/canal/email/liste-doutils-gratuits-en-ligne-pour-tester-ses-emails">Liste d'outils gratuits en ligne pour tester ses emails (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.geeek.org/telosys-generateur-code/">Telosys : Un générateur de code léger ! (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.antoinefi.net/index.php/2024/09/29/laboratoire-infra-linux-ha-5/">Laboratoire infra Linux HA #5 - Load balancing avec HAProxy et Keepalived (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.framboise314.fr/sortie-de-lai-camera-raspberry-pi/">Sortie de l'AI Camera Raspberry Pi (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-comment-generer-des-nombres-aleatoires-sous-linux/">Comment générer des nombres aléatoires en Bash ? (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/linux-la-structure-du-systeme-de-fichiers-expliquee-397880.htm">Linux : la structure du système de fichiers expliquée (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.geeek.org/comment-activer-le-nouveaux-mode-vocal-de-chatgpt/">Tutoriel : Comment activer le nouveaux mode vocal de ChatGPT en France ? (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://zonetuto.fr/linux/verifier-si-votre-serveur-linux-est-vulnerable-a-lattaque-cups/">Vérifier si votre serveur Linux est vulnérable à l'attaque CUPS (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.arsouyes.org/articles/2024/2024-09-27_Shellcode_makefile/">Un makefile pour produire des shellcodes (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-failles-de-securite-dans-cups-execution-de-code-a-distance/">Ces failles dans CUPS ouvrent la porte à une RCE sur Linux (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://tutox.fr/2024/09/26/stirlingpdf-le-couteau-suisse-du-pdf/">StirlingPDF : Le couteau suisse du PDF (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/conteneurs/images-conteneurs/build/bake/">Simplifiez vos Constructions d'Images avec bake (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/admin-serveurs/linux/shells-linux/zsh/">Maîtrisez Zsh (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://une-tasse-de.cafe/blog/nats/">NATS de A à Y (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.antoinefi.net/index.php/2024/09/22/laboratoire-infra-linux-ha-4/">Laboratoire infra Linux HA #4 - NFS avec DRBD et Heartbeat (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.linuxtricks.fr/wiki/installer-le-serveur-multimedia-jellyfin-sur-debian">Installer le serveur multimédia Jellyfin sur Debian (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/conteneurs/images-conteneurs/ecrire-dockerfile/">Ecrire un Dockerfile (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/admin-serveurs/linux/shells-linux/">C'est quoi un Shell ? (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.microlinux.fr/formation-ansible-10-apache/">Ansible par la pratique (10) – Un serveur web simple (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.lydra.fr/blog/release-notes-gitlab-17.3">[Vidéo] Découvre les nouveautés de GitLab 17.3 (y a du lourd !) | Release Notes (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://fljd.in/2024/09/19/les-types-hierarchiques/">Les types hiérarchiques (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://fredix.xyz/2024/09/peertube/">Peertube (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/developper/autres-outils/ide/visual-studio-code/remote-ssh/">L'extension Remote SSH de Vs Code (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.arsouyes.org/news/2024-09-18/">L’Art du Hacking - Les Shellcodes - Volume 1 (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://joinpeertube.org/news/release-6.3">Sortie de la v6.3 de PeerTube ! (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.sweego.io/fr/canal/email/jmap-nouveau-protocole-email-qui-vise-a-remplacer-imap">JMAP - "Nouveau" protocole email qui vise à remplacer IMAP (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.framboise314.fr/connaissez-vous-le-reseau-meshtastic-et-sa-version-gaulix/">Connaissez-vous le réseau MESHTASTIC ? et sa version GAULIX ? (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/rclone-synchroniser-fichiers-repertoires-cloud/">Rclone : synchroniser des fichiers vers du stockage Cloud (Google Drive, iCloud, Amazon S3, etc) (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://geekeries.org/2024/09/paid-interviews-attacks/">Paid interviews attacks (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.ogenki.io/fr/post/series/observability/metrics/">Gérer vos métriques avec les opérateurs VictoriaMetrics et Grafana ! (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/developper/programmation/python/environnements-virtuels/">Environnements Virtuels Python (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/developper/programmation/python/jinja/">Introduction aux Templates Jinja (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.cachem.fr/immich-photos-videos/">Immich : une solution autohébergée pour vos photos et vidéos (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://fredix.xyz/2024/09/netboot.xyz-openwrt/">netboot.xyz et OpenWRT (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/outils/aide/languagetool/">LanguageTool pour ne plus fauter (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.microlinux.fr/formation-ansible-01-intro/">Ansible par la pratique (1) – Présentation (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.projets-libres.org/emmabuntus-distribution-linux-et-reemploi/">Emmabuntüs, distribution Linux et réemploi (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.deblan.io/post/668/synchronisation-de-clients-freetube">Synchronisation de clients FreeTube (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-catscale-collecter-traces-de-compromission-systeme-linux/">Collecter les traces de compromission d’un système Linux (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://fredix.xyz/2024/09/auto-hebergement/">Auto-hébergement : quelques applications auto hébergées (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/services/reseau/ssh-tunneling/">Maitrisez le tunneling SSH (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://fredix.xyz/2024/08/searxng/">SearXNG : un meta moteur de recherche (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.vinishor.xyz/posts/Reseau-dn42-partie2.html">Vinishor sur DN42 - Partie 2 : Un routeur BGP sous OpenBSD (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.arpinux.org/posts/2024/2024-08-30-les-cahiers-du-debutant-internationnal.html">Les cahiers du débutant pour Debian sur TuxFamily.org ! (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.zwindler.fr/2024/08/29/transformer-logo-png-objet-3d/">Transformer un logo PNG en objet 3D (Journal du hacker)</a></li>
|
|||
|
<li><a href="http://www.linuxembedded.fr/2024/08/introduction-a-la-programmation-uefi-en-langage-rust">Introduction à la programmation UEFI en langage Rust (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/users/julien_jorge/journaux/un-environnement-de-dev-dans-son-telephone">Un environnement de dev dans son téléphone (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.kor51.org/black-hat-c-pour-pentester.html">Black hat C++ pour Pentester (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.framboise314.fr/utiliser-le-watchdog-chien-de-garde-du-raspberry-pi/">Utiliser le Watchdog (chien de garde) du Raspberry Pi (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/documenter/astro/">Construisez des sites de documentation avec Astro Starlight (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://korben.info/portr-tunneliser-facilement-connexions-http-tcp.html">Portr - Tunnelisez facilement vos connexions HTTP et TCP (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.blaess.fr/christophe/2024/08/20/mise-a-jour-de-mon-cours-linux-embarque-avec-yocto/">Mise à jour de mon cours « Linux embarqué avec Yocto » (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.vinishor.xyz/posts/Reseau-dn42-partie1.html">Vinishor sur DN42 - Partie 1 : création et déclaration d'un AS (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://ache.one/notes/manipuler-des-codes-qr-en-cli">La manipulation de codes QR via la ligne de commande (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.genma.fr/?Wireguard-comme-serveur-VPN-avec-une-Freebox-et-avec-Yunohost">Wireguard comme serveur VPN, avec une Freebox et avec Yunohost (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://stoorm.org/article/rockyou2024-txt-recuperation-exploitation-et-consultation-du-fichier">Rockyou2024.txt : récupération et consultation du fichier (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://mcorbin.fr/posts/2024-08-13-appclacks-pourquoi/">Pourquoi Appclacks est la meilleure solution de health check blackbox du marché (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://korben.info/decouvrez-trurl-outil-indispensable-manipuler-url.html">Trurl, un outil super pratique pour manipuler les URL (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.journalduhacker.net/index.php?article492/liens-interessants-journal-du-hacker-semaine-32-2024">Liens intéressants Journal du hacker semaine #32 (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://quick-tutoriel.com/reinitialiser-un-mot-de-passe-linux/">Comment réinitialiser un mot de passe Linux oublié en 2 minutes (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://zonetuto.fr/linux/ssh-telecharger-ou-envoyer-un-fichier-avec-scp/">SSH : télécharger ou envoyer un fichier avec SCP (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.linuxtricks.fr/wiki/systemd-la-resolution-de-nom-avec-systemd-resolved">systemd : La résolution de nom avec systemd-resolved (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://go.itanea.fr/fhn">Framework Heroes News : un nouvel outil de veille spécifique sur les frameworks de tout type (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.stephane-robert.info/docs/services/reseau/chrony/">Chrony et NTP (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.linuxtricks.fr/wiki/alma-linux-installer-alma-linux-sur-raspberry-pi-4">Alma Linux : Installer Alma Linux sur Raspberry Pi 4 - Post-config avec cloud-init (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://une-tasse-de.cafe/blog/goauthentik/">GoAuthentik de A à Y (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/users/asdedied/journaux/proxmox_gk-un-utilitaire-shell-pour-deployer-vos-invites-lxc-qemu-avec-cloud-init">Proxmox_GK : un utilitaire shell pour déployer vos invités LXC/QEMU, avec Cloud-init (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.teotimepacreau.fr/blog/modelisation-base-de-donnees/">Les bases pour modéliser une base de données (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://framablog.org/2024/07/31/intros-une-app-nextcloud-pour-faciliter-la-prise-en-main-de-framaspace/">Intros, une app Nextcloud pour faciliter la prise en main de Framaspace (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.linuxtricks.fr/wiki/rhel-alma-linux-centos-installer-webmin-pour-administrer-les-services">RHEL, Alma Linux, CentOS : Installer Webmin pour administrer les services (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://iampox.com/blog/bloquer-tous-les-appels-indesirables-sur-son-telephone-android">Bloquer tous les appels indésirables sur son téléphone Android (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://www.deblan.io/post/666/verifier-lexpiration-dun-domaine-ou-dun-certificat">Vérifier l'expiration d'un domaine ou d'un certificat (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://spirio.fr/2024/07/13/blocage-dattaque-par-amplification-dns-avec-fail2ban-et-blocky/">Blocage d’attaque par amplification DNS avec fail2ban et Blocky (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://blog.flozz.fr/2024/07/10/creer-facilement-son-cloud-musical-avec-nexcloud/">Créer facilement son cloud musical avec Nexcloud (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://slash-root.fr/compression-multithreading-pigz-gzip-pbzip2-bzip2/">Compression Multithreading : pigz (gzip) & pbzip2 (bzip2) (Journal du hacker)</a></li>
|
|||
|
<li><a href="https://korben.info/taskwarrior-gestionnaire-taches-ligne-commande.html">Taskwarrior – Enfin un bon gestionnaire de tâches (todo list) en ligne de commande (Korben : Linux)</a></li>
|
|||
|
<li><a href="https://korben.info/zsh-copilot-boostez-votre-shell-ia-github.html">Zsh-copilot – Et votre terminal devient intelligent (Korben : Linux)</a></li>
|
|||
|
<li><a href="https://korben.info/grsync-synchronisation-facile-linux.html">Grsync – Une chouette interface pour rsync (Korben : Linux)</a></li>
|
|||
|
<li><a href="https://korben.info/decouvrez-trurl-outil-indispensable-manipuler-url.html">Trurl, un outil super pratique pour manipuler les URL (Korben : Linux)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/les-journaux-linuxfr-org-les-mieux-notes-de-septembre-2024">🪶 Les journaux LinuxFr.org les mieux notés de septembre 2024 (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/revue-de-presse-de-l-april-pour-la-semaine-40-de-l-annee-2024">Revue de presse de l’April pour la semaine 40 de l’année 2024 (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/lettre-d-information-xmpp-d-aout-2024">Lettre d’information XMPP d’août 2024 (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/revue-de-presse-septembre-2024">📰 Revue de presse — septembre 2024 (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/projets-libres-episode-32-emmabuntus-linux-et-reemploi">Projets Libres! Episode 32 : Emmabuntüs, Linux et réemploi (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/interview-de-cli345-createur-de-filtres-pour-g-mic">Interview de Cli345, créateur de filtres pour G’MIC (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/agir-contre-les-appels-commerciaux">Agir contre les appels commerciaux (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/revue-de-presse-de-l-april-pour-la-semaine-32-de-l-annee-2024">Revue de presse de l’April pour la semaine 32 de l’année 2024 (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/news/sortie-de-passbolt-4-9-0-recherche-par-dossiers-et-amelioration-des-performances">Sortie de passbolt 4.9.0 : recherche par dossiers et amélioration des performances (LinuxFr Org)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/configurer-un-client-ntp-sous-linux/">Linux : configurer un client NTP pour synchroniser la date et l’heure (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/tableau-simple-en-bash/">Script Bash – Comment créer et manipuler un tableau ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-comment-creer-un-menu-interactif/">Script Bash – Comment créer un menu interactif ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/un-fichier-de-configuration-pour-vos-scripts-bash/">Comment utiliser un fichier de configuration pour vos scripts Bash ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-la-faille-de-securite-dans-cups-peut-etre-utilisee-pour-amplifier-des-attaques-ddos/">Linux : la faille de sécurité dans CUPS peut être utilisée pour amplifier des attaques DDoS (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-comment-generer-des-nombres-aleatoires-sous-linux/">Script Bash – Comment générer des nombres aléatoires sous Linux ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/creer-une-cle-usb-chiffree-via-luks-avec-cryptsetup/">Comment créer une clé USB chiffrée via LUKS avec cryptsetup ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/mise-en-place-dun-serveur-haproxy/">Comment configurer un reverse proxy HAProxy sur Debian 12 ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-catscale-collecter-traces-de-compromission-systeme-linux/">Linux CatScale : comment collecter les traces de compromission d’un système Linux ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/python-comment-creer-un-serveur-web/">Python : comment créer un serveur web en une seule ligne de commande ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-verifier-compatibilite-posix-dn-script-avec-shellsheck/">Linux : comment vérifier la compatibilité POSIX d’un script avec shellsheck ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/gerer-une-expiration-automatique-des-comptes-sous-linux/">Comment configurer l’expiration automatique des comptes utilisateurs sous Linux ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-ncdu-afficher-taille-des-dossiers-en-console/">ncdu : un outil interactif pour voir la taille des dossiers sous Linux (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/creer-une-archive-7-zip-chiffree-en-ligne-de-commande-sous-linux/">Comment créer une archive 7-Zip chiffrée en ligne de commande sous Linux ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-forcer-le-changement-de-mot-de-passe-des-comptes/">Forcer le changement de mot de passe des comptes utilisateur sous Linux (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-ecrire-dans-un-fichier/">Script Bash – Comment écrire dans un nouveau fichier ou un fichier existant ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/linux-veracrypt-en-ligne-de-commande/">Linux : chiffrer des données avec VeraCrypt en ligne de commande (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-interactif-lire-saisie-utilisateur-linux/">Script Bash interactif : comment lire la saisie clavier d’un utilisateur ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-utiliser-boucles-while-exemples-linux/">Script Bash : comment utiliser les boucles While ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-comment-utiliser-les-boucles-for/">Script Bash : comment utiliser les boucles For ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/script-bash-utiliser-conditions-if-else-et-elif/">Script Bash : comment utiliser les conditions If, Else et Elif ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/gestion-de-la-politique-des-mots-de-passe-sous-linux/">Comment configurer la politique de mots de passe sous Linux ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/debuter-script-bash-linux/">Introduction au script Bash sous Linux : créer son premier script ! (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/tuto-installer-configurer-caddy-debian-linux/">Serveur web : installation et configuration de Caddy sur Debian 12 (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/arborescence-de-repertoires-avec-mkdir/">Linux : Comment créer une arborescence de répertoires avec mkdir ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/comment-arreter-ou-redemarrer-debian-10/">Comment arrêter ou redémarrer Debian 12 ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/comment-compresser-et-decompresser-tar-bz2-sous-linux/">Comment compresser et décompresser des archives tar.bz2 sous Linux ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/configurer-adresse-ip-statique-netplan-ubuntu-ou-debian/">Comment configurer une adresse IP statique avec Netplan sur Ubuntu ou Debian ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.it-connect.fr/enregistrer-des-gif-sous-linux-avec-peek/">Comment enregistrer des GIF animés sous Linux avec Peek ? (Linux | IT-Connect)</a></li>
|
|||
|
<li><a href="https://www.youtube.com/watch?v=akp_NQ3NlDU">Intégrer un poste Linux dans AD (LJP : Linux : youtube)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/mise-en-veille-linux-configuration-commandes/">Modes de mise en veille Linux et configuration et commandes pour passer en veille (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/executer-commandes-distance-ssh/">Exécuter une ou plusieurs commandes à distance en SSH (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/shred-linux-ecraser-fichiers-definitivement/">shred sur Linux : écraser des fichiers définitivement (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/linux-effacer-disque/">Linux : effacer un disque (5 façons) (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/linux-supprimer-fichiers-definitivement-sans-possibilite-recuperation/">Linux : supprimer des fichiers définitivement sans possibilité de récupération (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/meilleurs-logiciels-sauvegarde-linux/">20 meilleurs logiciels de sauvegarde pour Linux (open source) (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/comment-installer-systemd-boot-linux/">Comment installer Systemd-boot sur Linux (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/utiliser-commande-linux-csplit-exemples/">Utiliser la commande Linux Csplit avec des exemples (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/calibrer-batterie-pc-portable/">Calibrer la batterie d’un PC portable (Windows/Linux) (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/super-grub2-disk-reparer-demarrage/">Super Grub2 Disk : réparer le démarrage (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/activer-ssh-linux/">Activer SSH sur Linux (Ubuntu, Mint, Debian, Fedora, …) (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/lancer-commande-ssh-qui-continue-execution-apres-deconnexion/">Lancer une commande en SSH qui continue son exécution après une déconnexion (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/grub-reboot-redemarrer-sur-un-os-specifique/">grub-reboot : redémarrer sur un OS spécifique (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/grub-ajouter-entree-manuellement/">GRUB : ajouter une entrée manuellement (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/commande-pidof-linux-obtenir-pid-processus/">Commande Pidof sous Linux : obtenir le PID d’un processus (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/sauvegarder-restaurer-fichiers-linux-deja-dup/">Sauvegarder/restaurer des fichiers sur Linux avec Deja-dup (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/comment-mettre-a-jour-ubuntu-22-04-en-24-04-lts-linux/">Comment mettre à jour Ubuntu 22.04 en 24.04 LTS (Linux) (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/timeshift-creer-et-restaurer-une-sauvegarde-systeme-sur-linux-ligne-de-commandes/">Timeshift : créer et restaurer une sauvegarde système sur Linux (ligne de commandes) (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.malekal.com/screen-linux-lancer-plusieurs-commandes-sans-perdre-execution/">Screen sur Linux : multiplexeur pour exécuter plusieurs commandes et sans perdre leurs exécutions (Malekal : Linux)</a></li>
|
|||
|
<li><a href="https://www.maxifoot.fr/nantes/a-kombouare-une-delivrance-foot-418002.htm">Nantes : A. Kombouaré - "une délivrance" (Maxifoot)</a></li>
|
|||
|
<li><a href="https://www.numetopia.fr/firefox-129-est-disponible-quoi-de-neuf/">Firefox 129 est disponible ! Quoi de neuf ? (Numétopia)</a></li>
|
|||
|
<li><a href="https://www.numetopia.fr/thunderbird-128-nebula-est-disponible-quoi-de-neuf/">Thunderbird 128 “Nebula” est disponible ! Quoi de neuf ? (Numétopia)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/users/oumph/journaux/linuxfr-org-seconde-quinzaine-d-aout-2024">LinuxFr.org : seconde quinzaine d’août 2024 (Oumph)</a></li>
|
|||
|
<li><a href="https://linuxfr.org/users/oumph/journaux/linuxfr-org-seconde-quinzaine-de-juillet-2024">LinuxFr.org : seconde quinzaine de juillet 2024 (Oumph)</a></li>
|
|||
|
<li><a href="https://passiongnulinux.tuxfamily.org/blog/2024-10-07-ameliorer-la-recherche-sur-mon-blog-mon-aventure-avec-la-page-de-recherche/">Améliorer la Recherche sur Mon Blog : Mon Aventure avec la Page de Recherche (Seb's blog)</a></li>
|
|||
|
<li><a href="https://passiongnulinux.tuxfamily.org/blog/2024-09-25-flatpak-et-snap/">Flatpak et snap. (Seb's blog)</a></li>
|
|||
|
<li><a href="https://passiongnulinux.tuxfamily.org/blog/2024-09-13-changer-pour-changer-une-histoire-de-blog/">Changer pour changer, une histoire de blog. (Seb's blog)</a></li>
|
|||
|
<li><a href="https://passiongnulinux.tuxfamily.org/blog/2024-09-12-les-developpeurs-de-debian-reflechissent-a-un-plan-pour-supprimer-davantage-de-paquets-non-maintenus/">Les développeurs de Debian réfléchissent à un plan pour supprimer davantage de paquets non maintenus. (Seb's blog)</a></li>
|
|||
|
<li><a href="https://passiongnulinux.tuxfamily.org/tutos/2023-07-30-comment-utiliser-des-extraits-dans-eleventy/">Comment utiliser des extraits dans Eleventy(11ty)? (Seb's blog)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/linux-comment-imprimer-en-utilisant-uniquement-la-ligne-de-commande-400369.htm#xtor=RSS-1">Linux : comment imprimer en utilisant uniquement la ligne de commande (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-creer-une-cle-usb-linux-amorcable-396594.htm#xtor=RSS-1">Comment créer une clé USB Linux amorçable (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-executer-une-application-windows-sur-linux-avec-wine-396464.htm#xtor=RSS-1">Comment exécuter une application Windows sur Linux avec Wine (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/10-raccourcis-clavier-linux-que-jutilise-tous-les-jours-395760.htm#xtor=RSS-1">10 raccourcis clavier Linux que j'utilise tous les jours (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-connecter-linux-et-android-et-pourquoi-vous-devriez-le-faire-394022.htm#xtor=RSS-1">Comment connecter Linux et Android - et pourquoi vous devriez le faire (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/ubuntu-linux-core-24-un-bond-en-avant-pour-liot-et-le-edge-computing-392781.htm#xtor=RSS-1">Ubuntu Linux Core 24 : un bond en avant pour l'IoT et le Edge Computing (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/guide-achat/neptune-linux-une-distribution-elegante-tres-orientee-multimedia-391679.htm#xtor=RSS-1">Neptune Linux, une distribution élégante très orientée multimédia (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/linux-comment-installer-et-configurer-fail2ban-pour-mieux-proteger-votre-poste-39964734.htm#xtor=RSS-1">Linux : Comment installer et configurer fail2ban pour mieux protéger votre poste (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/qu-est-ce-que-ssh-et-comment-l-utiliser-voici-les-bases-du-secure-shell-que-vous-devez-conna-tre-39964556.htm#xtor=RSS-1">Qu'est-ce que SSH et comment l'utiliser ? Voici les bases du Secure Shell que vous devez connaître (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-utiliser-la-reconnaissance-vocale-sur-linux-grace-a-speech-note-39963466.htm#xtor=RSS-1">Comment utiliser la reconnaissance vocale sur Linux grâce à Speech Note ? (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/guide-achat/inquietude-sur-la-confidentialite-et-la-securite-en-ligne-ce-navigateur-vous-protege-mieux-que-firefox-39963352.htm#xtor=RSS-1">Inquiétude sur la confidentialité et la sécurité en ligne ? Ce navigateur vous protège mieux que Firefox (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-telecharger-des-fichiers-sous-linux-sans-navigateur-web-et-pourquoi-vous-devriez-le-faire-39963280.htm#xtor=RSS-1">Comment télécharger des fichiers sous Linux sans navigateur web (et pourquoi vous devriez le faire) (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/pipewire-10-l-audio-sous-linux-arrive-enfin-a-maturite-39962766.htm#xtor=RSS-1">PipeWire 1.0 : l'audio sous Linux arrive (enfin) à maturité (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/nouveau-sur-linux-voici-7-choses-a-faire-pour-securiser-votre-systeme-39962472.htm#xtor=RSS-1">Nouveau sur Linux ? Voici 7 choses à faire pour sécuriser votre système (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/actualites/comment-ubuntu-linux-s-est-glisse-dans-les-pc-portables-haut-de-gamme-de-dell-et-pourquoi-ca-s-appelle-project-sputnik-39962002.htm#xtor=RSS-1">Comment Ubuntu Linux s'est glissé dans les PC portables haut de gamme de Dell (et pourquoi ça s'appelle "Project Sputnik") (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/linux-cet-outil-est-desormais-ma-methode-preferee-pour-surveiller-et-gerer-les-applications-39961164.htm#xtor=RSS-1">Linux : cet outil est désormais ma méthode préférée pour surveiller et gérer les applications (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-chiffrer-un-fichier-sous-linux-39956852.htm#xtor=RSS-1">Comment chiffrer un fichier sous Linux (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/vous-ne-vous-souvenez-plus-de-la-commande-linux-que-vous-venez-d-executer-voici-comment-repeter-une-commande-39955528.htm#xtor=RSS-1">Vous ne vous souvenez plus de la commande Linux que vous venez d'exécuter ? Voici comment répéter une commande (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-installer-linux-sur-un-vieil-ordinateur-portable-39955326.htm#xtor=RSS-1">Comment installer Linux sur un vieil ordinateur portable ? (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-creer-une-cle-usb-bootable-linux-39955254.htm#xtor=RSS-1">Comment créer une clé bootable et installer Linux ? (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-installer-facilement-un-service-de-cloud-computing-a-la-maison-39954368.htm#xtor=RSS-1">Comment installer facilement un service de cloud computing à la maison (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/guide-achat/vanilla-os-propose-une-nouvelle-approche-de-la-securite-sur-linux-39952260.htm#xtor=RSS-1">Vanilla OS propose une nouvelle approche de la sécurité sur Linux (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/guide-achat/bluestar-est-la-distribution-ideale-pour-decouvrir-arch-linux-39950598.htm#xtor=RSS-1">Bluestar est la distribution idéale pour découvrir Arch Linux (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-configurer-l-authentification-par-cle-ssh-sous-linux-pour-des-connexions-plus-sures-39948962.htm#xtor=RSS-1">Comment configurer l'authentification par clé SSH sous Linux pour des connexions plus sûres ? (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-partager-des-dossiers-sur-votre-reseau-a-partir-de-linux-39948308.htm#xtor=RSS-1">Comment partager des dossiers sur votre réseau à partir de Linux ? (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-configurer-le-fichier-hosts-sous-linux-39948168.htm#xtor=RSS-1">Comment configurer le fichier hosts sous Linux (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/qu-est-ce-qu-un-terminal-linux-drop-down-et-pourquoi-en-utiliser-un-39947828.htm#xtor=RSS-1">Qu'est-ce qu'un terminal Linux drop-down et pourquoi en utiliser un ? (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/comment-mettre-fin-a-un-processus-sous-linux-39946498.htm#xtor=RSS-1">Comment mettre fin à un processus sous Linux ? (ZDNet News Linux)</a></li>
|
|||
|
<li><a href="https://www.zdnet.fr/pratique/linux-comment-utiliser-uncomplicated-firewall-39944706.htm#xtor=RSS-1">Linux : comment utiliser Uncomplicated Firewall ? (ZDNet News Linux)</a></li>
|
|||
|
</ul>
|
|||
|
|
|||
|
<button onclick="topFunction()" id="myBtn" title="Haut de page">↑</button>
|
|||
|
<script>
|
|||
|
//Get the button
|
|||
|
var mybutton = document.getElementById("myBtn");
|
|||
|
|
|||
|
// When the user scrolls down 20px from the top of the document, show the button
|
|||
|
window.onscroll = function() {scrollFunction()};
|
|||
|
|
|||
|
function scrollFunction() {
|
|||
|
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
|
|||
|
mybutton.style.display = "block";
|
|||
|
} else {
|
|||
|
mybutton.style.display = "none";
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// When the user clicks on the button, scroll to the top of the document
|
|||
|
function topFunction() {
|
|||
|
document.body.scrollTop = 0;
|
|||
|
document.documentElement.scrollTop = 0;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
function rechercheFonction() {
|
|||
|
var input, filter, ul, li, a, i, txtValue;
|
|||
|
input = document.getElementById("saisie-recherche");
|
|||
|
filter = input.value.toUpperCase();
|
|||
|
ul = document.getElementById("articlesTTRSS");
|
|||
|
li = ul.getElementsByTagName("li");
|
|||
|
for (i = 0; i < li.length; i++) {
|
|||
|
a = li[i].getElementsByTagName("a")[0];
|
|||
|
txtValue = a.textContent || a.innerText;
|
|||
|
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
|||
|
li[i].style.display = "";
|
|||
|
} else {
|
|||
|
li[i].style.display = "none";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
// Cacher le champ de recherche
|
|||
|
var mysearchbox = document.getElementById("searchbox");
|
|||
|
mysearchbox.style.visibility = "hidden";
|
|||
|
</script>
|
|||
|
</body>
|
|||
|
</html>
|
|||
|
|
|||
|
|
|||
|
</div>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<div class="d-print-none"><footer class="article__footer"><!-- start custom article footer snippet -->
|
|||
|
|
|||
|
<!-- end custom article footer snippet -->
|
|||
|
<!--
|
|||
|
<div align="right"> </div>
|
|||
|
-->
|
|||
|
</footer>
|
|||
|
</div>
|
|||
|
|
|||
|
</div>
|
|||
|
|
|||
|
<script>(function() {
|
|||
|
var SOURCES = window.TEXT_VARIABLES.sources;
|
|||
|
window.Lazyload.js(SOURCES.jquery, function() {
|
|||
|
$(function() {
|
|||
|
var $this ,$scroll;
|
|||
|
var $articleContent = $('.js-article-content');
|
|||
|
var hasSidebar = $('.js-page-root').hasClass('layout--page--sidebar');
|
|||
|
var scroll = hasSidebar ? '.js-page-main' : 'html, body';
|
|||
|
$scroll = $(scroll);
|
|||
|
|
|||
|
$articleContent.find('.highlight').each(function() {
|
|||
|
$this = $(this);
|
|||
|
$this.attr('data-lang', $this.find('code').attr('data-lang'));
|
|||
|
});
|
|||
|
$articleContent.find('h1[id], h2[id], h3[id], h4[id], h5[id], h6[id]').each(function() {
|
|||
|
$this = $(this);
|
|||
|
$this.append($('<a class="anchor d-print-none" aria-hidden="true"></a>').html('<i class="fas fa-anchor"></i>'));
|
|||
|
});
|
|||
|
$articleContent.on('click', '.anchor', function() {
|
|||
|
$scroll.scrollToAnchor('#' + $(this).parent().attr('id'), 400);
|
|||
|
});
|
|||
|
});
|
|||
|
});
|
|||
|
})();
|
|||
|
</script>
|
|||
|
|
|||
|
</div><section class="page__comments d-print-none"></section></article><!-- start custom main bottom snippet -->
|
|||
|
<!-- end custom main bottom snippet -->
|
|||
|
</div>
|
|||
|
</div></div></div></div>
|
|||
|
</div><script>(function() {
|
|||
|
var SOURCES = window.TEXT_VARIABLES.sources;
|
|||
|
window.Lazyload.js(SOURCES.jquery, function() {
|
|||
|
var $body = $('body'), $window = $(window);
|
|||
|
var $pageRoot = $('.js-page-root'), $pageMain = $('.js-page-main');
|
|||
|
var activeCount = 0;
|
|||
|
function modal(options) {
|
|||
|
var $root = this, visible, onChange, hideWhenWindowScroll = false;
|
|||
|
var scrollTop;
|
|||
|
function setOptions(options) {
|
|||
|
var _options = options || {};
|
|||
|
visible = _options.initialVisible === undefined ? false : show;
|
|||
|
onChange = _options.onChange;
|
|||
|
hideWhenWindowScroll = _options.hideWhenWindowScroll;
|
|||
|
}
|
|||
|
function init() {
|
|||
|
setState(visible);
|
|||
|
}
|
|||
|
function setState(isShow) {
|
|||
|
if (isShow === visible) {
|
|||
|
return;
|
|||
|
}
|
|||
|
visible = isShow;
|
|||
|
if (visible) {
|
|||
|
activeCount++;
|
|||
|
scrollTop = $(window).scrollTop() || $pageMain.scrollTop();
|
|||
|
$root.addClass('modal--show');
|
|||
|
$pageMain.scrollTop(scrollTop);
|
|||
|
activeCount === 1 && ($pageRoot.addClass('show-modal'), $body.addClass('of-hidden'));
|
|||
|
hideWhenWindowScroll && window.hasEvent('touchstart') && $window.on('scroll', hide);
|
|||
|
$window.on('keyup', handleKeyup);
|
|||
|
} else {
|
|||
|
activeCount > 0 && activeCount--;
|
|||
|
$root.removeClass('modal--show');
|
|||
|
$window.scrollTop(scrollTop);
|
|||
|
activeCount === 0 && ($pageRoot.removeClass('show-modal'), $body.removeClass('of-hidden'));
|
|||
|
hideWhenWindowScroll && window.hasEvent('touchstart') && $window.off('scroll', hide);
|
|||
|
$window.off('keyup', handleKeyup);
|
|||
|
}
|
|||
|
onChange && onChange(visible);
|
|||
|
}
|
|||
|
function show() {
|
|||
|
setState(true);
|
|||
|
}
|
|||
|
function hide() {
|
|||
|
setState(false);
|
|||
|
}
|
|||
|
function handleKeyup(e) {
|
|||
|
// Char Code: 27 ESC
|
|||
|
if (e.which === 27) {
|
|||
|
hide();
|
|||
|
}
|
|||
|
}
|
|||
|
setOptions(options);
|
|||
|
init();
|
|||
|
return {
|
|||
|
show: show,
|
|||
|
hide: hide,
|
|||
|
$el: $root
|
|||
|
};
|
|||
|
}
|
|||
|
$.fn.modal = modal;
|
|||
|
});
|
|||
|
})();
|
|||
|
</script><div class="modal modal--overflow page__search-modal d-print-none js-page-search-modal"><script>
|
|||
|
(function () {
|
|||
|
var SOURCES = window.TEXT_VARIABLES.sources;
|
|||
|
window.Lazyload.js(SOURCES.jquery, function() {
|
|||
|
// search panel
|
|||
|
var search = (window.search || (window.search = {}));
|
|||
|
var useDefaultSearchBox = window.useDefaultSearchBox === undefined ?
|
|||
|
true : window.useDefaultSearchBox ;
|
|||
|
|
|||
|
var $searchModal = $('.js-page-search-modal');
|
|||
|
var $searchToggle = $('.js-search-toggle');
|
|||
|
var searchModal = $searchModal.modal({ onChange: handleModalChange, hideWhenWindowScroll: true });
|
|||
|
var modalVisible = false;
|
|||
|
search.searchModal = searchModal;
|
|||
|
|
|||
|
var $searchBox = null;
|
|||
|
var $searchInput = null;
|
|||
|
var $searchClear = null;
|
|||
|
|
|||
|
function getModalVisible() {
|
|||
|
return modalVisible;
|
|||
|
}
|
|||
|
search.getModalVisible = getModalVisible;
|
|||
|
|
|||
|
function handleModalChange(visible) {
|
|||
|
modalVisible = visible;
|
|||
|
if (visible) {
|
|||
|
search.onShow && search.onShow();
|
|||
|
useDefaultSearchBox && $searchInput[0] && $searchInput[0].focus();
|
|||
|
} else {
|
|||
|
search.onShow && search.onHide();
|
|||
|
useDefaultSearchBox && $searchInput[0] && $searchInput[0].blur();
|
|||
|
setTimeout(function() {
|
|||
|
useDefaultSearchBox && ($searchInput.val(''), $searchBox.removeClass('not-empty'));
|
|||
|
search.clear && search.clear();
|
|||
|
window.pageAsideAffix && window.pageAsideAffix.refresh();
|
|||
|
}, 400);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
$searchToggle.on('click', function() {
|
|||
|
modalVisible ? searchModal.hide() : searchModal.show();
|
|||
|
});
|
|||
|
// Char Code: 83 S, 191 /
|
|||
|
$(window).on('keyup', function(e) {
|
|||
|
if (!modalVisible && !window.isFormElement(e.target || e.srcElement) && (e.which === 83 || e.which === 191)) {
|
|||
|
modalVisible || searchModal.show();
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
if (useDefaultSearchBox) {
|
|||
|
$searchBox = $('.js-search-box');
|
|||
|
$searchInput = $searchBox.children('input');
|
|||
|
$searchClear = $searchBox.children('.js-icon-clear');
|
|||
|
search.getSearchInput = function() {
|
|||
|
return $searchInput.get(0);
|
|||
|
};
|
|||
|
search.getVal = function() {
|
|||
|
return $searchInput.val();
|
|||
|
};
|
|||
|
search.setVal = function(val) {
|
|||
|
$searchInput.val(val);
|
|||
|
};
|
|||
|
|
|||
|
$searchInput.on('focus', function() {
|
|||
|
$(this).addClass('focus');
|
|||
|
});
|
|||
|
$searchInput.on('blur', function() {
|
|||
|
$(this).removeClass('focus');
|
|||
|
});
|
|||
|
$searchInput.on('input', window.throttle(function() {
|
|||
|
var val = $(this).val();
|
|||
|
if (val === '' || typeof val !== 'string') {
|
|||
|
search.clear && search.clear();
|
|||
|
} else {
|
|||
|
$searchBox.addClass('not-empty');
|
|||
|
search.onInputNotEmpty && search.onInputNotEmpty(val);
|
|||
|
}
|
|||
|
}, 400));
|
|||
|
$searchClear.on('click', function() {
|
|||
|
$searchInput.val(''); $searchBox.removeClass('not-empty');
|
|||
|
search.clear && search.clear();
|
|||
|
});
|
|||
|
}
|
|||
|
});
|
|||
|
})();
|
|||
|
</script><div class="search search--dark">
|
|||
|
<div class="main">
|
|||
|
<div class="search__header">Recherche</div>
|
|||
|
<div class="search-bar">
|
|||
|
<div class="search-box js-search-box">
|
|||
|
<div class="search-box__icon-search"><i class="fas fa-search"></i></div>
|
|||
|
<input id="search-input" type="text" />
|
|||
|
<div class="search-box__icon-clear js-icon-clear">
|
|||
|
<a><i class="fas fa-times"></i></a>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<button class="button button--theme-dark button--pill search__cancel js-search-toggle">
|
|||
|
Annuler</button>
|
|||
|
</div>
|
|||
|
<div id="results-container" class="search-result js-search-result"></div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<!-- Script pointing to search-script.js -->
|
|||
|
<script>/*!
|
|||
|
* Simple-Jekyll-Search
|
|||
|
* Copyright 2015-2020, Christian Fei
|
|||
|
* Licensed under the MIT License.
|
|||
|
*/
|
|||
|
|
|||
|
(function(){
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$Templater_7 = {
|
|||
|
compile: compile,
|
|||
|
setOptions: setOptions
|
|||
|
}
|
|||
|
|
|||
|
const options = {}
|
|||
|
options.pattern = /\{(.*?)\}/g
|
|||
|
options.template = ''
|
|||
|
options.middleware = function () {}
|
|||
|
|
|||
|
function setOptions (_options) {
|
|||
|
options.pattern = _options.pattern || options.pattern
|
|||
|
options.template = _options.template || options.template
|
|||
|
if (typeof _options.middleware === 'function') {
|
|||
|
options.middleware = _options.middleware
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function compile (data) {
|
|||
|
return options.template.replace(options.pattern, function (match, prop) {
|
|||
|
const value = options.middleware(prop, data[prop], options.template)
|
|||
|
if (typeof value !== 'undefined') {
|
|||
|
return value
|
|||
|
}
|
|||
|
return data[prop] || match
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
'use strict';
|
|||
|
|
|||
|
function fuzzysearch (needle, haystack) {
|
|||
|
var tlen = haystack.length;
|
|||
|
var qlen = needle.length;
|
|||
|
if (qlen > tlen) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
if (qlen === tlen) {
|
|||
|
return needle === haystack;
|
|||
|
}
|
|||
|
outer: for (var i = 0, j = 0; i < qlen; i++) {
|
|||
|
var nch = needle.charCodeAt(i);
|
|||
|
while (j < tlen) {
|
|||
|
if (haystack.charCodeAt(j++) === nch) {
|
|||
|
continue outer;
|
|||
|
}
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
var _$fuzzysearch_1 = fuzzysearch;
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
/* removed: const _$fuzzysearch_1 = require('fuzzysearch') */;
|
|||
|
|
|||
|
var _$FuzzySearchStrategy_5 = new FuzzySearchStrategy()
|
|||
|
|
|||
|
function FuzzySearchStrategy () {
|
|||
|
this.matches = function (string, crit) {
|
|||
|
return _$fuzzysearch_1(crit.toLowerCase(), string.toLowerCase())
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$LiteralSearchStrategy_6 = new LiteralSearchStrategy()
|
|||
|
|
|||
|
function LiteralSearchStrategy () {
|
|||
|
this.matches = function (str, crit) {
|
|||
|
if (!str) return false
|
|||
|
|
|||
|
str = str.trim().toLowerCase()
|
|||
|
crit = crit.trim().toLowerCase()
|
|||
|
|
|||
|
return crit.split(' ').filter(function (word) {
|
|||
|
return str.indexOf(word) >= 0
|
|||
|
}).length === crit.split(' ').length
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$Repository_4 = {
|
|||
|
put: put,
|
|||
|
clear: clear,
|
|||
|
search: search,
|
|||
|
setOptions: __setOptions_4
|
|||
|
}
|
|||
|
|
|||
|
/* removed: const _$FuzzySearchStrategy_5 = require('./SearchStrategies/FuzzySearchStrategy') */;
|
|||
|
/* removed: const _$LiteralSearchStrategy_6 = require('./SearchStrategies/LiteralSearchStrategy') */;
|
|||
|
|
|||
|
function NoSort () {
|
|||
|
return 0
|
|||
|
}
|
|||
|
|
|||
|
const data = []
|
|||
|
let opt = {}
|
|||
|
|
|||
|
opt.fuzzy = false
|
|||
|
opt.limit = 10
|
|||
|
opt.searchStrategy = opt.fuzzy ? _$FuzzySearchStrategy_5 : _$LiteralSearchStrategy_6
|
|||
|
opt.sort = NoSort
|
|||
|
opt.exclude = []
|
|||
|
|
|||
|
function put (data) {
|
|||
|
if (isObject(data)) {
|
|||
|
return addObject(data)
|
|||
|
}
|
|||
|
if (isArray(data)) {
|
|||
|
return addArray(data)
|
|||
|
}
|
|||
|
return undefined
|
|||
|
}
|
|||
|
function clear () {
|
|||
|
data.length = 0
|
|||
|
return data
|
|||
|
}
|
|||
|
|
|||
|
function isObject (obj) {
|
|||
|
return Boolean(obj) && Object.prototype.toString.call(obj) === '[object Object]'
|
|||
|
}
|
|||
|
|
|||
|
function isArray (obj) {
|
|||
|
return Boolean(obj) && Object.prototype.toString.call(obj) === '[object Array]'
|
|||
|
}
|
|||
|
|
|||
|
function addObject (_data) {
|
|||
|
data.push(_data)
|
|||
|
return data
|
|||
|
}
|
|||
|
|
|||
|
function addArray (_data) {
|
|||
|
const added = []
|
|||
|
clear()
|
|||
|
for (let i = 0, len = _data.length; i < len; i++) {
|
|||
|
if (isObject(_data[i])) {
|
|||
|
added.push(addObject(_data[i]))
|
|||
|
}
|
|||
|
}
|
|||
|
return added
|
|||
|
}
|
|||
|
|
|||
|
function search (crit) {
|
|||
|
if (!crit) {
|
|||
|
return []
|
|||
|
}
|
|||
|
return findMatches(data, crit, opt.searchStrategy, opt).sort(opt.sort)
|
|||
|
}
|
|||
|
|
|||
|
function __setOptions_4 (_opt) {
|
|||
|
opt = _opt || {}
|
|||
|
|
|||
|
opt.fuzzy = _opt.fuzzy || false
|
|||
|
opt.limit = _opt.limit || 10
|
|||
|
opt.searchStrategy = _opt.fuzzy ? _$FuzzySearchStrategy_5 : _$LiteralSearchStrategy_6
|
|||
|
opt.sort = _opt.sort || NoSort
|
|||
|
opt.exclude = _opt.exclude || []
|
|||
|
}
|
|||
|
|
|||
|
function findMatches (data, crit, strategy, opt) {
|
|||
|
const matches = []
|
|||
|
for (let i = 0; i < data.length && matches.length < opt.limit; i++) {
|
|||
|
const match = findMatchesInObject(data[i], crit, strategy, opt)
|
|||
|
if (match) {
|
|||
|
matches.push(match)
|
|||
|
}
|
|||
|
}
|
|||
|
return matches
|
|||
|
}
|
|||
|
|
|||
|
function findMatchesInObject (obj, crit, strategy, opt) {
|
|||
|
for (const key in obj) {
|
|||
|
if (!isExcluded(obj[key], opt.exclude) && strategy.matches(obj[key], crit)) {
|
|||
|
return obj
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function isExcluded (term, excludedTerms) {
|
|||
|
for (let i = 0, len = excludedTerms.length; i < len; i++) {
|
|||
|
const excludedTerm = excludedTerms[i]
|
|||
|
if (new RegExp(excludedTerm).test(term)) {
|
|||
|
return true
|
|||
|
}
|
|||
|
}
|
|||
|
return false
|
|||
|
}
|
|||
|
|
|||
|
/* globals ActiveXObject:false */
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$JSONLoader_2 = {
|
|||
|
load: load
|
|||
|
}
|
|||
|
|
|||
|
function load (location, callback) {
|
|||
|
const xhr = getXHR()
|
|||
|
xhr.open('GET', location, true)
|
|||
|
xhr.onreadystatechange = createStateChangeListener(xhr, callback)
|
|||
|
xhr.send()
|
|||
|
}
|
|||
|
|
|||
|
function createStateChangeListener (xhr, callback) {
|
|||
|
return function () {
|
|||
|
if (xhr.readyState === 4 && xhr.status === 200) {
|
|||
|
try {
|
|||
|
callback(null, JSON.parse(xhr.responseText))
|
|||
|
} catch (err) {
|
|||
|
callback(err, null)
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function getXHR () {
|
|||
|
return window.XMLHttpRequest ? new window.XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP')
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$OptionsValidator_3 = function OptionsValidator (params) {
|
|||
|
if (!validateParams(params)) {
|
|||
|
throw new Error('-- OptionsValidator: required options missing')
|
|||
|
}
|
|||
|
|
|||
|
if (!(this instanceof OptionsValidator)) {
|
|||
|
return new OptionsValidator(params)
|
|||
|
}
|
|||
|
|
|||
|
const requiredOptions = params.required
|
|||
|
|
|||
|
this.getRequiredOptions = function () {
|
|||
|
return requiredOptions
|
|||
|
}
|
|||
|
|
|||
|
this.validate = function (parameters) {
|
|||
|
const errors = []
|
|||
|
requiredOptions.forEach(function (requiredOptionName) {
|
|||
|
if (typeof parameters[requiredOptionName] === 'undefined') {
|
|||
|
errors.push(requiredOptionName)
|
|||
|
}
|
|||
|
})
|
|||
|
return errors
|
|||
|
}
|
|||
|
|
|||
|
function validateParams (params) {
|
|||
|
if (!params) {
|
|||
|
return false
|
|||
|
}
|
|||
|
return typeof params.required !== 'undefined' && params.required instanceof Array
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
'use strict'
|
|||
|
|
|||
|
var _$utils_9 = {
|
|||
|
merge: merge,
|
|||
|
isJSON: isJSON
|
|||
|
}
|
|||
|
|
|||
|
function merge (defaultParams, mergeParams) {
|
|||
|
const mergedOptions = {}
|
|||
|
for (const option in defaultParams) {
|
|||
|
mergedOptions[option] = defaultParams[option]
|
|||
|
if (typeof mergeParams[option] !== 'undefined') {
|
|||
|
mergedOptions[option] = mergeParams[option]
|
|||
|
}
|
|||
|
}
|
|||
|
return mergedOptions
|
|||
|
}
|
|||
|
|
|||
|
function isJSON (json) {
|
|||
|
try {
|
|||
|
if (json instanceof Object && JSON.parse(JSON.stringify(json))) {
|
|||
|
return true
|
|||
|
}
|
|||
|
return false
|
|||
|
} catch (err) {
|
|||
|
return false
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
var _$src_8 = {};
|
|||
|
(function (window) {
|
|||
|
'use strict'
|
|||
|
|
|||
|
let options = {
|
|||
|
searchInput: null,
|
|||
|
resultsContainer: null,
|
|||
|
json: [],
|
|||
|
success: Function.prototype,
|
|||
|
searchResultTemplate: '<li><a href="{url}" title="{desc}">{title}</a></li>',
|
|||
|
templateMiddleware: Function.prototype,
|
|||
|
sortMiddleware: function () {
|
|||
|
return 0
|
|||
|
},
|
|||
|
noResultsText: 'No results found',
|
|||
|
limit: 10,
|
|||
|
fuzzy: false,
|
|||
|
debounceTime: null,
|
|||
|
exclude: []
|
|||
|
}
|
|||
|
|
|||
|
let debounceTimerHandle
|
|||
|
const debounce = function (func, delayMillis) {
|
|||
|
if (delayMillis) {
|
|||
|
clearTimeout(debounceTimerHandle)
|
|||
|
debounceTimerHandle = setTimeout(func, delayMillis)
|
|||
|
} else {
|
|||
|
func.call()
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
const requiredOptions = ['searchInput', 'resultsContainer', 'json']
|
|||
|
|
|||
|
/* removed: const _$Templater_7 = require('./Templater') */;
|
|||
|
/* removed: const _$Repository_4 = require('./Repository') */;
|
|||
|
/* removed: const _$JSONLoader_2 = require('./JSONLoader') */;
|
|||
|
const optionsValidator = _$OptionsValidator_3({
|
|||
|
required: requiredOptions
|
|||
|
})
|
|||
|
/* removed: const _$utils_9 = require('./utils') */;
|
|||
|
|
|||
|
window.SimpleJekyllSearch = function (_options) {
|
|||
|
const errors = optionsValidator.validate(_options)
|
|||
|
if (errors.length > 0) {
|
|||
|
throwError('You must specify the following required options: ' + requiredOptions)
|
|||
|
}
|
|||
|
|
|||
|
options = _$utils_9.merge(options, _options)
|
|||
|
|
|||
|
_$Templater_7.setOptions({
|
|||
|
template: options.searchResultTemplate,
|
|||
|
middleware: options.templateMiddleware
|
|||
|
})
|
|||
|
|
|||
|
_$Repository_4.setOptions({
|
|||
|
fuzzy: options.fuzzy,
|
|||
|
limit: options.limit,
|
|||
|
sort: options.sortMiddleware,
|
|||
|
exclude: options.exclude
|
|||
|
})
|
|||
|
|
|||
|
if (_$utils_9.isJSON(options.json)) {
|
|||
|
initWithJSON(options.json)
|
|||
|
} else {
|
|||
|
initWithURL(options.json)
|
|||
|
}
|
|||
|
|
|||
|
const rv = {
|
|||
|
search: search
|
|||
|
}
|
|||
|
|
|||
|
typeof options.success === 'function' && options.success.call(rv)
|
|||
|
return rv
|
|||
|
}
|
|||
|
|
|||
|
function initWithJSON (json) {
|
|||
|
_$Repository_4.put(json)
|
|||
|
registerInput()
|
|||
|
}
|
|||
|
|
|||
|
function initWithURL (url) {
|
|||
|
_$JSONLoader_2.load(url, function (err, json) {
|
|||
|
if (err) {
|
|||
|
throwError('failed to get JSON (' + url + ')')
|
|||
|
}
|
|||
|
initWithJSON(json)
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
function emptyResultsContainer () {
|
|||
|
options.resultsContainer.innerHTML = ''
|
|||
|
}
|
|||
|
|
|||
|
function appendToResultsContainer (text) {
|
|||
|
options.resultsContainer.innerHTML += text
|
|||
|
}
|
|||
|
|
|||
|
function registerInput () {
|
|||
|
options.searchInput.addEventListener('input', function (e) {
|
|||
|
if (isWhitelistedKey(e.which)) {
|
|||
|
emptyResultsContainer()
|
|||
|
debounce(function () { search(e.target.value) }, options.debounceTime)
|
|||
|
}
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
function search (query) {
|
|||
|
if (isValidQuery(query)) {
|
|||
|
emptyResultsContainer()
|
|||
|
render(_$Repository_4.search(query), query)
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function render (results, query) {
|
|||
|
const len = results.length
|
|||
|
if (len === 0) {
|
|||
|
return appendToResultsContainer(options.noResultsText)
|
|||
|
}
|
|||
|
for (let i = 0; i < len; i++) {
|
|||
|
results[i].query = query
|
|||
|
appendToResultsContainer(_$Templater_7.compile(results[i]))
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function isValidQuery (query) {
|
|||
|
return query && query.length > 0
|
|||
|
}
|
|||
|
|
|||
|
function isWhitelistedKey (key) {
|
|||
|
return [13, 16, 20, 37, 38, 39, 40, 91].indexOf(key) === -1
|
|||
|
}
|
|||
|
|
|||
|
function throwError (message) {
|
|||
|
throw new Error('SimpleJekyllSearch --- ' + message)
|
|||
|
}
|
|||
|
})(window)
|
|||
|
|
|||
|
}());
|
|||
|
</script>
|
|||
|
|
|||
|
<!-- Configuration -->
|
|||
|
<script>
|
|||
|
SimpleJekyllSearch({
|
|||
|
searchInput: document.getElementById('search-input'),
|
|||
|
resultsContainer: document.getElementById('results-container'),
|
|||
|
noResultsText: '<p>Aucun résultat!</p>',
|
|||
|
json: '/search.json',
|
|||
|
searchResultTemplate: '<li><a href="{url}">{date} {title}</a> (Création {create})</li>'
|
|||
|
})
|
|||
|
</script>
|
|||
|
|
|||
|
</div></div>
|
|||
|
|
|||
|
|
|||
|
<script>(function() {
|
|||
|
var SOURCES = window.TEXT_VARIABLES.sources;
|
|||
|
window.Lazyload.js(SOURCES.jquery, function() {
|
|||
|
function scrollToAnchor(anchor, duration, callback) {
|
|||
|
var $root = this;
|
|||
|
$root.animate({ scrollTop: $(anchor).position().top }, duration, function() {
|
|||
|
window.history.replaceState(null, '', window.location.href.split('#')[0] + anchor);
|
|||
|
callback && callback();
|
|||
|
});
|
|||
|
}
|
|||
|
$.fn.scrollToAnchor = scrollToAnchor;
|
|||
|
});
|
|||
|
})();
|
|||
|
(function() {
|
|||
|
var SOURCES = window.TEXT_VARIABLES.sources;
|
|||
|
window.Lazyload.js(SOURCES.jquery, function() {
|
|||
|
function affix(options) {
|
|||
|
var $root = this, $window = $(window), $scrollTarget, $scroll,
|
|||
|
offsetBottom = 0, scrollTarget = window, scroll = window.document, disabled = false, isOverallScroller = true,
|
|||
|
rootTop, rootLeft, rootHeight, scrollBottom, rootBottomTop,
|
|||
|
hasInit = false, curState;
|
|||
|
|
|||
|
function setOptions(options) {
|
|||
|
var _options = options || {};
|
|||
|
_options.offsetBottom && (offsetBottom = _options.offsetBottom);
|
|||
|
_options.scrollTarget && (scrollTarget = _options.scrollTarget);
|
|||
|
_options.scroll && (scroll = _options.scroll);
|
|||
|
_options.disabled !== undefined && (disabled = _options.disabled);
|
|||
|
$scrollTarget = $(scrollTarget);
|
|||
|
isOverallScroller = window.isOverallScroller($scrollTarget[0]);
|
|||
|
$scroll = $(scroll);
|
|||
|
}
|
|||
|
function preCalc() {
|
|||
|
top();
|
|||
|
rootHeight = $root.outerHeight();
|
|||
|
rootTop = $root.offset().top + (isOverallScroller ? 0 : $scrollTarget.scrollTop());
|
|||
|
rootLeft = $root.offset().left;
|
|||
|
}
|
|||
|
function calc(needPreCalc) {
|
|||
|
needPreCalc && preCalc();
|
|||
|
scrollBottom = $scroll.outerHeight() - offsetBottom - rootHeight;
|
|||
|
rootBottomTop = scrollBottom - rootTop;
|
|||
|
}
|
|||
|
function top() {
|
|||
|
if (curState !== 'top') {
|
|||
|
$root.removeClass('fixed').css({
|
|||
|
left: 0,
|
|||
|
top: 0
|
|||
|
});
|
|||
|
curState = 'top';
|
|||
|
}
|
|||
|
}
|
|||
|
function fixed() {
|
|||
|
if (curState !== 'fixed') {
|
|||
|
$root.addClass('fixed').css({
|
|||
|
left: rootLeft + 'px',
|
|||
|
top: 0
|
|||
|
});
|
|||
|
curState = 'fixed';
|
|||
|
}
|
|||
|
}
|
|||
|
function bottom() {
|
|||
|
if (curState !== 'bottom') {
|
|||
|
$root.removeClass('fixed').css({
|
|||
|
left: 0,
|
|||
|
top: rootBottomTop + 'px'
|
|||
|
});
|
|||
|
curState = 'bottom';
|
|||
|
}
|
|||
|
}
|
|||
|
function setState() {
|
|||
|
var scrollTop = $scrollTarget.scrollTop();
|
|||
|
if (scrollTop >= rootTop && scrollTop <= scrollBottom) {
|
|||
|
fixed();
|
|||
|
} else if (scrollTop < rootTop) {
|
|||
|
top();
|
|||
|
} else {
|
|||
|
bottom();
|
|||
|
}
|
|||
|
}
|
|||
|
function init() {
|
|||
|
if(!hasInit) {
|
|||
|
var interval, timeout;
|
|||
|
calc(true); setState();
|
|||
|
// run calc every 100 millisecond
|
|||
|
interval = setInterval(function() {
|
|||
|
calc();
|
|||
|
}, 100);
|
|||
|
timeout = setTimeout(function() {
|
|||
|
clearInterval(interval);
|
|||
|
}, 45000);
|
|||
|
window.pageLoad.then(function() {
|
|||
|
setTimeout(function() {
|
|||
|
clearInterval(interval);
|
|||
|
clearTimeout(timeout);
|
|||
|
}, 3000);
|
|||
|
});
|
|||
|
$scrollTarget.on('scroll', function() {
|
|||
|
disabled || setState();
|
|||
|
});
|
|||
|
$window.on('resize', function() {
|
|||
|
disabled || (calc(true), setState());
|
|||
|
});
|
|||
|
hasInit = true;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
setOptions(options);
|
|||
|
if (!disabled) {
|
|||
|
init();
|
|||
|
}
|
|||
|
$window.on('resize', window.throttle(function() {
|
|||
|
init();
|
|||
|
}, 200));
|
|||
|
return {
|
|||
|
setOptions: setOptions,
|
|||
|
refresh: function() {
|
|||
|
calc(true, { animation: false }); setState();
|
|||
|
}
|
|||
|
};
|
|||
|
}
|
|||
|
$.fn.affix = affix;
|
|||
|
});
|
|||
|
})();
|
|||
|
(function() {
|
|||
|
var SOURCES = window.TEXT_VARIABLES.sources;
|
|||
|
window.Lazyload.js(SOURCES.jquery, function() {
|
|||
|
function toc(options) {
|
|||
|
var $root = this, $window = $(window), $scrollTarget, $scroller, $tocUl = $('<ul class="toc toc--ellipsis"></ul>'), $tocLi, $headings, $activeLast, $activeCur,
|
|||
|
selectors = 'h1,h2,h3', container = 'body', scrollTarget = window, scroller = 'html, body', disabled = false,
|
|||
|
headingsPos, scrolling = false, hasRendered = false, hasInit = false;
|
|||
|
|
|||
|
function setOptions(options) {
|
|||
|
var _options = options || {};
|
|||
|
_options.selectors && (selectors = _options.selectors);
|
|||
|
_options.container && (container = _options.container);
|
|||
|
_options.scrollTarget && (scrollTarget = _options.scrollTarget);
|
|||
|
_options.scroller && (scroller = _options.scroller);
|
|||
|
_options.disabled !== undefined && (disabled = _options.disabled);
|
|||
|
$headings = $(container).find(selectors).filter('[id]');
|
|||
|
$scrollTarget = $(scrollTarget);
|
|||
|
$scroller = $(scroller);
|
|||
|
}
|
|||
|
function calc() {
|
|||
|
headingsPos = [];
|
|||
|
$headings.each(function() {
|
|||
|
headingsPos.push(Math.floor($(this).position().top));
|
|||
|
});
|
|||
|
}
|
|||
|
function setState(element, disabled) {
|
|||
|
var scrollTop = $scrollTarget.scrollTop(), i;
|
|||
|
if (disabled || !headingsPos || headingsPos.length < 1) { return; }
|
|||
|
if (element) {
|
|||
|
$activeCur = element;
|
|||
|
} else {
|
|||
|
for (i = 0; i < headingsPos.length; i++) {
|
|||
|
if (scrollTop >= headingsPos[i]) {
|
|||
|
$activeCur = $tocLi.eq(i);
|
|||
|
} else {
|
|||
|
$activeCur || ($activeCur = $tocLi.eq(i));
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
$activeLast && $activeLast.removeClass('active');
|
|||
|
($activeLast = $activeCur).addClass('active');
|
|||
|
}
|
|||
|
function render() {
|
|||
|
if(!hasRendered) {
|
|||
|
$root.append($tocUl);
|
|||
|
$headings.each(function() {
|
|||
|
var $this = $(this);
|
|||
|
$tocUl.append($('<li></li>').addClass('toc-' + $this.prop('tagName').toLowerCase())
|
|||
|
.append($('<a></a>').text($this.text()).attr('href', '#' + $this.prop('id'))));
|
|||
|
});
|
|||
|
$tocLi = $tocUl.children('li');
|
|||
|
$tocUl.on('click', 'a', function(e) {
|
|||
|
e.preventDefault();
|
|||
|
var $this = $(this);
|
|||
|
scrolling = true;
|
|||
|
setState($this.parent());
|
|||
|
$scroller.scrollToAnchor($this.attr('href'), 400, function() {
|
|||
|
scrolling = false;
|
|||
|
});
|
|||
|
});
|
|||
|
}
|
|||
|
hasRendered = true;
|
|||
|
}
|
|||
|
function init() {
|
|||
|
var interval, timeout;
|
|||
|
if(!hasInit) {
|
|||
|
render(); calc(); setState(null, scrolling);
|
|||
|
// run calc every 100 millisecond
|
|||
|
interval = setInterval(function() {
|
|||
|
calc();
|
|||
|
}, 100);
|
|||
|
timeout = setTimeout(function() {
|
|||
|
clearInterval(interval);
|
|||
|
}, 45000);
|
|||
|
window.pageLoad.then(function() {
|
|||
|
setTimeout(function() {
|
|||
|
clearInterval(interval);
|
|||
|
clearTimeout(timeout);
|
|||
|
}, 3000);
|
|||
|
});
|
|||
|
$scrollTarget.on('scroll', function() {
|
|||
|
disabled || setState(null, scrolling);
|
|||
|
});
|
|||
|
$window.on('resize', window.throttle(function() {
|
|||
|
if (!disabled) {
|
|||
|
render(); calc(); setState(null, scrolling);
|
|||
|
}
|
|||
|
}, 100));
|
|||
|
}
|
|||
|
hasInit = true;
|
|||
|
}
|
|||
|
|
|||
|
setOptions(options);
|
|||
|
if (!disabled) {
|
|||
|
init();
|
|||
|
}
|
|||
|
$window.on('resize', window.throttle(function() {
|
|||
|
init();
|
|||
|
}, 200));
|
|||
|
return {
|
|||
|
setOptions: setOptions
|
|||
|
};
|
|||
|
}
|
|||
|
$.fn.toc = toc;
|
|||
|
});
|
|||
|
})();
|
|||
|
/*(function () {
|
|||
|
|
|||
|
})();*/
|
|||
|
</script><!---->
|
|||
|
|
|||
|
</div>
|
|||
|
<script>(function () {
|
|||
|
var $root = document.getElementsByClassName('root')[0];
|
|||
|
if (window.hasEvent('touchstart')) {
|
|||
|
$root.dataset.isTouch = true;
|
|||
|
document.addEventListener('touchstart', function(){}, false);
|
|||
|
}
|
|||
|
})();
|
|||
|
</script>
|
|||
|
</body>
|
|||
|
</html>
|
|||
|
|