This guide provides a steps for setting up a unified shell chat proxy & client running in a persistent screen session. The following steps are covered:
- Server operating system & packages will be updated.
- Timezone will be updated.
# | |
# NixOS Configuration for Framework Laptop | |
# | |
{ config, lib, pkgs, modulesPath, ... }: | |
{ | |
boot.kernelParams = [ "mem_sleep_default=deep" ]; |
version: "3.3" | |
services: | |
caddy: | |
image: abiosoft/caddy:1.0.3-no-stats | |
container_name: caddy | |
hostname: caddy | |
restart: unless-stopped | |
volumes: |
BEGIN MESSAGE. | |
gh9Xsq7ldiEhLy5 aLNhEfZ1wubClUw vrrmxiiErbTUTr0 tjcHWW6u3vKWB8L | |
oZTopVUoV0A1X7Z 8EKzgxGla9QTCKq 6Xr2MZHgg7Ej4Uq BC8nQhSj4d9Ire0 | |
Gx2JgLDqMCu0rce 2ZonxUvPQOX7jpl nIE5CKFTBAPrRjz wvJwilcSjx5zljR | |
KGvhP4IsKnLortF 1qaHaFcrChM9nTY UnAIO7tiSkCT. | |
END MESSAGE. |
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'` |
package main | |
import ( | |
"bufio" | |
"fmt" | |
"os" | |
"strings" | |
) | |
func main() { |
Verifying my Blockstack ID is secured with the address 1FTKKCiCFQFA4oW9B2pxZpe1BFnxQvWr88 https://explorer.blockstack.org/address/1FTKKCiCFQFA4oW9B2pxZpe1BFnxQvWr88 |
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import sublime_plugin | |
import subprocess | |
from time import sleep | |
import sys | |
cl = lambda line: subprocess.Popen(line, shell=True, stdout=subprocess.PIPE).communicate()[0].strip() | |
log = lambda message: sys.stderr.write("Log: %s\n" % message) |
### Keybase proof | |
I hereby claim: | |
* I am digitalknk on github. | |
* I am digitalknk (https://keybase.io/digitalknk) on keybase. | |
* I have a public key whose fingerprint is 0D61 DE94 BA6E E570 6FC4 F2EE F3FC 5EE9 83E7 BA89 | |
To claim this, I am signing this object: |
from datetime import datetime | |
import urllib2 | |
import urllib | |
import json | |
import os | |
def ajaxRequest(url=None): | |
""" | |
Makes an ajax get request. | |
url - endpoint(string) |