timedatectl status | grep "Time zone"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2025-01-10 17:00:06.147 [INF] GRPH: Processed channels=0 updates=67 nodes=33 in last 59.999201246s | |
2025-01-10 17:01:06.148 [INF] GRPH: Processed channels=0 updates=109 nodes=0 in last 59.999698732s | |
2025-01-10 17:02:06.148 [INF] GRPH: Processed channels=0 updates=90 nodes=38 in last 1m0.000524585s | |
2025-01-10 17:03:06.148 [INF] GRPH: Processed channels=0 updates=99 nodes=4 in last 59.999054626s | |
2025-01-10 17:04:06.148 [INF] GRPH: Processed channels=0 updates=78 nodes=21 in last 59.999283795s | |
2025-01-10 17:05:06.148 [INF] GRPH: Processed channels=0 updates=75 nodes=58 in last 1m0.000323368s | |
2025-01-10 17:06:06.148 [INF] GRPH: Processed channels=0 updates=70 nodes=17 in last 59.999370151s | |
2025-01-10 17:07:06.148 [INF] GRPH: Processed channels=0 updates=137 nodes=16 in last 59.999786356s | |
2025-01-10 17:08:06.148 [INF] GRPH: Processed channels=0 updates=90 nodes=50 in last 59.999011296s | |
2025-01-10 17:09:06.148 [INF] GRPH: Processed channels=0 updates=92 nodes=0 in last 59.998882544s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo ntpdate -b time.nist.gov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE EXTENSION citext; | |
CREATE DOMAIN email AS citext | |
CHECK ( value ~ '^[a-zA-Z0-9.!#$%&''*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo -u postgres psql | |
psql (14.1 (Ubuntu 14.1-2.pgdg20.04+1)) | |
Type "help" for help. | |
postgres=# \password postgres | |
Enter new password: | |
Enter it again: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://askubuntu.com/questions/1198903/can-not-use-swap-file-on-zfs-files-with-holes/1198916#1198916 | |
sudo zfs create -V 8G -b $(getconf PAGESIZE) -o logbias=throughput -o sync=always -o primarycache=metadata -o com.sun:auto-snapshot=false rpool/swap | |
sudo mkswap -f /dev/zvol/rpool/swap | |
sudo swapon /dev/zvol/rpool/swap | |
# Make the swap persistent after reboot | |
# https://www.digitalocean.com/community/tutorials/how-to-add-swap-space-on-ubuntu-20-04#step-5-making-the-swap-file-permanent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section class="section container"> | |
<div class="card"> | |
<div class="card-image"> | |
<figure class="image is-4by3"> | |
<img | |
src="https://bulma.io/images/placeholders/1280x960.png" | |
alt="Placeholder image" | |
/> | |
</figure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo wget -q -O - https://raw.githubusercontent.com/LedgerHQ/udev-rules/master/add_udev_rules.sh | sudo bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install --save-dev @nuxtjs/style-resources sass-loader node-sass |
NewerOlder