Javascript is the new cool [^1] and you really need to learn Python to access the new cool [^note]
[^1]: This is the first footnote.
[^note]: This is the second footnote with more paragraphs. Yes yes
```
{ console.log("Hashnode"}
````
Javascript is the new cool [^1] and you really need to learn Python to access the new cool [^note]
[^1]: This is the first footnote.
[^note]: This is the second footnote with more paragraphs. Yes yes
```
{ console.log("Hashnode"}
````
baseURL = "https://camel.apache.org/" | |
languageCode = "en-us" | |
title = "Apache Camel" | |
relativeURLs = true | |
disablePathToLower = true | |
staticDir = ["static", "documentation"] | |
disableKinds = ["taxonomyTerm"] | |
enableRobotsTXT = true | |
timeout = 300000 |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="{{ "apple-touch-icon-57x57.png" | relURL }}"> | |
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ "apple-touch-icon-114x114.png" | relURL }}"> | |
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ "apple-touch-icon-72x72.png" | relURL }}"> | |
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ "apple-touch-icon-144x144.png" | relURL }}"> | |
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="{{ "apple-touch-icon-60x60.png" | relURL }}"> |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta name="viewport" content="width=device-width" /> | |
<title>HTML Result</title> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" | |
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous"> | |
</head> | |
<body> | |
<div class="container body-content"> |
by Tatiana Mac
Before I'll agree to a speaking event, I try to do as much research I can around the event to ensure it aligns with my ethos. I want to share this in case it's helpful to any other speakers.
psql -U postgres
Some interesting flags (to see all, use -h
or --help
depending on your psql version):
-E
: will describe the underlaying queries of the \
commands (cool for learning!)-l
: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)const SlackBot = require('slackbots'); | |
const axios = require('axios') | |
const dotenv = require('dotenv') | |
dotenv.config() | |
const bot = new SlackBot({ | |
token: `${process.env.BOT_TOKEN}`, | |
name: 'inspirenuggets' | |
}) |
This is just a regular paragraph. yen yen yen
const urlSlug = (postTitle) => { | |
let postUrl = postTitle.toLowerCase().split(' '); | |
let postSlug = postUrl.join('-'); | |
return postSlug; | |
} | |
let postTitle = 'Handling Static Forms, The Client-side Way' | |
console.log(urlSlug(postTitle)); |
<form action="/thanks.html" name="Bolaji's form" method="POST" data-netlify="true"> | |
<div class="form-group"> | |
<label>Name:</label> | |
<input type="text" class="form-control" id="name" placeholder="Name"> | |
<div class="invalid-feedback"> | |
Name must be between 2 and 20 characters | |
</div> | |
</div> | |
<div class="form-group"> | |
<label>Email:</label> |