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
| select * | |
| from table_name | |
| where to_tsvector(table_name::text) @@ to_tsquery('full-text-query'); |
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
| var fs = require('fs') | |
| var codeBlockOne = fs.readFileSync('code-block-1.txt', 'utf-8') | |
| var codeBlockTwo = fs.readFileSync('code-block-2.txt', 'utf-8') | |
| var blocks = [codeBlockOne, codeBlockTwo] | |
| blocks.forEach((block, i) => { | |
| fs.writeFileSync('highlighted-block-' + i + '.txt', highlight(block)) | |
| }) |
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
| // sass-watch.js | |
| var watcher = require('wsk').watcher; | |
| var watchGroup = { | |
| serviceName: 'sass', | |
| path: 'src/css/*.scss', | |
| events: [ | |
| { | |
| type: 'change', |
test arrow ⇒
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> | |
| <meta charset="utf-8"> | |
| <style> | |
| path { | |
| fill: none; | |
| stroke: #000; | |
| stroke-width: 10px; | |
| } |
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> | |
| <meta charset="utf-8"> | |
| <style> | |
| path { | |
| fill: none; | |
| stroke: #000; | |
| stroke-width: 10px; | |
| } |
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> | |
| <meta charset="utf-8"> | |
| <style> | |
| path { | |
| fill: none; | |
| stroke: #000; | |
| stroke-width: 10px; | |
| } |
Double open: “
Double close: ”
Single open: ‘
Single close: ’
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
| <body> | |
| <script src="https://wzrd.in/standalone/buffer"></script> | |
| <script src="https://unpkg.com/dbf@latest/dbf.js"></script> | |
| <script src="index.js"></script> | |
| <h2 style="font-family:Helvetica;">Click this to download a broken dbf</h2> | |
| <button onclick="downloadDbf()">download</button> |