NB: The cloud is not the same thing as the internet
- Cost
- Convenience
| {"id": "378e548e7e8f25418c1876e83f4ee3f121caf85851f74f595ee0ff53692cdd7078e0b9aba9eb2474dd26a9e909c651a33c2e9012cf1cb58b311651829c5b1762"} |
| {"id": "378e548e7e8f25418c1876e83f4ee3f121caf85851f74f595ee0ff53692cdd7078e0b9aba9eb2474dd26a9e909c651a33c2e9012cf1cb58b311651829c5b1762"} |
| {"id": "378e548e7e8f25418c1876e83f4ee3f121caf85851f74f595ee0ff53692cdd7078e0b9aba9eb2474dd26a9e909c651a33c2e9012cf1cb58b311651829c5b1762"} |
ToDo:
Done with Links and PR hashes
I recently had an opportunity to use the Pandoc Universal Document Converter in a project, I needed to run a PDF shell script to output the PDF version of a document, the codebase was already set up with Pandoc using LaTex to convert to a PDF file, this means I had to set up Pandoc and LaTex on my Mac, I faced some errors while trying to run the shell script, so after I solved this errors and outputted the PDF file, I thought to share my experience, and here we go;
| {"id": "4e3a6f0b63beed1e147f30d5c366dd54eac2e22438a4c4ec06e13953e41cdb875556670e2a0923ccc9c091b8688b13d683a52a021ba1dde4c795fdd210022ba0"} |
| pragma solidity ^0.5.11; | |
| contract HelloWorld{ | |
| string public message; | |
| function setMessage (string memory newMessage) public { | |
| message = newMessage; | |
| } | |
| const axios = require("axios") | |
| const getCatFact = async (req, res) => { | |
| try{ | |
| const url = "https://cat-fact.herokuapp.com/facts/random?animal" | |
| const response = await axios.get(url) | |
| const facts = response.data | |
| console.log(facts) | |
| res.json( |
var assert = require('assert'); var expect = require('chai').expect;
describe("Today", function(){ it("today's date", function(){ expect (new Date); });