in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
// ==UserScript== | |
// @name Perplexity.ai Limits Overlay (Dark Mode, Draggable) | |
// @namespace http://tampermonkey.net/ | |
// @version 2.0 | |
// @description Overlays various limit values on Perplexity.ai main and search pages, updates on submit | |
// @match https://www.perplexity.ai/ | |
// @match https://www.perplexity.ai/search* | |
// @grant GM_setValue | |
// @grant GM_getValue | |
// ==/UserScript== |
git clone https://github.com/stitionai/devika.git | |
conda create -n devika python=3.10 | |
conda activate devika | |
which python | |
/usr/local/anaconda3/envs/devika/bin/python -m pip install -r requirements.txt | |
playwright install --with-deps | |
npm install | |
bun run dev | |
open new terminal | |
conda activate devika |
in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
Packer
Packer is used to build image from a base image, perform provisions and store (commit) the final image.
We use provisioners and Packer templates to do the actual work to create the final image.
We use Ansible for provisioning.
PS G:\> Get-Item *; Write-Host ""; Get-ChildItem -Recurse . -Name 'md5s.txt' | %{Get-Content $_} | |
Directory: G:\ | |
Mode LastWriteTime Length Name | |
---- ------------- ------ ---- | |
d---- 2/14/2015 4:46 PM DRIZZLECHAIR | |
d---- 2/14/2015 7:11 PM lm_alpha-numeric-symbol32-space | |
d---- 2/14/2015 7:49 PM md5_loweralpha-numeric_1-8 | |
d---- 2/14/2015 9:58 PM md5_mixalpha-numeric_1-7 |
# Ubuntu 14.04 don't have nsenter - the straight forward way required me to install build tools and etc. | |
# I preferred to keep the system clean and install nsenter in a container and then copy the command to the host | |
# Note - its also possible to run nsenter from a container (didn't tried) https://github.com/jpetazzo/nsenter | |
# start a container | |
docker run --name nsenter -it ubuntu:14.04 bash | |
## in the docker | |
apt-get update | |
apt-get install git build-essential libncurses5-dev libslang2-dev gettext zlib1g-dev libselinux1-dev debhelper lsb-release pkg-config po-debconf autoconf automake autopoint libtool |
#!/bin/bash | |
# Creates a bootable ISO from CoreOS' PXE images. | |
# Also adds a run script to the OEM partition and converts the ISO so it can boot from USB media. | |
# Based heavily off https://github.com/nyarla/coreos-live-iso - Thanks Naoki! | |
set -e | |
# Default configurations | |
SYSLINUX_VERSION="6.02" |
Hi there!
The docker cheat sheet has moved to a Github project under https://github.com/wsargent/docker-cheat-sheet.
Please click on the link above to go to the cheat sheet.
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |