If the appimage fails it's probably because you don't have FUSE installed.
https://github.com/neovim/neovim/wiki/Installing-Neovim#appimage-universal-linux-package
Spanish Tutorial:
// TODO: This obviously doesnt belong here, sorry bros | |
// fix on monday | |
class DialogExample extends StatelessWidget { | |
const DialogExample({super.key}); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar(title: const Text('showDialog Sample')), | |
body: Center( |
// REMOVE MONDAY | |
app.use((req, res, next) => { | |
const start = Date.now(); | |
res.on("finish", () => { | |
const duration = Date.now() - start; | |
console.log(`PROFILER: [${req.method}] ${req.originalUrl} - ${duration}ms`); | |
}); | |
next(); | |
}); |
pip install google-cloud-storage | |
export GOOGLE_APPLICATION_CREDENTIALS="path/to/your-service-account.json" |
import datetime | |
import calendar | |
YEAR = 2023 | |
month = 2 | |
for _ in range(11): | |
num_days = calendar.monthrange(YEAR, month)[1] | |
days = [datetime.date(YEAR, month, day) for day in range(1, num_days + 1)] |
import datetime | |
import calendar | |
YEAR = 2023 | |
month = 2 | |
for _ in range(11): | |
num_days = calendar.monthrange(YEAR, month)[1] | |
days = [datetime.date(YEAR, month, day) for day in range(1, num_days + 1)] |
If the appimage fails it's probably because you don't have FUSE installed.
https://github.com/neovim/neovim/wiki/Installing-Neovim#appimage-universal-linux-package
Spanish Tutorial:
version: "3.8" | |
services: | |
postgres: | |
image: postgres | |
container_name: postgres | |
restart: always | |
environment: | |
POSTGRES_USER: root | |
POSTGRES_PASSWORD: root |
from os import popen, system | |
PRINCIPAL_MONITOR = popen("xrandr --query | grep primary").read().split()[0] | |
class Monitor: | |
def __init__(self, name, side): | |
self.name = name | |
self.side = side |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="main.css" /> | |
</head> | |
<body> | |
<div class="cool red-bg"> | |
<h2>One</h2> | |
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Aliquam culpa | |
reiciendis quod tempora totam in unde ullam necessitatibus molestias |
function includesCaseInsensitive(string: string, stringToSearch: string) { | |
return new RegExp(stringToSearch, "i").test(string); | |
} | |
const hey = includesCaseInsensitive("Follow me on Github!", "github"); | |
console.log(hey); |