- GPG command line tools - https://www.gnupg.org/download/
- Git (Windows only) - https://gitforwindows.org/
- Open Terminal. On windows: Open Git Bash terminal.
##-------------------------- | |
## Terraform: Functions ## | |
##-------------------------- | |
## Open terraform console | |
terraform console | |
####################### | |
## Numeric Functions ## | |
####################### |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> | |
<script src="http://code.jquery.com/jquery.min.js"></script> | |
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.3/socket.io.js" | |
integrity="sha512-jDUVpk2awjMnyrpY2xZguylQVRDeS9kRBImn0M3NJaZzowzUpKr6i62ynwPG0vNS1+NsTk4ji+iznbc5m0ZCKQ==" | |
crossorigin="anonymous" referrerpolicy="no-referrer"></script> |
var assert = function(stmt) { | |
var methods = { | |
equals: { | |
error: function(val) { | |
return val + ' did not equal ' + stmt + '!' | |
}, | |
method: function(val) { | |
return val == stmt; | |
} | |
}, |
curl
to get the JSON response for the latest releasegrep
to find the line containing file URLcut
and tr
to extract the URLwget
to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
# Freelancing Reviews Samples | |
======================================================================= | |
**** | |
======================================================================= | |
## Buyer Reviews to Sellers | |
======================================================================= |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
const express = require("express"); | |
const app = express(); | |
const server = require("http").Server(app); | |
const { v4: uuidv4 } = require("uuid"); | |
const io = require("socket.io")(server); | |
const { ExpressPeerServer } = require("peer"); | |
const url = require("url"); | |
const peerServer = ExpressPeerServer(server, { // Here we are actually defining our peer server that we want to host | |
debug: true, | |
}); |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Simple Bar Chart</title> | |
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<style> | |
.bar:hover { | |
fill: cyan; |