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
| /* ******************************************************************************************* | |
| * TAILWIND.CSS | |
| * DOCUMENTATION: https://tailwindcss.com/ | |
| * | |
| * Original file can be seen here: https://github.com/LeCoupa/awesome-cheatsheets/blob/master/frontend/tailwind.css | |
| * ******************************************************************************************* */ | |
| /* | |
| * Available breakpoints | |
| * -------------------- |
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
| <html style="color:green;" lang="en"> <head> <title>Getting Started with Api2Pdf.com</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.min.css" /> </head> <body> <div class="container"> <div class="row justify-content-md-center text-center"> <img src="https://www.api2pdf.com/wp-content/themes/api2pdf/assets/images/logo.png" /> </div> <div class="page-header"> <h2> Quick Start Guide</h2> </div> <p class="lead"><a href="https://www.api2pdf.com/documentation">REST API</a> | <a href="https://pypi.org/project/api2pdf/">Python SDK</a> | <a href="https://www.nuget.org/packages/Api2Pdf">.NET SDK</a></p> <h3>What is Api2Pdf.com?</h2> <p>Api2Pdf.com is a REST API for instantly generating PDF documents from HTML, URLs, Microsoft Office Documents (Word, Excel, Powerpoint), and images. The API also supports merge / concatenation of two or more PDFs. Api2Pdf is a wrapper for popular libraries such as <strong>wkhtmltopdf</strong>, <strong>Headless Chrome</stron |
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://blockchain.info/rawaddr/$bitcoin_address | |
| { | |
| "hash160":"660d4ef3a743e3e696ad990364e555c271ad504b", | |
| "address":"1AJbsFZ64EpEfS5UAjAfcUG8pH8Jn3rn1F", | |
| "n_tx":17, | |
| "n_unredeemed":2, | |
| "total_received":1031350000, | |
| "total_sent":931250000, | |
| "final_balance":100100000, |
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
| pip demo |
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
| // This is from my comment here: http://wolfram.kriesing.de/blog/index.php/2008/javascript-remove-element-from-array/comment-page-2#comment-466561 | |
| /* | |
| * How to delete items from an Array in JavaScript, an exhaustive guide | |
| */ | |
| // DON'T use the delete operator, it leaves a hole in the array: | |
| var arr = [4, 5, 6]; | |
| delete arr[1]; // arr now: [4, undefined, 6] |