<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://wiki.erg.be/mw/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Copyright</id>
	<title>erg - Contributions de l’utilisateur [fr]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.erg.be/mw/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Copyright"/>
	<link rel="alternate" type="text/html" href="https://wiki.erg.be/w/Sp%C3%A9cial:Contributions/Copyright"/>
	<updated>2026-05-21T01:33:57Z</updated>
	<subtitle>Contributions de l’utilisateur</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23545</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23545"/>
		<updated>2025-02-02T19:53:45Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;console.log(&amp;quot;it's tiiiiiime&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
// Changer titre - ne MARCHE PAS pcq complexe iframe-svg&lt;br /&gt;
document.title = document.querySelector(&amp;quot;h1&amp;quot;).innerHTML;&lt;br /&gt;
console.log(document.querySelector(&amp;quot;h1&amp;quot;).innerHTML);&lt;br /&gt;
&lt;br /&gt;
// Zoomout la carte une fois au moins pcq trop grande&lt;br /&gt;
map.zoom_out();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var snowflakes = [&amp;quot;❄&amp;quot;, &amp;quot;❅&amp;quot;, &amp;quot;flocon2neige&amp;quot;];&lt;br /&gt;
//var snowflakes = [&amp;quot;E&amp;quot;, &amp;quot;R&amp;quot;, &amp;quot;G&amp;quot;];&lt;br /&gt;
&lt;br /&gt;
      function createSnowflake() {&lt;br /&gt;
        var snowflake = document.createElement('div');&lt;br /&gt;
        snowflake.className = 'snowflake';&lt;br /&gt;
        snowflake.innerHTML = snowflakes[Math.floor(Math.random() * snowflakes.length)];&lt;br /&gt;
        snowflake.style.left = Math.floor(Math.random() * (document.documentElement.clientWidth || document.body.clientWidth)) + 'px';&lt;br /&gt;
        snowflake.style.top = '0';&lt;br /&gt;
&lt;br /&gt;
        document.body.appendChild(snowflake);&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
          document.body.removeChild(snowflake);&lt;br /&gt;
        }, 5000);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function animateSnowflakes() {&lt;br /&gt;
        var snowflakes = document.getElementsByClassName('snowflake');&lt;br /&gt;
        var iterationCount = 0;&lt;br /&gt;
&lt;br /&gt;
        function animate() {&lt;br /&gt;
          for (var i = 0; i &amp;lt; snowflakes.length; i++) {&lt;br /&gt;
            var snowflake = snowflakes[i];&lt;br /&gt;
            snowflake.style.top = '0';&lt;br /&gt;
            void snowflake.offsetWidth; // Trigger reflow&lt;br /&gt;
            snowflake.style.top = '100vh'; // Set the end position&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          iterationCount++;&lt;br /&gt;
          if (iterationCount &amp;gt;= 20) {&lt;br /&gt;
            clearInterval(animationInterval);&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var animationInterval = setInterval(animate, 500); // Reset the animation every 5000 milliseconds&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function generateSnowflakes() {&lt;br /&gt;
        for (var i = 0; i &amp;lt; 20; i++) { // Create initial snowflakes&lt;br /&gt;
          createSnowflake();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        setInterval(createSnowflake, 50); // Create a new snowflake every 500 milliseconds&lt;br /&gt;
        animateSnowflakes();&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      generateSnowflakes();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function findAndReplaceInH1() {&lt;br /&gt;
        var h1Elements = document.getElementsByTagName('h1');&lt;br /&gt;
&lt;br /&gt;
        for (var i = 0; i &amp;lt; h1Elements.length; i++) {&lt;br /&gt;
            var h1Element = h1Elements[i];&lt;br /&gt;
&lt;br /&gt;
            if (h1Element.hasChildNodes()) {&lt;br /&gt;
                findAndReplace(h1Element);&lt;br /&gt;
            } else {&lt;br /&gt;
                // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
                h1Element.innerText = h1Element.innerText.replace(/erg/g, 'eeeergggg');&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Function to perform find and replace in a given element&lt;br /&gt;
    function findAndReplace(element) {&lt;br /&gt;
        if (element.hasChildNodes()) {&lt;br /&gt;
            element.childNodes.forEach(findAndReplace);&lt;br /&gt;
        } else if (element.nodeType === Node.TEXT_NODE) {&lt;br /&gt;
            // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
            element.nodeValue = element.nodeValue.replace(/eeerrrggg 🤮/g, 'eeerrrggg 🤮');&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Call the function to perform find and replace in h1 elements&lt;br /&gt;
    findAndReplaceInH1();&lt;br /&gt;
*/&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.css&amp;diff=23544</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.css&amp;diff=23544"/>
		<updated>2025-02-02T17:39:34Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* C O M M O N . c s s&lt;br /&gt;
 *&lt;br /&gt;
 * # dark mode&lt;br /&gt;
 * # templates&lt;br /&gt;
 * ## badges&lt;br /&gt;
&lt;br /&gt;
/* une media query qui permet de prendre en compte la préférence de couleur du navigateur. &lt;br /&gt;
Tout ce qui est en dehors de cette @media est pour le thème blanc et dans le @media (prefers-color-scheme: dark)  */&lt;br /&gt;
&lt;br /&gt;
/* Liste des éléments à inverser&lt;br /&gt;
* div.thumbcaption /* image &amp;quot;thumb&amp;quot; &lt;br /&gt;
* button.button.search /* lien externes &lt;br /&gt;
* a.external.free /* lien externes &lt;br /&gt;
* table.wikitable /* Table wiki ex : En construction Pika&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
@media (prefers-color-scheme: dark) {&lt;br /&gt;
&lt;br /&gt;
.page-Bienvenue_à_l’erg h1 {&lt;br /&gt;
display:inline=block;&lt;br /&gt;
color:red !important;&lt;br /&gt;
}&lt;br /&gt;
code {&lt;br /&gt;
    background-color: #111;&lt;br /&gt;
    border-radius: 4px;&lt;br /&gt;
    border: 2px solid #666;&lt;br /&gt;
    color: #999;&lt;br /&gt;
    font-size: .9em;  &lt;br /&gt;
}&lt;br /&gt;
.title {&lt;br /&gt;
    color: #9557b5;&lt;br /&gt;
}&lt;br /&gt;
.mw-headline {&lt;br /&gt;
    color: #3c856b;&lt;br /&gt;
}&lt;br /&gt;
body.action-view #page-content a {&lt;br /&gt;
color: white;&lt;br /&gt;
}&lt;br /&gt;
  html {&lt;br /&gt;
    background-color: #222;&lt;br /&gt;
    background-color: #222;&lt;br /&gt;
    color: white;&lt;br /&gt;
  }      &lt;br /&gt;
  body{.&lt;br /&gt;
    background-color:inherit;&lt;br /&gt;
    color:inherit;&lt;br /&gt;
    background: #222;&lt;br /&gt;
  }&lt;br /&gt;
  } &lt;br /&gt;
&lt;br /&gt;
*/&lt;br /&gt;
  pre{&lt;br /&gt;
&lt;br /&gt;
    border-radius: 10px;&lt;br /&gt;
  }&lt;br /&gt;
  .rssicon {&lt;br /&gt;
    display: inline-block;&lt;br /&gt;
    width: 32px;&lt;br /&gt;
    height: 32px;&lt;br /&gt;
    background-image: url(/mw/resources/assets/Feed-icon.png);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  .hidden {&lt;br /&gt;
    display: none;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  table.infobox {&lt;br /&gt;
    width: 30em;&lt;br /&gt;
    font-size: 90%;&lt;br /&gt;
    border: 1px solid #aaaaaa;&lt;br /&gt;
    background-color: #f9f9f9;&lt;br /&gt;
    color: black;&lt;br /&gt;
    margin-bottom: 0.5em;&lt;br /&gt;
    margin-left: 1em;&lt;br /&gt;
    padding: 0.2em;&lt;br /&gt;
    float: right;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    text-align:left;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  table.infobox th.head {&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    background-color:#ccccff;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  /* Flexgal */&lt;br /&gt;
  div.flexgal {&lt;br /&gt;
    box-sizing: border-box;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  div.flexgal div.item {&lt;br /&gt;
    display: flexbox;&lt;br /&gt;
  }&lt;br /&gt;
  div.flexgal div.item p {&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0; /* padding + margin seem to conflict with the grid layout */&lt;br /&gt;
  }&lt;br /&gt;
  a img {&lt;br /&gt;
    border: none;&lt;br /&gt;
    vertical-align: top; /* magically this cancels the containing anchor's bottom border */&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  div.pubdate {&lt;br /&gt;
    clear: both;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .Media {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: flex-start;&lt;br /&gt;
    margin-bottom: 1em;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .Media-figure {&lt;br /&gt;
    margin-right: 1em;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .Media-body {&lt;br /&gt;
    flex: 1;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  /* simplify the footer links */&lt;br /&gt;
  ul#poweredby, li#footer-disclaimer { display: none; }&lt;br /&gt;
&lt;br /&gt;
  .snowflake {&lt;br /&gt;
    position:absolute;&lt;br /&gt;
    color:blue;&lt;br /&gt;
    transition: top 5s linear;&lt;br /&gt;
    -webkit-text-stroke-width: 1px;&lt;br /&gt;
    -webkit-text-stroke-color: rgba(0,0,0,0.01);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  #content {&lt;br /&gt;
    max-width: 80ch;&lt;br /&gt;
    margin: auto;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  /* -- External Image Template -- */&lt;br /&gt;
  .externalimage-holder {&lt;br /&gt;
    display:inline-block;&lt;br /&gt;
    position: relative;&lt;br /&gt;
  }&lt;br /&gt;
  .externalimage-holder img {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    height: auto;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  /* -- Captcha Page Edition -- */&lt;br /&gt;
  label[for=wpCaptchaWord] {&lt;br /&gt;
    background-color:#FFCCCB;&lt;br /&gt;
    color:white;&lt;br /&gt;
    border:2px solid white;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* -- Badges -- */&lt;br /&gt;
.badge {&lt;br /&gt;
margin:10px;&lt;br /&gt;
display:inline-block;&lt;br /&gt;
box-sizing:border-box;&lt;br /&gt;
padding:0;&lt;br /&gt;
margin:0;&lt;br /&gt;
&lt;br /&gt;
border:2px solid red;&lt;br /&gt;
width:300px;&lt;br /&gt;
height:75px;&lt;br /&gt;
&lt;br /&gt;
overflow:hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge p {&lt;br /&gt;
margin:0;&lt;br /&gt;
text-align:center;&lt;br /&gt;
&lt;br /&gt;
  font-size: 8pt;&lt;br /&gt;
  line-height: 9pt;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge .b-icon {&lt;br /&gt;
padding:5px;&lt;br /&gt;
border-right:1px solid black;&lt;br /&gt;
position:relative;&lt;br /&gt;
display:inline-block;&lt;br /&gt;
width:25%;&lt;br /&gt;
height:100%;&lt;br /&gt;
&lt;br /&gt;
vertical-align:top;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge .b-infos {&lt;br /&gt;
position:relative;&lt;br /&gt;
display:inline-block;&lt;br /&gt;
width:70%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge h6 {&lt;br /&gt;
text-align:center;&lt;br /&gt;
margin:0;&lt;br /&gt;
padding:0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content li:not(#toc ul li) {list-style: none; margin-bottom: 10px; position: relative; }&lt;br /&gt;
#content li:not(#toc ul li)::before {content: &amp;quot;\22C6 \00a0&amp;quot;; }&lt;br /&gt;
#toc {z-index: 100;}&lt;br /&gt;
&lt;br /&gt;
.hide {&lt;br /&gt;
font-size:1pt;&lt;br /&gt;
text-decoration:none;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.css&amp;diff=23543</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.css&amp;diff=23543"/>
		<updated>2025-02-02T17:38:01Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* C O M M O N . c s s&lt;br /&gt;
 *&lt;br /&gt;
 * # dark mode&lt;br /&gt;
 * # templates&lt;br /&gt;
 * ## badges&lt;br /&gt;
&lt;br /&gt;
/* une media query qui permet de prendre en compte la préférence de couleur du navigateur. &lt;br /&gt;
Tout ce qui est en dehors de cette @media est pour le thème blanc et dans le @media (prefers-color-scheme: dark)  */&lt;br /&gt;
&lt;br /&gt;
/* Liste des éléments à inverser&lt;br /&gt;
* div.thumbcaption /* image &amp;quot;thumb&amp;quot; &lt;br /&gt;
* button.button.search /* lien externes &lt;br /&gt;
* a.external.free /* lien externes &lt;br /&gt;
* table.wikitable /* Table wiki ex : En construction Pika&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
@media (prefers-color-scheme: dark) {&lt;br /&gt;
&lt;br /&gt;
.page-Bienvenue_à_l’erg h1 {&lt;br /&gt;
display:inline=block;&lt;br /&gt;
color:red !important;&lt;br /&gt;
}&lt;br /&gt;
code {&lt;br /&gt;
    background-color: #111;&lt;br /&gt;
    border-radius: 4px;&lt;br /&gt;
    border: 2px solid #666;&lt;br /&gt;
    color: #999;&lt;br /&gt;
    font-size: .9em;  &lt;br /&gt;
}&lt;br /&gt;
.title {&lt;br /&gt;
    color: #9557b5;&lt;br /&gt;
}&lt;br /&gt;
.mw-headline {&lt;br /&gt;
    color: #3c856b;&lt;br /&gt;
}&lt;br /&gt;
body.action-view #page-content a {&lt;br /&gt;
color: white;&lt;br /&gt;
}&lt;br /&gt;
  html {&lt;br /&gt;
    background-color: #222;&lt;br /&gt;
    background-color: #222;&lt;br /&gt;
    color: white;&lt;br /&gt;
  }      &lt;br /&gt;
  body{.&lt;br /&gt;
    background-color:inherit;&lt;br /&gt;
    color:inherit;&lt;br /&gt;
    background: #222;&lt;br /&gt;
  }&lt;br /&gt;
  } &lt;br /&gt;
&lt;br /&gt;
*/&lt;br /&gt;
  pre{&lt;br /&gt;
&lt;br /&gt;
    border-radius: 10px;&lt;br /&gt;
  }&lt;br /&gt;
  .rssicon {&lt;br /&gt;
    display: inline-block;&lt;br /&gt;
    width: 32px;&lt;br /&gt;
    height: 32px;&lt;br /&gt;
    background-image: url(/mw/resources/assets/Feed-icon.png);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  .hidden {&lt;br /&gt;
    display: none;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  table.infobox {&lt;br /&gt;
    width: 30em;&lt;br /&gt;
    font-size: 90%;&lt;br /&gt;
    border: 1px solid #aaaaaa;&lt;br /&gt;
    background-color: #f9f9f9;&lt;br /&gt;
    color: black;&lt;br /&gt;
    margin-bottom: 0.5em;&lt;br /&gt;
    margin-left: 1em;&lt;br /&gt;
    padding: 0.2em;&lt;br /&gt;
    float: right;&lt;br /&gt;
    clear: right;&lt;br /&gt;
    text-align:left;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  table.infobox th.head {&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    background-color:#ccccff;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  /* Flexgal */&lt;br /&gt;
  div.flexgal {&lt;br /&gt;
    box-sizing: border-box;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  div.flexgal div.item {&lt;br /&gt;
    display: flexbox;&lt;br /&gt;
  }&lt;br /&gt;
  div.flexgal div.item p {&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0; /* padding + margin seem to conflict with the grid layout */&lt;br /&gt;
  }&lt;br /&gt;
  a img {&lt;br /&gt;
    border: none;&lt;br /&gt;
    vertical-align: top; /* magically this cancels the containing anchor's bottom border */&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  div.pubdate {&lt;br /&gt;
    clear: both;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .Media {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    align-items: flex-start;&lt;br /&gt;
    margin-bottom: 1em;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .Media-figure {&lt;br /&gt;
    margin-right: 1em;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .Media-body {&lt;br /&gt;
    flex: 1;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  /* simplify the footer links */&lt;br /&gt;
  ul#poweredby, li#footer-disclaimer { display: none; }&lt;br /&gt;
&lt;br /&gt;
  .snowflake {&lt;br /&gt;
    position:absolute;&lt;br /&gt;
    color:blue;&lt;br /&gt;
    transition: top 5s linear;&lt;br /&gt;
    -webkit-text-stroke-width: 1px;&lt;br /&gt;
    -webkit-text-stroke-color: rgba(0,0,0,0.01);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  #content {&lt;br /&gt;
    max-width: 80ch;&lt;br /&gt;
    margin: auto;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  /* -- External Image Template -- */&lt;br /&gt;
  .externalimage-holder {&lt;br /&gt;
    display:inline-block;&lt;br /&gt;
    position: relative;&lt;br /&gt;
  }&lt;br /&gt;
  .externalimage-holder img {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    height: auto;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  /* -- Captcha Page Edition -- */&lt;br /&gt;
  label[for=wpCaptchaWord] {&lt;br /&gt;
    background-color:#FFCCCB;&lt;br /&gt;
    color:white;&lt;br /&gt;
    border:2px solid white;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
/* -- Badges -- */&lt;br /&gt;
.badge {&lt;br /&gt;
margin:10px;&lt;br /&gt;
display:inline-block;&lt;br /&gt;
box-sizing:border-box;&lt;br /&gt;
padding:0;&lt;br /&gt;
margin:0;&lt;br /&gt;
&lt;br /&gt;
border:2px solid red;&lt;br /&gt;
width:300px;&lt;br /&gt;
height:75px;&lt;br /&gt;
&lt;br /&gt;
overflow:hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge p {&lt;br /&gt;
margin:0;&lt;br /&gt;
text-align:center;&lt;br /&gt;
&lt;br /&gt;
  font-size: 8pt;&lt;br /&gt;
  line-height: 9pt;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge .b-icon {&lt;br /&gt;
padding:5px;&lt;br /&gt;
border-right:1px solid black;&lt;br /&gt;
position:relative;&lt;br /&gt;
display:inline-block;&lt;br /&gt;
width:25%;&lt;br /&gt;
height:100%;&lt;br /&gt;
&lt;br /&gt;
vertical-align:top;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge .b-infos {&lt;br /&gt;
position:relative;&lt;br /&gt;
display:inline-block;&lt;br /&gt;
width:70%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.badge h6 {&lt;br /&gt;
text-align:center;&lt;br /&gt;
margin:0;&lt;br /&gt;
padding:0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content li:not(#toc ul li) {list-style: none; margin-bottom: 10px; position: relative; }&lt;br /&gt;
#content li:not(#toc ul li)::before {content: &amp;quot;\22C6 \00a0&amp;quot;; }&lt;br /&gt;
#toc {z-index: 100;}&lt;br /&gt;
&lt;br /&gt;
.hide {&lt;br /&gt;
font-size:1pt;&lt;br /&gt;
text-decoration:none;&lt;br /&gt;
opacity:0;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23542</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23542"/>
		<updated>2025-02-02T17:37:18Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;console.log(&amp;quot;it's tiiiiiime&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
// Changer titre - ne MARCHE PAS pcq complexe iframe-svg&lt;br /&gt;
document.title = document.querySelector(&amp;quot;h1&amp;quot;).innerHTML;&lt;br /&gt;
console.log(document.querySelector(&amp;quot;h1&amp;quot;).innerHTML);&lt;br /&gt;
&lt;br /&gt;
// Zoomout la carte une fois au moins pcq trop grande&lt;br /&gt;
map.zoom_out();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var snowflakes = [&amp;quot;❄&amp;quot;, &amp;quot;❅&amp;quot;, &amp;quot;flocon2neige&amp;quot;];&lt;br /&gt;
//var snowflakes = [&amp;quot;E&amp;quot;, &amp;quot;R&amp;quot;, &amp;quot;G&amp;quot;];&lt;br /&gt;
&lt;br /&gt;
      function createSnowflake() {&lt;br /&gt;
        var snowflake = document.createElement('div');&lt;br /&gt;
        snowflake.className = 'snowflake';&lt;br /&gt;
        snowflake.innerHTML = snowflakes[Math.floor(Math.random() * snowflakes.length)];&lt;br /&gt;
        snowflake.style.left = Math.floor(Math.random() * (document.documentElement.clientWidth || document.body.clientWidth)) + 'px';&lt;br /&gt;
        snowflake.style.top = '0';&lt;br /&gt;
&lt;br /&gt;
        document.body.appendChild(snowflake);&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
          document.body.removeChild(snowflake);&lt;br /&gt;
        }, 5000);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function animateSnowflakes() {&lt;br /&gt;
        var snowflakes = document.getElementsByClassName('snowflake');&lt;br /&gt;
        var iterationCount = 0;&lt;br /&gt;
&lt;br /&gt;
        function animate() {&lt;br /&gt;
          for (var i = 0; i &amp;lt; snowflakes.length; i++) {&lt;br /&gt;
            var snowflake = snowflakes[i];&lt;br /&gt;
            snowflake.style.top = '0';&lt;br /&gt;
            void snowflake.offsetWidth; // Trigger reflow&lt;br /&gt;
            snowflake.style.top = '100vh'; // Set the end position&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          iterationCount++;&lt;br /&gt;
          if (iterationCount &amp;gt;= 20) {&lt;br /&gt;
            clearInterval(animationInterval);&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var animationInterval = setInterval(animate, 500); // Reset the animation every 5000 milliseconds&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function generateSnowflakes() {&lt;br /&gt;
        for (var i = 0; i &amp;lt; 20; i++) { // Create initial snowflakes&lt;br /&gt;
          createSnowflake();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        setInterval(createSnowflake, 50); // Create a new snowflake every 500 milliseconds&lt;br /&gt;
        animateSnowflakes();&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      generateSnowflakes();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function findAndReplaceInH1() {&lt;br /&gt;
        var h1Elements = document.getElementsByTagName('h1');&lt;br /&gt;
&lt;br /&gt;
        for (var i = 0; i &amp;lt; h1Elements.length; i++) {&lt;br /&gt;
            var h1Element = h1Elements[i];&lt;br /&gt;
&lt;br /&gt;
            if (h1Element.hasChildNodes()) {&lt;br /&gt;
                findAndReplace(h1Element);&lt;br /&gt;
            } else {&lt;br /&gt;
                // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
                h1Element.innerText = h1Element.innerText.replace(/erg/g, 'eeeergggg');&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Function to perform find and replace in a given element&lt;br /&gt;
    function findAndReplace(element) {&lt;br /&gt;
        if (element.hasChildNodes()) {&lt;br /&gt;
            element.childNodes.forEach(findAndReplace);&lt;br /&gt;
        } else if (element.nodeType === Node.TEXT_NODE) {&lt;br /&gt;
            // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
            element.nodeValue = element.nodeValue.replace(/eeerrrggg 🤮/g, 'eeerrrggg 🤮');&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Call the function to perform find and replace in h1 elements&lt;br /&gt;
    findAndReplaceInH1();&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
$(document).ready(function(){&lt;br /&gt;
  $(&amp;quot;#footer&amp;quot;).append(&amp;quot;&amp;lt;a class=\&amp;quot;hide\&amp;quot; href=\&amp;quot;https://mamot.fr/@copy\&amp;quot; rel=\&amp;quot;me\&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;quot;);&lt;br /&gt;
})&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23541</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23541"/>
		<updated>2025-02-02T17:36:21Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;console.log(&amp;quot;it's tiiiiiime&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
// Changer titre - ne MARCHE PAS pcq complexe iframe-svg&lt;br /&gt;
document.title = document.querySelector(&amp;quot;h1&amp;quot;).innerHTML;&lt;br /&gt;
console.log(document.querySelector(&amp;quot;h1&amp;quot;).innerHTML);&lt;br /&gt;
&lt;br /&gt;
// Zoomout la carte une fois au moins pcq trop grande&lt;br /&gt;
map.zoom_out();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var snowflakes = [&amp;quot;❄&amp;quot;, &amp;quot;❅&amp;quot;, &amp;quot;flocon2neige&amp;quot;];&lt;br /&gt;
//var snowflakes = [&amp;quot;E&amp;quot;, &amp;quot;R&amp;quot;, &amp;quot;G&amp;quot;];&lt;br /&gt;
&lt;br /&gt;
      function createSnowflake() {&lt;br /&gt;
        var snowflake = document.createElement('div');&lt;br /&gt;
        snowflake.className = 'snowflake';&lt;br /&gt;
        snowflake.innerHTML = snowflakes[Math.floor(Math.random() * snowflakes.length)];&lt;br /&gt;
        snowflake.style.left = Math.floor(Math.random() * (document.documentElement.clientWidth || document.body.clientWidth)) + 'px';&lt;br /&gt;
        snowflake.style.top = '0';&lt;br /&gt;
&lt;br /&gt;
        document.body.appendChild(snowflake);&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
          document.body.removeChild(snowflake);&lt;br /&gt;
        }, 5000);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function animateSnowflakes() {&lt;br /&gt;
        var snowflakes = document.getElementsByClassName('snowflake');&lt;br /&gt;
        var iterationCount = 0;&lt;br /&gt;
&lt;br /&gt;
        function animate() {&lt;br /&gt;
          for (var i = 0; i &amp;lt; snowflakes.length; i++) {&lt;br /&gt;
            var snowflake = snowflakes[i];&lt;br /&gt;
            snowflake.style.top = '0';&lt;br /&gt;
            void snowflake.offsetWidth; // Trigger reflow&lt;br /&gt;
            snowflake.style.top = '100vh'; // Set the end position&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          iterationCount++;&lt;br /&gt;
          if (iterationCount &amp;gt;= 20) {&lt;br /&gt;
            clearInterval(animationInterval);&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var animationInterval = setInterval(animate, 500); // Reset the animation every 5000 milliseconds&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function generateSnowflakes() {&lt;br /&gt;
        for (var i = 0; i &amp;lt; 20; i++) { // Create initial snowflakes&lt;br /&gt;
          createSnowflake();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        setInterval(createSnowflake, 50); // Create a new snowflake every 500 milliseconds&lt;br /&gt;
        animateSnowflakes();&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      generateSnowflakes();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function findAndReplaceInH1() {&lt;br /&gt;
        var h1Elements = document.getElementsByTagName('h1');&lt;br /&gt;
&lt;br /&gt;
        for (var i = 0; i &amp;lt; h1Elements.length; i++) {&lt;br /&gt;
            var h1Element = h1Elements[i];&lt;br /&gt;
&lt;br /&gt;
            if (h1Element.hasChildNodes()) {&lt;br /&gt;
                findAndReplace(h1Element);&lt;br /&gt;
            } else {&lt;br /&gt;
                // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
                h1Element.innerText = h1Element.innerText.replace(/erg/g, 'eeeergggg');&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Function to perform find and replace in a given element&lt;br /&gt;
    function findAndReplace(element) {&lt;br /&gt;
        if (element.hasChildNodes()) {&lt;br /&gt;
            element.childNodes.forEach(findAndReplace);&lt;br /&gt;
        } else if (element.nodeType === Node.TEXT_NODE) {&lt;br /&gt;
            // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
            element.nodeValue = element.nodeValue.replace(/eeerrrggg 🤮/g, 'eeerrrggg 🤮');&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Call the function to perform find and replace in h1 elements&lt;br /&gt;
    findAndReplaceInH1();&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
$(document).ready(function(){&lt;br /&gt;
  $(&amp;quot;#footer&amp;quot;).append(&amp;quot;&amp;lt;a href=\&amp;quot;https://mamot.fr/@copy\&amp;quot; rel=\&amp;quot;me\&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;quot;);&lt;br /&gt;
})&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright/Common.js&amp;diff=23540</id>
		<title>Utilisateur:Copyright/Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright/Common.js&amp;diff=23540"/>
		<updated>2025-02-02T17:33:56Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;$(document).ready(function(){&lt;br /&gt;
$(&amp;quot;#footer&amp;quot;).append(&amp;quot;x&amp;quot;);&lt;br /&gt;
})&lt;br /&gt;
&lt;br /&gt;
var currentUrl = mw.config.get('wgPageName');&lt;br /&gt;
console.log(currentUrl);&lt;br /&gt;
&lt;br /&gt;
alert(&amp;quot;hello&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
console.log(&amp;quot;Welcome to martin's page !&amp;quot;);&lt;br /&gt;
console.log(&amp;quot; &amp;quot;);&lt;br /&gt;
console.log(&amp;quot; &amp;quot;);&lt;br /&gt;
console.log(&amp;quot;you seem to be a curious one ^^\'&amp;quot;);&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright/Common.js&amp;diff=23539</id>
		<title>Utilisateur:Copyright/Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright/Common.js&amp;diff=23539"/>
		<updated>2025-02-02T17:32:48Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;$(document).ready(function(){&lt;br /&gt;
$(&amp;quot;#footer&amp;quot;).append(&amp;quot;x&amp;quot;);&lt;br /&gt;
})&lt;br /&gt;
&lt;br /&gt;
var currentUrl = mw.config.get('wgPageName');&lt;br /&gt;
console.log(currentUrl);&lt;br /&gt;
&lt;br /&gt;
console.log(&amp;quot;Welcome to martin's page !&amp;quot;);&lt;br /&gt;
console.log(&amp;quot; &amp;quot;);&lt;br /&gt;
console.log(&amp;quot; &amp;quot;);&lt;br /&gt;
console.log(&amp;quot;you seem to be a curious one ^^\'&amp;quot;);&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright/Common.js&amp;diff=23538</id>
		<title>Utilisateur:Copyright/Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright/Common.js&amp;diff=23538"/>
		<updated>2025-02-02T17:31:11Z</updated>

		<summary type="html">&lt;p&gt;Copyright : starting a personnal script&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;$(document).ready(function(){&lt;br /&gt;
$(&amp;quot;#footer&amp;quot;).append(&amp;quot;x&amp;quot;);&lt;br /&gt;
})&lt;br /&gt;
&lt;br /&gt;
var currentUrl = mw.config.get('wgPageName');&lt;br /&gt;
console.log(currentUrl);&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23537</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23537"/>
		<updated>2025-02-02T17:30:52Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;console.log(&amp;quot;it's tiiiiiime&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
// Changer titre - ne MARCHE PAS pcq complexe iframe-svg&lt;br /&gt;
document.title = document.querySelector(&amp;quot;h1&amp;quot;).innerHTML;&lt;br /&gt;
console.log(document.querySelector(&amp;quot;h1&amp;quot;).innerHTML);&lt;br /&gt;
&lt;br /&gt;
// Zoomout la carte une fois au moins pcq trop grande&lt;br /&gt;
map.zoom_out();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var snowflakes = [&amp;quot;❄&amp;quot;, &amp;quot;❅&amp;quot;, &amp;quot;flocon2neige&amp;quot;];&lt;br /&gt;
//var snowflakes = [&amp;quot;E&amp;quot;, &amp;quot;R&amp;quot;, &amp;quot;G&amp;quot;];&lt;br /&gt;
&lt;br /&gt;
      function createSnowflake() {&lt;br /&gt;
        var snowflake = document.createElement('div');&lt;br /&gt;
        snowflake.className = 'snowflake';&lt;br /&gt;
        snowflake.innerHTML = snowflakes[Math.floor(Math.random() * snowflakes.length)];&lt;br /&gt;
        snowflake.style.left = Math.floor(Math.random() * (document.documentElement.clientWidth || document.body.clientWidth)) + 'px';&lt;br /&gt;
        snowflake.style.top = '0';&lt;br /&gt;
&lt;br /&gt;
        document.body.appendChild(snowflake);&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
          document.body.removeChild(snowflake);&lt;br /&gt;
        }, 5000);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function animateSnowflakes() {&lt;br /&gt;
        var snowflakes = document.getElementsByClassName('snowflake');&lt;br /&gt;
        var iterationCount = 0;&lt;br /&gt;
&lt;br /&gt;
        function animate() {&lt;br /&gt;
          for (var i = 0; i &amp;lt; snowflakes.length; i++) {&lt;br /&gt;
            var snowflake = snowflakes[i];&lt;br /&gt;
            snowflake.style.top = '0';&lt;br /&gt;
            void snowflake.offsetWidth; // Trigger reflow&lt;br /&gt;
            snowflake.style.top = '100vh'; // Set the end position&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          iterationCount++;&lt;br /&gt;
          if (iterationCount &amp;gt;= 20) {&lt;br /&gt;
            clearInterval(animationInterval);&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var animationInterval = setInterval(animate, 500); // Reset the animation every 5000 milliseconds&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function generateSnowflakes() {&lt;br /&gt;
        for (var i = 0; i &amp;lt; 20; i++) { // Create initial snowflakes&lt;br /&gt;
          createSnowflake();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        setInterval(createSnowflake, 50); // Create a new snowflake every 500 milliseconds&lt;br /&gt;
        animateSnowflakes();&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      generateSnowflakes();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function findAndReplaceInH1() {&lt;br /&gt;
        var h1Elements = document.getElementsByTagName('h1');&lt;br /&gt;
&lt;br /&gt;
        for (var i = 0; i &amp;lt; h1Elements.length; i++) {&lt;br /&gt;
            var h1Element = h1Elements[i];&lt;br /&gt;
&lt;br /&gt;
            if (h1Element.hasChildNodes()) {&lt;br /&gt;
                findAndReplace(h1Element);&lt;br /&gt;
            } else {&lt;br /&gt;
                // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
                h1Element.innerText = h1Element.innerText.replace(/erg/g, 'eeeergggg');&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Function to perform find and replace in a given element&lt;br /&gt;
    function findAndReplace(element) {&lt;br /&gt;
        if (element.hasChildNodes()) {&lt;br /&gt;
            element.childNodes.forEach(findAndReplace);&lt;br /&gt;
        } else if (element.nodeType === Node.TEXT_NODE) {&lt;br /&gt;
            // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
            element.nodeValue = element.nodeValue.replace(/eeerrrggg 🤮/g, 'eeerrrggg 🤮');&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Call the function to perform find and replace in h1 elements&lt;br /&gt;
    findAndReplaceInH1();&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23536</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23536"/>
		<updated>2025-02-02T17:30:05Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;$(document).ready(function(){&lt;br /&gt;
$(&amp;quot;#footer&amp;quot;).append(&amp;quot;x&amp;quot;);&lt;br /&gt;
})&lt;br /&gt;
&lt;br /&gt;
var currentUrl = mw.config.get('wgPageName');&lt;br /&gt;
console.log(currentUrl);&lt;br /&gt;
&lt;br /&gt;
console.log(&amp;quot;it's tiiiiiime&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
// Changer titre - ne MARCHE PAS pcq complexe iframe-svg&lt;br /&gt;
document.title = document.querySelector(&amp;quot;h1&amp;quot;).innerHTML;&lt;br /&gt;
console.log(document.querySelector(&amp;quot;h1&amp;quot;).innerHTML);&lt;br /&gt;
&lt;br /&gt;
// Zoomout la carte une fois au moins pcq trop grande&lt;br /&gt;
map.zoom_out();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var snowflakes = [&amp;quot;❄&amp;quot;, &amp;quot;❅&amp;quot;, &amp;quot;flocon2neige&amp;quot;];&lt;br /&gt;
//var snowflakes = [&amp;quot;E&amp;quot;, &amp;quot;R&amp;quot;, &amp;quot;G&amp;quot;];&lt;br /&gt;
&lt;br /&gt;
      function createSnowflake() {&lt;br /&gt;
        var snowflake = document.createElement('div');&lt;br /&gt;
        snowflake.className = 'snowflake';&lt;br /&gt;
        snowflake.innerHTML = snowflakes[Math.floor(Math.random() * snowflakes.length)];&lt;br /&gt;
        snowflake.style.left = Math.floor(Math.random() * (document.documentElement.clientWidth || document.body.clientWidth)) + 'px';&lt;br /&gt;
        snowflake.style.top = '0';&lt;br /&gt;
&lt;br /&gt;
        document.body.appendChild(snowflake);&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
          document.body.removeChild(snowflake);&lt;br /&gt;
        }, 5000);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function animateSnowflakes() {&lt;br /&gt;
        var snowflakes = document.getElementsByClassName('snowflake');&lt;br /&gt;
        var iterationCount = 0;&lt;br /&gt;
&lt;br /&gt;
        function animate() {&lt;br /&gt;
          for (var i = 0; i &amp;lt; snowflakes.length; i++) {&lt;br /&gt;
            var snowflake = snowflakes[i];&lt;br /&gt;
            snowflake.style.top = '0';&lt;br /&gt;
            void snowflake.offsetWidth; // Trigger reflow&lt;br /&gt;
            snowflake.style.top = '100vh'; // Set the end position&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          iterationCount++;&lt;br /&gt;
          if (iterationCount &amp;gt;= 20) {&lt;br /&gt;
            clearInterval(animationInterval);&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var animationInterval = setInterval(animate, 500); // Reset the animation every 5000 milliseconds&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function generateSnowflakes() {&lt;br /&gt;
        for (var i = 0; i &amp;lt; 20; i++) { // Create initial snowflakes&lt;br /&gt;
          createSnowflake();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        setInterval(createSnowflake, 50); // Create a new snowflake every 500 milliseconds&lt;br /&gt;
        animateSnowflakes();&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      generateSnowflakes();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function findAndReplaceInH1() {&lt;br /&gt;
        var h1Elements = document.getElementsByTagName('h1');&lt;br /&gt;
&lt;br /&gt;
        for (var i = 0; i &amp;lt; h1Elements.length; i++) {&lt;br /&gt;
            var h1Element = h1Elements[i];&lt;br /&gt;
&lt;br /&gt;
            if (h1Element.hasChildNodes()) {&lt;br /&gt;
                findAndReplace(h1Element);&lt;br /&gt;
            } else {&lt;br /&gt;
                // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
                h1Element.innerText = h1Element.innerText.replace(/erg/g, 'eeeergggg');&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Function to perform find and replace in a given element&lt;br /&gt;
    function findAndReplace(element) {&lt;br /&gt;
        if (element.hasChildNodes()) {&lt;br /&gt;
            element.childNodes.forEach(findAndReplace);&lt;br /&gt;
        } else if (element.nodeType === Node.TEXT_NODE) {&lt;br /&gt;
            // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
            element.nodeValue = element.nodeValue.replace(/eeerrrggg 🤮/g, 'eeerrrggg 🤮');&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Call the function to perform find and replace in h1 elements&lt;br /&gt;
    findAndReplaceInH1();&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23535</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23535"/>
		<updated>2025-02-02T17:25:24Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;$(document).ready(function(){&lt;br /&gt;
$(&amp;quot;#footer&amp;quot;).append(&amp;quot;x&amp;quot;);&lt;br /&gt;
})&lt;br /&gt;
console.log(&amp;quot;it's tiiiiiime&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
// Changer titre - ne MARCHE PAS pcq complexe iframe-svg&lt;br /&gt;
document.title = document.querySelector(&amp;quot;h1&amp;quot;).innerHTML;&lt;br /&gt;
console.log(document.querySelector(&amp;quot;h1&amp;quot;).innerHTML);&lt;br /&gt;
&lt;br /&gt;
// Zoomout la carte une fois au moins pcq trop grande&lt;br /&gt;
map.zoom_out();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var snowflakes = [&amp;quot;❄&amp;quot;, &amp;quot;❅&amp;quot;, &amp;quot;flocon2neige&amp;quot;];&lt;br /&gt;
//var snowflakes = [&amp;quot;E&amp;quot;, &amp;quot;R&amp;quot;, &amp;quot;G&amp;quot;];&lt;br /&gt;
&lt;br /&gt;
      function createSnowflake() {&lt;br /&gt;
        var snowflake = document.createElement('div');&lt;br /&gt;
        snowflake.className = 'snowflake';&lt;br /&gt;
        snowflake.innerHTML = snowflakes[Math.floor(Math.random() * snowflakes.length)];&lt;br /&gt;
        snowflake.style.left = Math.floor(Math.random() * (document.documentElement.clientWidth || document.body.clientWidth)) + 'px';&lt;br /&gt;
        snowflake.style.top = '0';&lt;br /&gt;
&lt;br /&gt;
        document.body.appendChild(snowflake);&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
          document.body.removeChild(snowflake);&lt;br /&gt;
        }, 5000);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function animateSnowflakes() {&lt;br /&gt;
        var snowflakes = document.getElementsByClassName('snowflake');&lt;br /&gt;
        var iterationCount = 0;&lt;br /&gt;
&lt;br /&gt;
        function animate() {&lt;br /&gt;
          for (var i = 0; i &amp;lt; snowflakes.length; i++) {&lt;br /&gt;
            var snowflake = snowflakes[i];&lt;br /&gt;
            snowflake.style.top = '0';&lt;br /&gt;
            void snowflake.offsetWidth; // Trigger reflow&lt;br /&gt;
            snowflake.style.top = '100vh'; // Set the end position&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          iterationCount++;&lt;br /&gt;
          if (iterationCount &amp;gt;= 20) {&lt;br /&gt;
            clearInterval(animationInterval);&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var animationInterval = setInterval(animate, 500); // Reset the animation every 5000 milliseconds&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function generateSnowflakes() {&lt;br /&gt;
        for (var i = 0; i &amp;lt; 20; i++) { // Create initial snowflakes&lt;br /&gt;
          createSnowflake();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        setInterval(createSnowflake, 50); // Create a new snowflake every 500 milliseconds&lt;br /&gt;
        animateSnowflakes();&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      generateSnowflakes();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function findAndReplaceInH1() {&lt;br /&gt;
        var h1Elements = document.getElementsByTagName('h1');&lt;br /&gt;
&lt;br /&gt;
        for (var i = 0; i &amp;lt; h1Elements.length; i++) {&lt;br /&gt;
            var h1Element = h1Elements[i];&lt;br /&gt;
&lt;br /&gt;
            if (h1Element.hasChildNodes()) {&lt;br /&gt;
                findAndReplace(h1Element);&lt;br /&gt;
            } else {&lt;br /&gt;
                // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
                h1Element.innerText = h1Element.innerText.replace(/erg/g, 'eeeergggg');&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Function to perform find and replace in a given element&lt;br /&gt;
    function findAndReplace(element) {&lt;br /&gt;
        if (element.hasChildNodes()) {&lt;br /&gt;
            element.childNodes.forEach(findAndReplace);&lt;br /&gt;
        } else if (element.nodeType === Node.TEXT_NODE) {&lt;br /&gt;
            // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
            element.nodeValue = element.nodeValue.replace(/eeerrrggg 🤮/g, 'eeerrrggg 🤮');&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Call the function to perform find and replace in h1 elements&lt;br /&gt;
    findAndReplaceInH1();&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23534</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=MediaWiki:Common.js&amp;diff=23534"/>
		<updated>2025-02-02T17:23:12Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;$(&amp;quot;#footer&amp;quot;).append(&amp;quot;x&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
console.log(&amp;quot;it's tiiiiiime&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
// Changer titre - ne MARCHE PAS pcq complexe iframe-svg&lt;br /&gt;
document.title = document.querySelector(&amp;quot;h1&amp;quot;).innerHTML;&lt;br /&gt;
console.log(document.querySelector(&amp;quot;h1&amp;quot;).innerHTML);&lt;br /&gt;
&lt;br /&gt;
// Zoomout la carte une fois au moins pcq trop grande&lt;br /&gt;
map.zoom_out();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var snowflakes = [&amp;quot;❄&amp;quot;, &amp;quot;❅&amp;quot;, &amp;quot;flocon2neige&amp;quot;];&lt;br /&gt;
//var snowflakes = [&amp;quot;E&amp;quot;, &amp;quot;R&amp;quot;, &amp;quot;G&amp;quot;];&lt;br /&gt;
&lt;br /&gt;
      function createSnowflake() {&lt;br /&gt;
        var snowflake = document.createElement('div');&lt;br /&gt;
        snowflake.className = 'snowflake';&lt;br /&gt;
        snowflake.innerHTML = snowflakes[Math.floor(Math.random() * snowflakes.length)];&lt;br /&gt;
        snowflake.style.left = Math.floor(Math.random() * (document.documentElement.clientWidth || document.body.clientWidth)) + 'px';&lt;br /&gt;
        snowflake.style.top = '0';&lt;br /&gt;
&lt;br /&gt;
        document.body.appendChild(snowflake);&lt;br /&gt;
&lt;br /&gt;
        setTimeout(function () {&lt;br /&gt;
          document.body.removeChild(snowflake);&lt;br /&gt;
        }, 5000);&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function animateSnowflakes() {&lt;br /&gt;
        var snowflakes = document.getElementsByClassName('snowflake');&lt;br /&gt;
        var iterationCount = 0;&lt;br /&gt;
&lt;br /&gt;
        function animate() {&lt;br /&gt;
          for (var i = 0; i &amp;lt; snowflakes.length; i++) {&lt;br /&gt;
            var snowflake = snowflakes[i];&lt;br /&gt;
            snowflake.style.top = '0';&lt;br /&gt;
            void snowflake.offsetWidth; // Trigger reflow&lt;br /&gt;
            snowflake.style.top = '100vh'; // Set the end position&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          iterationCount++;&lt;br /&gt;
          if (iterationCount &amp;gt;= 20) {&lt;br /&gt;
            clearInterval(animationInterval);&lt;br /&gt;
          }&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        var animationInterval = setInterval(animate, 500); // Reset the animation every 5000 milliseconds&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      function generateSnowflakes() {&lt;br /&gt;
        for (var i = 0; i &amp;lt; 20; i++) { // Create initial snowflakes&lt;br /&gt;
          createSnowflake();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        setInterval(createSnowflake, 50); // Create a new snowflake every 500 milliseconds&lt;br /&gt;
        animateSnowflakes();&lt;br /&gt;
      }&lt;br /&gt;
&lt;br /&gt;
      generateSnowflakes();&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function findAndReplaceInH1() {&lt;br /&gt;
        var h1Elements = document.getElementsByTagName('h1');&lt;br /&gt;
&lt;br /&gt;
        for (var i = 0; i &amp;lt; h1Elements.length; i++) {&lt;br /&gt;
            var h1Element = h1Elements[i];&lt;br /&gt;
&lt;br /&gt;
            if (h1Element.hasChildNodes()) {&lt;br /&gt;
                findAndReplace(h1Element);&lt;br /&gt;
            } else {&lt;br /&gt;
                // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
                h1Element.innerText = h1Element.innerText.replace(/erg/g, 'eeeergggg');&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Function to perform find and replace in a given element&lt;br /&gt;
    function findAndReplace(element) {&lt;br /&gt;
        if (element.hasChildNodes()) {&lt;br /&gt;
            element.childNodes.forEach(findAndReplace);&lt;br /&gt;
        } else if (element.nodeType === Node.TEXT_NODE) {&lt;br /&gt;
            // Replace occurrences of &amp;quot;erg&amp;quot; with &amp;quot;eeeergggg&amp;quot; in text content&lt;br /&gt;
            element.nodeValue = element.nodeValue.replace(/eeerrrggg 🤮/g, 'eeerrrggg 🤮');&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    // Call the function to perform find and replace in h1 elements&lt;br /&gt;
    findAndReplaceInH1();&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=23533</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=23533"/>
		<updated>2025-02-02T17:16:51Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;https://mamot.fr/@copy&amp;quot; rel=&amp;quot;me&amp;quot;&amp;gt;martin copyright 🙈 🙉 🙊&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to [Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Basin &amp;amp; Marot]]&lt;br /&gt;
[[Encore un teste de page %253F]]&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=23532</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=23532"/>
		<updated>2025-02-02T17:13:48Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;a href=&amp;quot;https://mamot.fr/@copy&amp;quot; rel=&amp;quot;me&amp;quot;&amp;gt;martin copyright 🙈 🙉 🙊&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Basin &amp;amp; Marot]]&lt;br /&gt;
[[Encore un teste de page %253F]]&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=23531</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=23531"/>
		<updated>2025-02-02T17:13:34Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://mamot.fr/@copy&amp;quot; rel=&amp;quot;me&amp;quot;&amp;gt;martin copyright 🙈 🙉 🙊&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Basin &amp;amp; Marot]]&lt;br /&gt;
[[Encore un teste de page %253F]]&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=L%27IA_va-t-elle_tous_nous_remplacer_-_conf%C3%A9rence_de_Mathilde_Sailou_-_12.02.2024&amp;diff=22687</id>
		<title>L'IA va-t-elle tous nous remplacer - conférence de Mathilde Sailou - 12.02.2024</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=L%27IA_va-t-elle_tous_nous_remplacer_-_conf%C3%A9rence_de_Mathilde_Sailou_-_12.02.2024&amp;diff=22687"/>
		<updated>2024-02-12T14:16:42Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:L'IA va-t-elle tous nous remplacer ? - conférence de Mathilde Sailou - 12.02.2024}}&lt;br /&gt;
&lt;br /&gt;
{{Actualités&lt;br /&gt;
|Published=2024-02-02&lt;br /&gt;
|Image=SALIOU4993©JF PAGA.jpg&lt;br /&gt;
|Description='''Lundi 12.02.2024'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''9:30-11:30 salle 1p04'''&lt;br /&gt;
&lt;br /&gt;
Ouvert à toutes (profs, élèves. Public extérieur)&lt;br /&gt;
&lt;br /&gt;
''L'IA va-t-elle tous nous remplacer ?'' &lt;br /&gt;
&lt;br /&gt;
À en croire certains scientifiques ou patrons d'entreprise, l'IA remplacera bientôt toutes sortes de métiers. Certains discours prévoient même qu'elle domine un jour l'humanité. En pratique, pourtant, les constructeurs de modèles algorithmiques sont beaucoup plus prudents. D'où viennent les mythologies angoissantes autour de l'IA ? Qu'en est-il en réalité ?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Journaliste et autrice, '''Mathilde Saliou''' couvre des thématiques liées à la tech, à l’information, ainsi qu’aux inégalités présentes dans les médias et les mondes connectés. Elle a collaboré avec différents médias comme The Guardian, 20 Minutes, ou Numerama et travaille principalement pour Next.ink. En 2023, elle a publié Technoféminisme, comment le numérique aggrave les inégalités, aux éditions Grasset. Dans la newsletter Technoculture (technoculture.kessel.media), elle partage des outils pratiques pour penser et agir sur le monde numérique.&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22686</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22686"/>
		<updated>2024-02-12T14:11:37Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Basin &amp;amp; Marot]]&lt;br /&gt;
[[Encore un teste de page %253F]]&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22613</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22613"/>
		<updated>2024-02-11T12:47:53Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Basin &amp;amp; Marot, vraie fausse bonne idée ?}}&lt;br /&gt;
===LINUX===&lt;br /&gt;
!! INSTALLEZ LINUX SUR VOS [[Hardwerg|machines]],&lt;br /&gt;
VEUILLEZ NE PLUS JAMAIS UTILISER DE LOGICIEL PROPRIÉTAIRE !&lt;br /&gt;
Utiliser linux, c'est choisir un autre système d'explotation que les options dominantes( windows, mac os...)&lt;br /&gt;
c'est donc changer la facon dont on utilise son [[Hardwerg|ordinateur]] pour une utilisation, plus libre, plus viable et plus responsable.&lt;br /&gt;
&lt;br /&gt;
===Qu’est-ce que Linux ?===&lt;br /&gt;
Linux ou GNU/Linux est une famille de systèmes d'exploitation open source de type Unix fondés sur le noyau Linux créé en 1991 par Linus Torvalds. De nombreuses distributions Linux ont depuis vu le jour et constituent un important vecteur de popularisation du mouvement du logiciel libre. Avec le logiciel libre, les utilisat·eur·ices contrôlent le programme, que ce soit de manière individuelle ou collective. &lt;br /&gt;
Par conséquent iels contrôlent ce que font leurs ordinateurs.&lt;br /&gt;
&lt;br /&gt;
*Utiliser GNU/linux, c'est donc être &lt;br /&gt;
 &lt;br /&gt;
**Libre de faire fonctionner le programme comme vous le souhaitez, pour n'importe quel usage&lt;br /&gt;
 &lt;br /&gt;
**Libre d'étudier le fonctionnement du programme et de le modifier pour qu'il fasse les opérations informatiques que vous souhaitez  ; une condition préalable est d'accéder au code source&lt;br /&gt;
 &lt;br /&gt;
**Libre d'en redistribuer des copies pour aider les autres &lt;br /&gt;
 &lt;br /&gt;
**Libre de distribuer des copies de vos versions modifiées aux autres  ce faisant, vous donnez à l'ensemble de la communauté une chance de bénéficier de vos modifications &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Capture du 2024-01-22 13-23-10.png]]&lt;br /&gt;
&lt;br /&gt;
===Fight the Enemmy, don't let the corp catch u !===&lt;br /&gt;
Windows pfffffff......mac os pffffffff......&lt;br /&gt;
&lt;br /&gt;
Si vous ne controlez pas votre machine, c'est la machine qui vous controle...&lt;br /&gt;
&lt;br /&gt;
Download Linux : https://www.linux.org/pages/download/ &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
*D'autre liens utiles : &lt;br /&gt;
&lt;br /&gt;
**Le logiciel libre est encore plus essentiel maintenant : https://www.gnu.org/philosophy/free-software-even-more-important.html&lt;br /&gt;
&lt;br /&gt;
**Linux Beginner Tutorials : https://linux.org/forums/linux-beginner-tutorials.123/&lt;br /&gt;
&lt;br /&gt;
**Wiki Archlinux : https://wiki.archlinux.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Ubuntu : https://ubuntuforums.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Linux Français : https://linuxfr.org/&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22612</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22612"/>
		<updated>2024-02-11T12:41:26Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
===LINUX===&lt;br /&gt;
!! INSTALLEZ LINUX SUR VOS [[Hardwerg|machines]],&lt;br /&gt;
VEUILLEZ NE PLUS JAMAIS UTILISER DE LOGICIEL PROPRIÉTAIRE !&lt;br /&gt;
Utiliser linux, c'est choisir un autre système d'explotation que les options dominantes( windows, mac os...)&lt;br /&gt;
c'est donc changer la facon dont on utilise son [[Hardwerg|ordinateur]] pour une utilisation, plus libre, plus viable et plus responsable.&lt;br /&gt;
&lt;br /&gt;
===Qu’est-ce que Linux ?===&lt;br /&gt;
Linux ou GNU/Linux est une famille de systèmes d'exploitation open source de type Unix fondés sur le noyau Linux créé en 1991 par Linus Torvalds. De nombreuses distributions Linux ont depuis vu le jour et constituent un important vecteur de popularisation du mouvement du logiciel libre. Avec le logiciel libre, les utilisat·eur·ices contrôlent le programme, que ce soit de manière individuelle ou collective. &lt;br /&gt;
Par conséquent iels contrôlent ce que font leurs ordinateurs.&lt;br /&gt;
&lt;br /&gt;
*Utiliser GNU/linux, c'est donc être &lt;br /&gt;
 &lt;br /&gt;
**Libre de faire fonctionner le programme comme vous le souhaitez, pour n'importe quel usage&lt;br /&gt;
 &lt;br /&gt;
**Libre d'étudier le fonctionnement du programme et de le modifier pour qu'il fasse les opérations informatiques que vous souhaitez  ; une condition préalable est d'accéder au code source&lt;br /&gt;
 &lt;br /&gt;
**Libre d'en redistribuer des copies pour aider les autres &lt;br /&gt;
 &lt;br /&gt;
**Libre de distribuer des copies de vos versions modifiées aux autres  ce faisant, vous donnez à l'ensemble de la communauté une chance de bénéficier de vos modifications &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Capture du 2024-01-22 13-23-10.png]]&lt;br /&gt;
&lt;br /&gt;
===Fight the Enemmy, don't let the corp catch u !===&lt;br /&gt;
Windows pfffffff......mac os pffffffff......&lt;br /&gt;
&lt;br /&gt;
Si vous ne controlez pas votre machine, c'est la machine qui vous controle...&lt;br /&gt;
&lt;br /&gt;
Download Linux : https://www.linux.org/pages/download/ &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
*D'autre liens utiles : &lt;br /&gt;
&lt;br /&gt;
**Le logiciel libre est encore plus essentiel maintenant : https://www.gnu.org/philosophy/free-software-even-more-important.html&lt;br /&gt;
&lt;br /&gt;
**Linux Beginner Tutorials : https://linux.org/forums/linux-beginner-tutorials.123/&lt;br /&gt;
&lt;br /&gt;
**Wiki Archlinux : https://wiki.archlinux.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Ubuntu : https://ubuntuforums.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Linux Français : https://linuxfr.org/&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22611</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22611"/>
		<updated>2024-02-11T12:41:18Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Basin &amp;amp; Marot, vraie fausse bonne idée ?}}&lt;br /&gt;
===LINUX===&lt;br /&gt;
!! INSTALLEZ LINUX SUR VOS [[Hardwerg|machines]],&lt;br /&gt;
VEUILLEZ NE PLUS JAMAIS UTILISER DE LOGICIEL PROPRIÉTAIRE !&lt;br /&gt;
Utiliser linux, c'est choisir un autre système d'explotation que les options dominantes( windows, mac os...)&lt;br /&gt;
c'est donc changer la facon dont on utilise son [[Hardwerg|ordinateur]] pour une utilisation, plus libre, plus viable et plus responsable.&lt;br /&gt;
&lt;br /&gt;
===Qu’est-ce que Linux ?===&lt;br /&gt;
Linux ou GNU/Linux est une famille de systèmes d'exploitation open source de type Unix fondés sur le noyau Linux créé en 1991 par Linus Torvalds. De nombreuses distributions Linux ont depuis vu le jour et constituent un important vecteur de popularisation du mouvement du logiciel libre. Avec le logiciel libre, les utilisat·eur·ices contrôlent le programme, que ce soit de manière individuelle ou collective. &lt;br /&gt;
Par conséquent iels contrôlent ce que font leurs ordinateurs.&lt;br /&gt;
&lt;br /&gt;
*Utiliser GNU/linux, c'est donc être &lt;br /&gt;
 &lt;br /&gt;
**Libre de faire fonctionner le programme comme vous le souhaitez, pour n'importe quel usage&lt;br /&gt;
 &lt;br /&gt;
**Libre d'étudier le fonctionnement du programme et de le modifier pour qu'il fasse les opérations informatiques que vous souhaitez  ; une condition préalable est d'accéder au code source&lt;br /&gt;
 &lt;br /&gt;
**Libre d'en redistribuer des copies pour aider les autres &lt;br /&gt;
 &lt;br /&gt;
**Libre de distribuer des copies de vos versions modifiées aux autres  ce faisant, vous donnez à l'ensemble de la communauté une chance de bénéficier de vos modifications &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Capture du 2024-01-22 13-23-10.png]]&lt;br /&gt;
&lt;br /&gt;
===Fight the Enemmy, don't let the corp catch u !===&lt;br /&gt;
Windows pfffffff......mac os pffffffff......&lt;br /&gt;
&lt;br /&gt;
Si vous ne controlez pas votre machine, c'est la machine qui vous controle...&lt;br /&gt;
&lt;br /&gt;
Download Linux : https://www.linux.org/pages/download/ &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
*D'autre liens utiles : &lt;br /&gt;
&lt;br /&gt;
**Le logiciel libre est encore plus essentiel maintenant : https://www.gnu.org/philosophy/free-software-even-more-important.html&lt;br /&gt;
&lt;br /&gt;
**Linux Beginner Tutorials : https://linux.org/forums/linux-beginner-tutorials.123/&lt;br /&gt;
&lt;br /&gt;
**Wiki Archlinux : https://wiki.archlinux.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Ubuntu : https://ubuntuforums.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Linux Français : https://linuxfr.org/&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22610</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22610"/>
		<updated>2024-02-11T12:40:02Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:TEST}}&lt;br /&gt;
===LINUX===&lt;br /&gt;
!! INSTALLEZ LINUX SUR VOS [[Hardwerg|machines]],&lt;br /&gt;
VEUILLEZ NE PLUS JAMAIS UTILISER DE LOGICIEL PROPRIÉTAIRE !&lt;br /&gt;
Utiliser linux, c'est choisir un autre système d'explotation que les options dominantes( windows, mac os...)&lt;br /&gt;
c'est donc changer la facon dont on utilise son [[Hardwerg|ordinateur]] pour une utilisation, plus libre, plus viable et plus responsable.&lt;br /&gt;
&lt;br /&gt;
===Qu’est-ce que Linux ?===&lt;br /&gt;
Linux ou GNU/Linux est une famille de systèmes d'exploitation open source de type Unix fondés sur le noyau Linux créé en 1991 par Linus Torvalds. De nombreuses distributions Linux ont depuis vu le jour et constituent un important vecteur de popularisation du mouvement du logiciel libre. Avec le logiciel libre, les utilisat·eur·ices contrôlent le programme, que ce soit de manière individuelle ou collective. &lt;br /&gt;
Par conséquent iels contrôlent ce que font leurs ordinateurs.&lt;br /&gt;
&lt;br /&gt;
*Utiliser GNU/linux, c'est donc être &lt;br /&gt;
 &lt;br /&gt;
**Libre de faire fonctionner le programme comme vous le souhaitez, pour n'importe quel usage&lt;br /&gt;
 &lt;br /&gt;
**Libre d'étudier le fonctionnement du programme et de le modifier pour qu'il fasse les opérations informatiques que vous souhaitez  ; une condition préalable est d'accéder au code source&lt;br /&gt;
 &lt;br /&gt;
**Libre d'en redistribuer des copies pour aider les autres &lt;br /&gt;
 &lt;br /&gt;
**Libre de distribuer des copies de vos versions modifiées aux autres  ce faisant, vous donnez à l'ensemble de la communauté une chance de bénéficier de vos modifications &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Capture du 2024-01-22 13-23-10.png]]&lt;br /&gt;
&lt;br /&gt;
===Fight the Enemmy, don't let the corp catch u !===&lt;br /&gt;
Windows pfffffff......mac os pffffffff......&lt;br /&gt;
&lt;br /&gt;
Si vous ne controlez pas votre machine, c'est la machine qui vous controle...&lt;br /&gt;
&lt;br /&gt;
Download Linux : https://www.linux.org/pages/download/ &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
*D'autre liens utiles : &lt;br /&gt;
&lt;br /&gt;
**Le logiciel libre est encore plus essentiel maintenant : https://www.gnu.org/philosophy/free-software-even-more-important.html&lt;br /&gt;
&lt;br /&gt;
**Linux Beginner Tutorials : https://linux.org/forums/linux-beginner-tutorials.123/&lt;br /&gt;
&lt;br /&gt;
**Wiki Archlinux : https://wiki.archlinux.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Ubuntu : https://ubuntuforums.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Linux Français : https://linuxfr.org/&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22609</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Linux&amp;diff=22609"/>
		<updated>2024-02-11T12:39:24Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{DISPLAYTITLE=TEST}&lt;br /&gt;
===LINUX===&lt;br /&gt;
!! INSTALLEZ LINUX SUR VOS [[Hardwerg|machines]],&lt;br /&gt;
VEUILLEZ NE PLUS JAMAIS UTILISER DE LOGICIEL PROPRIÉTAIRE !&lt;br /&gt;
Utiliser linux, c'est choisir un autre système d'explotation que les options dominantes( windows, mac os...)&lt;br /&gt;
c'est donc changer la facon dont on utilise son [[Hardwerg|ordinateur]] pour une utilisation, plus libre, plus viable et plus responsable.&lt;br /&gt;
&lt;br /&gt;
===Qu’est-ce que Linux ?===&lt;br /&gt;
Linux ou GNU/Linux est une famille de systèmes d'exploitation open source de type Unix fondés sur le noyau Linux créé en 1991 par Linus Torvalds. De nombreuses distributions Linux ont depuis vu le jour et constituent un important vecteur de popularisation du mouvement du logiciel libre. Avec le logiciel libre, les utilisat·eur·ices contrôlent le programme, que ce soit de manière individuelle ou collective. &lt;br /&gt;
Par conséquent iels contrôlent ce que font leurs ordinateurs.&lt;br /&gt;
&lt;br /&gt;
*Utiliser GNU/linux, c'est donc être &lt;br /&gt;
 &lt;br /&gt;
**Libre de faire fonctionner le programme comme vous le souhaitez, pour n'importe quel usage&lt;br /&gt;
 &lt;br /&gt;
**Libre d'étudier le fonctionnement du programme et de le modifier pour qu'il fasse les opérations informatiques que vous souhaitez  ; une condition préalable est d'accéder au code source&lt;br /&gt;
 &lt;br /&gt;
**Libre d'en redistribuer des copies pour aider les autres &lt;br /&gt;
 &lt;br /&gt;
**Libre de distribuer des copies de vos versions modifiées aux autres  ce faisant, vous donnez à l'ensemble de la communauté une chance de bénéficier de vos modifications &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Capture du 2024-01-22 13-23-10.png]]&lt;br /&gt;
&lt;br /&gt;
===Fight the Enemmy, don't let the corp catch u !===&lt;br /&gt;
Windows pfffffff......mac os pffffffff......&lt;br /&gt;
&lt;br /&gt;
Si vous ne controlez pas votre machine, c'est la machine qui vous controle...&lt;br /&gt;
&lt;br /&gt;
Download Linux : https://www.linux.org/pages/download/ &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
*D'autre liens utiles : &lt;br /&gt;
&lt;br /&gt;
**Le logiciel libre est encore plus essentiel maintenant : https://www.gnu.org/philosophy/free-software-even-more-important.html&lt;br /&gt;
&lt;br /&gt;
**Linux Beginner Tutorials : https://linux.org/forums/linux-beginner-tutorials.123/&lt;br /&gt;
&lt;br /&gt;
**Wiki Archlinux : https://wiki.archlinux.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Ubuntu : https://ubuntuforums.org/&lt;br /&gt;
&lt;br /&gt;
**Forum Linux Français : https://linuxfr.org/&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22608</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22608"/>
		<updated>2024-02-10T14:19:00Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Basin &amp;amp; Marot]]&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22606</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22606"/>
		<updated>2024-02-10T12:49:16Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Basin %26 Marot]]&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Basin_%26_Marot&amp;diff=22605</id>
		<title>Basin &amp; Marot</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Basin_%26_Marot&amp;diff=22605"/>
		<updated>2024-02-10T12:47:40Z</updated>

		<summary type="html">&lt;p&gt;Copyright : Page créée avec « TEST »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;TEST&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22604</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22604"/>
		<updated>2024-02-10T12:47:19Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Basin &amp;amp; Marot]]&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22568</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22568"/>
		<updated>2024-02-08T16:20:42Z</updated>

		<summary type="html">&lt;p&gt;Copyright : /* ouvrir et fermer la carte */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve un petit script qui dit que lorsqu'on clique sur l'element &amp;lt;code&amp;gt;&amp;lt;a id=&amp;quot;quit&amp;quot;&amp;gt;X&amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;: &lt;br /&gt;
* on cache la carte&lt;br /&gt;
* on agrandi la taille de la fenetre de gauche&lt;br /&gt;
* on transforme le texte du boutton [X] en &amp;quot;🌐 carte&amp;quot;&lt;br /&gt;
* on deplace le boutton en bas à droite de la page&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22566</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22566"/>
		<updated>2024-02-08T14:55:46Z</updated>

		<summary type="html">&lt;p&gt;Copyright : /* ouvrir et fermer la carte */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
''Une solution finalement bien ergienne''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir !&lt;br /&gt;
&lt;br /&gt;
En bas de la page &amp;lt;code&amp;gt;index.html&amp;lt;/code&amp;gt; se trouve caché un petit script.&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22565</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22565"/>
		<updated>2024-02-08T14:54:53Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== behind the scenes ==&lt;br /&gt;
=== ouvrir et fermer la carte ===&lt;br /&gt;
'''Une solution finalement bien ergienne'''... Comme il était impossible de se décider, il fallut developper un sytême pour montrer et cacher cette toile d'araignée selon notre bon vouloir.&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
* mtga&lt;br /&gt;
* csgo2&lt;br /&gt;
* signal &amp;lt;3&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22563</id>
		<title>Utilisateur:Copyright</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Utilisateur:Copyright&amp;diff=22563"/>
		<updated>2024-02-08T14:47:05Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTITLE__&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Tux-linux-imagen-animada-0125-2566320288.gif]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:TypingComputer.gif|500px|thumb]]&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Undercon3.gif|500]]&lt;br /&gt;
&lt;br /&gt;
🕴️ Hello World, welcome to Martin's user page !&lt;br /&gt;
&lt;br /&gt;
* Je suis &amp;lt;del&amp;gt;en cours&amp;lt;/del&amp;gt; diplômé de [[Sculpture (MA)]] et [[Arts numériques (MA)]] en 2023 👴.&lt;br /&gt;
* Je vis à 📍 Marseille !&lt;br /&gt;
* Je suis aussi actif chez [https://non-a.copyright.rip ɴon-ᴀ], et sur [https://www.youtube.com/@1nd3x__ 1nd3x] 📺.&lt;br /&gt;
&lt;br /&gt;
== pages sur lesquelles je travaille ==&lt;br /&gt;
* [[Live Coding]]&lt;br /&gt;
* [[Workshop : WIKI MAINTENANCE]]&lt;br /&gt;
* [[Hardwerg]]&lt;br /&gt;
* [[Softwerg]]&lt;br /&gt;
* [[Boîte à outils Wiki]]&lt;br /&gt;
* '''Commons'''&lt;br /&gt;
** [[Mediawiki:Common.js]]&lt;br /&gt;
** [[MediaWiki:Common.css]]&lt;br /&gt;
* '''Modèles'''&lt;br /&gt;
** [[Modèle:Warning]]&lt;br /&gt;
&lt;br /&gt;
== liens utiles ==&lt;br /&gt;
* [[Spécial:Page_au_hasard | 🎲 Page au hasard ]]&lt;br /&gt;
* [[Spécial:Liste_des_utilisateurs | 🫂  Liste des utilisateur.ice.s]]&lt;br /&gt;
* [[Spécial:Pages_orphelines | 👼 Pages orphelines]]&lt;br /&gt;
* [[Spécial:Statistiques | 📊 Statistiques du Wiki]]&lt;br /&gt;
* [[Erg.be]] — ''page explicative du fonctionnement du site''&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Magic_words/fr Magic Words]&lt;br /&gt;
* [http://copyright.rip/erg/typo/ Ancienne typothéque de l'erg]&lt;br /&gt;
&lt;br /&gt;
== M E T A ==&lt;br /&gt;
Sur ce wiki, il n'y à malheureusement que {{NUMBEROFACTIVEUSERS}} utilisateurices actifves 😢, alors qu'il y à {{NUMBEROFUSERS}} utilisateurices inscrit·e·s !&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== Software 🏄  ==&lt;br /&gt;
* arch linux (i3)&lt;br /&gt;
* firefox&lt;br /&gt;
* vim&lt;br /&gt;
&lt;br /&gt;
[[Fichier: Constructionpikachu.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
                                                                                  &lt;br /&gt;
          ***  ****                                ****    ***  ****              &lt;br /&gt;
   ***     **** **** *     ****         ****      * ***  *  **** **** *    ***    &lt;br /&gt;
  * ***     **   ****     *  ***  *    * ***  *  *   ****    **   ****    * ***   &lt;br /&gt;
 *   ***    **           *    ****    *   ****  **    **     **          *   ***  &lt;br /&gt;
**    ***   **          **     **    **         **    **     **         **    *** &lt;br /&gt;
********    **          **     **    **         **    **     **         ********  &lt;br /&gt;
*******     **          **     **    **         **    **     **         *******   &lt;br /&gt;
**          **          **     **    **         **    **     **         **        &lt;br /&gt;
****    *   ***         **     **    ***     *   ******      ***        ****    * &lt;br /&gt;
 *******     ***         ********     *******     ****        ***        *******  &lt;br /&gt;
  *****                    *** ***     *****                              *****   &lt;br /&gt;
                                ***                                               &lt;br /&gt;
                          ****   ***                                              &lt;br /&gt;
                        *******  **                                               &lt;br /&gt;
                       *     ****                                                 &lt;br /&gt;
                                                                                  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
--[[Utilisateur:Copyright|Copyright]] ([[Discussion utilisateur:Copyright|discussion]]) 10 janvier 2024 à 21:43 (CET)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
these are my notes&lt;br /&gt;
i need to replace the image.&lt;br /&gt;
* [ ] call mom&lt;br /&gt;
* [ ] find money&lt;br /&gt;
* [ ] &lt;br /&gt;
&lt;br /&gt;
&amp;lt;categorytree mode=&amp;quot;pages&amp;quot;&amp;gt;Winter School 2024&amp;lt;/categorytree&amp;gt;&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Badge/Editeurice}}&lt;br /&gt;
{{Badge/Maintenance}}&lt;br /&gt;
{{Badge/Arts Numériques}}&lt;br /&gt;
{{Badge/EAT Enthusiast}}&lt;br /&gt;
{{Badge/Small Data}}&lt;br /&gt;
{{Badge/Dinosaure}}&lt;br /&gt;
{{Badge/Fossile}}&lt;br /&gt;
{{Badge/Big Bang}}&lt;br /&gt;
{{Badge/Vim}}&lt;br /&gt;
{{Badge/Sculpture}}&lt;br /&gt;
{{Badge/D-day}}&lt;br /&gt;
{{Badge/Trottoir}}&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22259</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22259"/>
		<updated>2024-01-26T12:51:11Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le [https://github.com/Rhoumi/slides-erg/ document de présentation].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
** Hydra&lt;br /&gt;
*** [https://github.com/geikha/hyper-hydra hyper-hydra] (plus de fonctions pour hydra)&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* '''People'''&lt;br /&gt;
** [https://ralt144mi.remigeorges.fr/ Remi Georges]&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
** [https://www.youtube.com/@LilData LilData]&lt;br /&gt;
** [https://nickm.com/me.html Nick Montfort]&lt;br /&gt;
* '''Divers mots clés:'''&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour retrouver des infos sur les événements de la communauté → [https://blog.toplap.org/ blog.toplab.org]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22258</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22258"/>
		<updated>2024-01-26T12:50:24Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
** Hydra&lt;br /&gt;
*** [https://github.com/geikha/hyper-hydra hyper-hydra] (plus de fonctions pour hydra)&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* '''People'''&lt;br /&gt;
** [https://ralt144mi.remigeorges.fr/ Remi Georges]&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
** [https://www.youtube.com/@LilData LilData]&lt;br /&gt;
** [https://nickm.com/me.html Nick Montfort]&lt;br /&gt;
* '''Divers mots clés:'''&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pour retrouver des infos sur les événements de la communauté → [https://blog.toplap.org/ blog.toplab.org]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22257</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22257"/>
		<updated>2024-01-26T12:47:09Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
** Hydra&lt;br /&gt;
*** [https://github.com/geikha/hyper-hydra hyper-hydra] (plus de fonctions pour hydra)&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* '''People'''&lt;br /&gt;
** [https://ralt144mi.remigeorges.fr/ Remi Georges]&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
** [https://www.youtube.com/@LilData LilData]&lt;br /&gt;
** [https://nickm.com/me.html Nick Montfort]&lt;br /&gt;
* '''Divers mots clés:'''&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22254</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22254"/>
		<updated>2024-01-26T10:34:48Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
** Hydra&lt;br /&gt;
*** [https://github.com/geikha/hyper-hydra hyper-hydra] (plus de fonctions pour hydra)&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* '''People'''&lt;br /&gt;
** [https://ralt144mi.remigeorges.fr/ Remi Georges]&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
** [https://www.youtube.com/@LilData LilData]&lt;br /&gt;
* '''Divers mots clés:'''&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22253</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22253"/>
		<updated>2024-01-26T10:12:06Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* '''People'''&lt;br /&gt;
** [https://ralt144mi.remigeorges.fr/ Remi Georges]&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
** [https://www.youtube.com/@LilData LilData]&lt;br /&gt;
* '''Divers mots clés:'''&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22252</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22252"/>
		<updated>2024-01-26T10:10:04Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* '''People'''&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
** [https://www.youtube.com/@LilData LilData]&lt;br /&gt;
* '''Divers mots clés:'''&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22251</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22251"/>
		<updated>2024-01-26T10:09:50Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* People&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
** [https://www.youtube.com/@LilData LilData]&lt;br /&gt;
* Divers mots clés:&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22250</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22250"/>
		<updated>2024-01-26T10:06:03Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* People&lt;br /&gt;
** [https://slab.org/ Alex McLean]&lt;br /&gt;
* Divers mots clés:&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau, interpréteur, modulaire, open source, improvisation&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22249</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22249"/>
		<updated>2024-01-26T09:56:06Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* Divers mots clés:&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique, noise, drone, bas niveau,&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22248</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22248"/>
		<updated>2024-01-26T09:55:44Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
** [http://viznut.fi/ibniz/ Ibniz]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;br /&gt;
* Divers mots clés:&lt;br /&gt;
** shaders, buffer, carte graphique, esotérique,&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22247</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22247"/>
		<updated>2024-01-26T09:54:20Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
** [https://estuary.mcmaster.ca/ Estuary]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22246</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22246"/>
		<updated>2024-01-26T09:52:56Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Demoscene Demoscene] (on wikipedia)&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22245</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22245"/>
		<updated>2024-01-26T09:51:51Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
** [https://greggman.com/downloads/examples/html5bytebeat/html5bytebeat.html#t=0&amp;amp;e=0&amp;amp;s=8000&amp;amp;bb=5d000001001600000000000000001461cc403ebd1b3df4f78ee66fe76abfec87b76a604f800cd7fffb9d7000 ByteBeat]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22244</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22244"/>
		<updated>2024-01-26T09:50:02Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [https://github.com/hundredrabbits/Orca Orca] (esoteric programming language)&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22243</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22243"/>
		<updated>2024-01-26T09:49:49Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
** [[https://github.com/hundredrabbits/Orca Orca]] (esoteric programming language)&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22242</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22242"/>
		<updated>2024-01-26T09:49:06Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
** [https://monome.org/docs/teletype/ Teletype (eurorack module)]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22241</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22241"/>
		<updated>2024-01-26T09:46:47Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;br /&gt;
** [https://en.wikipedia.org/wiki/Live_coding Live coding (on wikipedia)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22240</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22240"/>
		<updated>2024-01-26T09:46:04Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
** [https://github.com/Qirky/FoxDot FoxDot]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22239</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22239"/>
		<updated>2024-01-26T09:45:16Z</updated>

		<summary type="html">&lt;p&gt;Copyright : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''. Retrouver le document de présentation [[???]].&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22238</id>
		<title>Live Coding</title>
		<link rel="alternate" type="text/html" href="https://wiki.erg.be/mw/index.php?title=Live_Coding&amp;diff=22238"/>
		<updated>2024-01-26T09:44:40Z</updated>

		<summary type="html">&lt;p&gt;Copyright : /* ressources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Quelques notes sur l'atelier de [[Workshop : Live coding musical et visuel avec Juliette Monzat]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On commence la matinée avec un présentation historique et technique sur le ''livecoding''.&lt;br /&gt;
&lt;br /&gt;
=== ressources ===&lt;br /&gt;
* '''Outils'''&lt;br /&gt;
** [https://sardine.raphaelforment.fr/installation.html Sardine]&lt;br /&gt;
** [https://tidalcycles.org/ Tidal Cycles]&lt;br /&gt;
** [https://sonic-pi.net/ Sonic Pi]&lt;br /&gt;
** [https://thormagnusson.github.io/threnoscope/ Threnoscope]&lt;br /&gt;
** [https://gibber.cc/ Gibber]&lt;br /&gt;
** [https://chuck.stanford.edu/ ChucK]&lt;br /&gt;
* '''Documents'''&lt;br /&gt;
** [https://toplap.org/wiki/ManifestoDraft 'Original' TOPLAP draft manifesto (with focus on music performance)]&lt;/div&gt;</summary>
		<author><name>Copyright</name></author>
		
	</entry>
</feed>