Materials needed:
- Arduino UNO
- Multimeter
- Breadboard
- Jumper wires
- Resistors 220ohm, 10k
- Buzzer
- Button
| <button onclick="copyMarkup()">Copy source!</button> | |
| <script> | |
| function copyMarkup() { | |
| const box = document.createElement('textarea'); | |
| box.style.position = 'absolute'; | |
| box.style.left = '-10000px'; | |
| box.setAttribute('cols', '1000'); | |
| document.body.appendChild(box); | |
| box.value = document.documentElement.innerHTML; |
| const express = require('express'); | |
| const bodyParser = require('body-parser'); | |
| const app = express(); | |
| const port = 7569; | |
| app.use(bodyParser.urlencoded({ extended: false })); | |
| app.post('/', (req, res) => { | |
| const { fileName, contentType, base64 } = req.body; | |
| const content = Buffer.from(base64, 'base64'); |
| const symbol = Zone["__symbol__"]("setTimeout") | |
| const plainTimeout = window[symbol]; | |
| export const runOutsideZone = | |
| (fn, delay) => plainTimeout(fn, delay); |
| **I'm submitting a ...** (check one with "x") | |
| ``` | |
| [ ] bug report | |
| [ ] feature request | |
| [ ] support request => Please do not submit support request here, instead see the [Kendo UI Premium Forums](http://www.telerik.com/forums/kendo-ui) or our [support system](http://www.telerik.com/support) at Telerik.com | |
| ``` | |
| **Reproduction of the problem (bug report only)** | |
| If the current behavior is a bug or you can illustrate your feature request better with an example, please provide the steps to reproduce and if possible a minimal demo of the problem via https://plnkr.co or similar (you can use this template as a starting point: http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5). |
| # Find broken symlinks | |
| find /target/dir -type l ! -exec test -e {} \; -print | |
| # Find and replace | |
| find /some/path -type f -exec sed -i 's/old/new/g' {} \; | |
| # Capture packets on a remote machine | |
| # https://ask.wireshark.org/questions/36872/problem-capturing-remotely-by-running-tshark-on-the-remote-machine-and-piping-it-to-wireshark | |
| ssh server1 'tcpdump -U -w - port not 22' | wireshark -k -i - |
| var random = (function() { | |
| // Implements 32-bit Linear feedback shift register | |
| var lfsr = 0xDEADBEEF; | |
| return function() { | |
| lfsr = ((lfsr >>> 1) ^ (-(lfsr & 1) & 0xD0000001)) >>> 0; | |
| return lfsr; | |
| }; | |
| })(); |
| location /foo { | |
| if ($request_method = 'OPTIONS') { | |
| add_header 'Access-Control-Allow-Origin' '*'; | |
| add_header 'Access-Control-Allow-Methods' 'POST, GET, PUT, DELETE, OPTIONS'; | |
| add_header 'Access-Control-Allow-Headers' '*'; | |
| add_header 'Access-Control-Max-Age' 1728000; | |
| add_header 'Content-Type' 'text/plain charset=UTF-8'; | |
| add_header 'Content-Length' 0; |
I hereby claim:
To claim this, I am signing this object:
| /x/==x |