I hereby claim:
- I am notblizzard on github.
- I am notblizzard (https://keybase.io/notblizzard) on keybase.
- I have a public key ASCt9mgviCjODEVIilz1P1JC_TdkLJ6C6Rz0PF6A_55pCgo
To claim this, I am signing this object:
| 1 All Too Well | |
| 2 State of Grace | |
| 3 Out of the Woods | |
| 4 Holy Ground | |
| 5 Style | |
| 6 Red | |
| 7 Blank Space | |
| 8 Cruel Summer | |
| 9 Death By a Thousand Cuts | |
| 10 Getaway Car |
I hereby claim:
To claim this, I am signing this object:
| module.exports = { | |
| root: true, | |
| parser: "@typescript-eslint/parser", | |
| plugins: ["@typescript-eslint"], | |
| extends: [ | |
| "eslint:recommended", | |
| "plugin:@typescript-eslint/eslint-recommended", | |
| "plugin:@typescript-eslint/recommended", | |
| "plugin:prettier/recommended", | |
| "plugin:react/recommended", |
| // typescript | |
| interface Person { | |
| name: string; | |
| age: number; | |
| } | |
| const hello = (user: Person): string => { | |
| return `Hello, ${user.name}`!; | |
| }; |
| <VirtualHost *:80> | |
| ServerAdmin ****@gmail.com | |
| ServerName website.com | |
| ServerAlias www.website.com | |
| ErrorLog ${APACHE_LOG_DIR}/error.log | |
| CustomLog ${APACHE_LOG_DIR}/access.log combined | |
| </VirtualHost> |
| const express = require("express"); | |
| const fs = require('fs'); | |
| const app = express(); | |
| // const http = require("http").createServer(app); | |
| const options = { | |
| key: fs.readFileSync("/etc/letsencrypt/live/hummingbirdapp.blue/privkey.pem"), | |
| cert: fs.readFileSync("/etc/letsencrypt/live/hummingbirdapp.blue/cert.pem"), | |
| ca: fs.readFileSync("/etc/letsencrypt/live/hummingbirdapp.blue/chain.pem"), | |
| }; | |
| const https = require("https").createServer(options, app); |
| import requests\n def hello():\n\n print("hello world") |
| import requests\n def hello(): \n\n print("hello world") |
| import requests\n def hello(): \n\n print("hello world") |
| import requests \n def hello(): \t print("hello world") |