New pages
From John Freier
- 15:42, 28 May 2024 Python pdb (hist) [1,418 bytes] Jfreier (Talk | contribs) (Created page with "To debug python applications use the library pdb. Add the following to the top of your file. import pdb pdb.set_trace() And then just add the following to your command....")
- 11:20, 29 February 2024 Osx-users (hist) [182 bytes] Jfreier (Talk | contribs) (Created page with "Add a user to a group sudo dseditgroup -o edit -a john -t user agroup Create a group sudo dscl . create /Groups/dev List items about a group. dscacheutil -q group -a n...")
- 11:28, 3 October 2023 Plsql first records (hist) [97 bytes] Jfreier (Talk | contribs) (Created page with "To fetch the first 10 records from a result. SELECT * FROM table_a FETCH FIRST 1 ROW ONLY;")
- 13:49, 2 May 2023 Python pytest (hist) [383 bytes] Jfreier (Talk | contribs) (Created page with "To run tests in a specific dir pytest path/to/dir To run tests in a specific file pytest path/to/test_file.py To run a specific test in a file pytest path/to/test_file...")
- 16:26, 19 January 2023 Python pyenv (hist) [535 bytes] Jfreier (Talk | contribs) (Created page with "PyEnv is a small app that helps manage different python versions in the system. https://github.com/pyenv/pyenv == Install a Python version == To list all the available versi...")
- 12:52, 17 January 2023 Containerfile (hist) [493 bytes] Jfreier (Talk | contribs) (Created page with "Containerfile and Dockerfile are interchangeable for the most part. == ENV == To set an environment variable. ENV EXAMPLE=/opt/example ENV APP_PROFILE=dev")
- 13:25, 5 January 2023 Nodejs (hist) [930 bytes] Jfreier (Talk | contribs) (Created page with "== How to use Require == Require will cache objects after it calls them, kind of like a singleton pattern. To build out an object that require can grab there are a couple of...")
- 10:29, 5 January 2023 Dynamodb (hist) [7,212 bytes] Jfreier (Talk | contribs) (Created page with "DynamoDB is an AWS product that has a stand alone app for development but is really suppose to be built out in AWS where they handle the administration/OPS. This is a NoSQL d...")
- 09:30, 24 August 2022 Kafka (hist) [862 bytes] Jfreier (Talk | contribs) (Created page with " == Run Kafka in Docker ==")
- 10:48, 22 June 2022 Linux arch install (hist) [1,929 bytes] Jfreier (Talk | contribs) (Created page with "Here are my steps. 1. Boot in to Arch ISO. 2. Update date time. timedatectl set-ntp true 3. Setup Partitions 3.a Use lsblk or fdisk -l to find the path of the harddisk....")
- 09:21, 3 June 2022 Python requirements (hist) [294 bytes] Jfreier (Talk | contribs) (Created page with "Python Requirements These are python dependencies that may need to be installed. To install these dependencies you can use an application called pip. Install pip insta...")
- 09:08, 3 June 2022 Python ve (hist) [266 bytes] Jfreier (Talk | contribs) (Created page with "Python Virtual Environments A python virtual environment is a way of setting up a python project in a environment sandbox. Create the environment python3 -m venv env Acti...")
- 14:05, 24 May 2022 Linux cert install (hist) [533 bytes] Jfreier (Talk | contribs) (Created page with "If you having trouble with cert issues in Alpine Linux try the following. Copy the perm file to the following directory. cp ./my_cert.pem /usr/local/share/ca-certificates/...")
- 18:28, 18 May 2022 Osx-nginx (hist) [324 bytes] Jfreier (Talk | contribs) (Created page with "To install Nginx on OSX. 1. Download Nginx. 2. Extract 3. Run the following ./configure make sudo make install It will install Nginx to /usr/local/nginx Nginx will de...")
- 13:56, 28 April 2022 Helm (hist) [659 bytes] Jfreier (Talk | contribs) (Created page with "Helm is a package manager for Kubernetes. Process a single manifest and see the results. helm template -s templates/role/atlas-publish-service.yaml ap-project")
- 09:04, 20 April 2022 Osx-access-issue (hist) [727 bytes] Jfreier (Talk | contribs) (Created page with "If you have an application that keeps asking for the root password, you can just give the app access. These steps were taking from another suggestion for VPN Global protect k...")
- 09:06, 11 April 2022 Kubectl (hist) [1,409 bytes] Jfreier (Talk | contribs) (Created page with "Kubectl is an application that interacts with Kubernetes clusters.")
- 10:58, 6 April 2022 Podman (hist) [4,832 bytes] Jfreier (Talk | contribs) (Created page with "'''List Images''' podman images '''List running images''' podman ps '''Pull an image''' podman pull docker.io/library/httpd '''Run an image''' podman run -dt -p 8080:80...")
- 16:23, 4 April 2022 Minikube (hist) [930 bytes] Jfreier (Talk | contribs) (Created page with "To pull images from local docker environment. eval $(minikube docker-env) Also we need to set the ImagePullPolicy to Never in order to use local docker images.")
- 14:39, 4 April 2022 Kubernetes (hist) [2,310 bytes] Jfreier (Talk | contribs) (Created page with " == Configurations YAML File == ConfigMap # ConfigMap Configuration - kind: ConfigMap apiVersion: v1 metadata: name: app-config namespace: app-ns...")
- 14:31, 4 April 2022 Buildah (hist) [1,129 bytes] Jfreier (Talk | contribs) (Created page with "List all images buildah images")
- 14:29, 4 April 2022 Openshift (hist) [770 bytes] Jfreier (Talk | contribs) (Created page with "RedHat OpenShift This will process a Kubernetes template with a param file. oc process -f templates/template.yaml --param-file=parameters/dev.yaml --ignore-unknown-paramete...")
- 12:52, 4 April 2022 Iac (hist) [41 bytes] Jfreier (Talk | contribs) (Created page with "Infrastructure As Code Docker")