sudo dnf config-manager --add-repo https://pkg.cloudflareclient.com/cloudflare-warp-ascii.repo
sudo dnf install cloudflare-warp
/etc/systemd/resolved.conf
# By default the ssh-agent service is disabled. Configure it to start automatically. | |
# Make sure you're running as an Administrator. | |
Get-Service ssh-agent | Set-Service -StartupType Automatic | |
# Start the service | |
Start-Service ssh-agent | |
# This should return a status of Running | |
Get-Service ssh-agent |
# Download
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
Save these files as ~/.config/systemd/user/some-service-name.*
Run this now and after any modifications: systemctl --user daemon-reload
Try out the service (oneshot): systemctl --user start some-service-name
Check logs if something is wrong: journalctl -u --user-unit some-service-name
Start the timer after this user logs in: systemctl --user enable --now some-service-name.timer
# note that helm tempates are converted into yaml and a kubectl apply is run on the yaml object, ie `helm ls` will not show anything
# TODO move these to config files
settings = {
"start_kind": True,
"preload_images_for_kind": True,
"deploy_metallb": True,
"deploy_ambassador_api": False,
"deploy_ambassador_edge_gateway": False,
#!/bin/bash | |
sudo apt install build-essential texinfo libx11-dev libxpm-dev libjpeg-dev libpng-dev libgif-dev libtiff-dev libgtk2.0-dev libncurses-dev libgnutls28-dev | |
wget http://ftp.gnu.org/gnu/emacs/emacs-27.1.tar.gz | |
tar xvzf emacs-27.1.tar.gz | |
cd emacs-27.1 | |
./configure | |
make |
1C Enterprise
∧ ∧
(*‘ω‘ *)
( )
v v
川
ABAP
Presuming you have access to the Sourcegraph Docker container and the container name is sourcegraph
:
docker container exec sourcegraph psql -U postgres sourcegraph -c 'SELECT id, username, passwd FROM users'
$ID
variable:import React from "react" | |
import { render, Static, Box, Color, Text } from "ink" | |
import BigText from "ink-big-text" | |
import BBox from "ink-box" | |
import TextInput from "ink-text-input" | |
import { Tabs, Tab } from "ink-tab" | |
import _ from "lodash" | |
const purple = [102, 51, 153] | |
const hexPurple = `#663399` |
// TypeScript Fundamentals For JavaScript Developers | |
/* | |
Tutorial for JavaScript Developers wanting to get started with TypeScript. | |
Thorough walkthrough of all the basic features. | |
We will go through the basic features to gain a better understanding of the fundamentals. | |
You can uncomment the features one by one and work through this tutorial. | |
If you have any questions or feedback please connect via Twitter: | |
A. Sharif : https://twitter.com/sharifsbeat | |
*/ |