This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="collection"> | |
<ul class="flex_row"> | |
<li v-for="(item, index) in collections"> | |
<h5>{{index}} ---- {{item}}</h5> | |
</li> | |
</ul> | |
</div> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unhandled rejection error: erreur de syntaxe sur ou près de « . » | |
at Connection.parseE (/mnt/c/quadratik/node_modules/pg/lib/connection.js:545:11) | |
at Connection.parseMessage (/mnt/c/quadratik/node_modules/pg/lib/connection.js:370:19) | |
at TLSSocket.<anonymous> (/mnt/c/quadratik/node_modules/pg/lib/connection.js:113:22) | |
at emitOne (events.js:116:13) | |
at TLSSocket.emit (events.js:211:7) | |
at addChunk (_stream_readable.js:263:12) | |
at readableAddChunk (_stream_readable.js:250:11) | |
at TLSSocket.Readable.push (_stream_readable.js:208:10) | |
at TLSWrap.onread (net.js:607:20) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name www.quadratik.fr; | |
location / { | |
proxy_set_header X-Forwarded-For $remote_addr; | |
proxy_set_header Host $http_host; | |
proxy_pass "http://127.0.0.1:3000"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.getElementById("color-1").addEventListener("click", function() { | |
if (_previous_selected_obj) { | |
colorize("color-1", "mat1"); | |
modeleTable[_previous_selected_obj.origin_name.substring(6, 7)] = "N1"; | |
} else { | |
notify("[WARNING]"); | |
} | |
}, false); |
NewerOlder