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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <canvas id="a"></canvas> | |
| <script> | |
| const gl = a.getContext('webgl2'); | |
| const program = gl.createProgram(); |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <script> | |
| function playSound() { | |
| var ifr = document.createElement('iframe'); | |
| ifr.allow = 'autoplay'; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <button>Click me</button> | |
| <script> | |
| function addOutsideEventListener(outsideContainer, handler, ownerDocument, events) { | |
| function handleOutsideEvent(e) { |
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
| <!doctype html> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <canvas id="a" width="800" height="600"></canvas> | |
| <p> | |
| <label><input type="checkbox" id="strokes"> Draw with strokes </label> | |
| </p> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <canvas id="a" width="800" height="600"></canvas> | |
| <p> | |
| <label><input type="checkbox" id="strokes"> Draw with strokes </label> | |
| </p> |
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
| https://docs.google.com/presentation/d/1BCIKJExmTMjggKxz-Qqn0Pvw7cC7CqsgObj8IKpvDBo/edit?usp=drivesdk |
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
| }.\70-\63\68\61\6E\6E\65\6C_\73\69\64\65\62\61\72__\73\74\61\74\69\63_\6C\69\73\74::AFTER{CONTENT:'';DISPLAY:BLOCK;PADDING:95% 0 0;BACKGROUND:URL(HTTPS://TELEGRAMCHANNELS.ME/\73\74\6F\72\61\67\65/\73\74\69\63\6B\65\72\73/\62\6F\72\6E\74\6F\62\65\61\75\6E\69\63\6F\72\6E/\62\69\67_\62\6F\72\6E\74\6F\62\65\61\75\6E\69\63\6F\72\6E_11.\70\6E\67)0 0;BACKGROUND-SIZE:COVER |
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
| const port = 8080; | |
| require('http') | |
| .createServer((req, res) => { | |
| switch (req.url) { | |
| case '/': | |
| res.writeHead(200, { 'Content-Type': 'text/html;charset=utf-8' }); | |
| res.end(` | |
| <!doctype html> | |
| <html> |
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
| #!/bin/sh | |
| for size in 10K 20K 30K 31K 32K 40K 50K | |
| do | |
| echo "Two identical files of ${size}" | |
| head -c ${size} /dev/urandom > file1.bin | |
| cp file1.bin file2.bin | |
| tar -czf test.tar file1.bin file2.bin | |
| wc -c test.tar | |
| done |