Skip to content

Instantly share code, notes, and snippets.

View frankievalentine's full-sized avatar

Frankie frankievalentine

View GitHub Profile
@frankievalentine
frankievalentine / twentycrm-compose.yaml
Created September 30, 2024 19:15
twentycrm-compose.yaml
services:
change-vol-ownership:
image: ubuntu
user: root
networks:
- twentycrm_default
volumes:
- server-local-data:/tmp/server-local-data
- docker-data:/tmp/docker-data
command: >
@frankievalentine
frankievalentine / openpanel-compose.yaml
Last active September 10, 2024 18:25
openpanel compose
services:
op-geo:
image: observabilitystack/geoip-api:latest
container_name: openpanel-geo
networks:
- openpanel_default
- database
- store
restart: always
op-ch:
@frankievalentine
frankievalentine / starship.toml
Created March 24, 2022 02:07
.config for Starship
# Inserts a blank line between shell prompts
add_newline = false
# Replace the "❯" symbol in the prompt with "➜"
[character] # The name of the module we are configuring is "character"
success_symbol = "[➜](bold green)" # The "success_symbol" segment is being set to "➜" with the color "bold green"
error_symbol = "[➜](red)"
[directory]
@frankievalentine
frankievalentine / .zshrc
Last active May 10, 2023 19:10
current .zshrc
alias cat="bat"
alias l="exa -a -l -g --icons"
alias ls="exa -a"
alias lt="exa --tree --level=2 -a"
alias ip="ipconfig getifaddr en0"
alias publicip="curl ifconfig.me && echo"
alias brewup="brew update; brew upgrade; brew cleanup; brew doctor; brew autoremove;"
alias ohzshupgrade="upgrade_oh_my_zsh"
alias zshconfig="code ~/.zshrc"
@frankievalentine
frankievalentine / App.svelte
Created October 21, 2020 04:52
snowpack-svelte
<script>
export let name;
</script>
<style>
h1 {
text-align: center;
}
</style>
@frankievalentine
frankievalentine / App.svelte
Last active October 21, 2020 05:25
svelte-parcel
<script>
export let name;
</script>
<style>
h1 {
text-align: center;
}
</style>
@frankievalentine
frankievalentine / App.tsx
Last active October 9, 2020 16:33
react-typescript-parcel
import * as React from "react";
import { render } from "react-dom";
import { Hello } from "./Hello";
// import './styles/index.css'
const App = () => {
return (
<div>
{/* make sure Typescript is working by using number type */}
<Hello compiler="Parcel" framework={123} />
@frankievalentine
frankievalentine / .bash_profile
Last active October 10, 2020 02:42
.bash_profile
alias brewup='brew update; brew upgrade; brew prune; brew cleanup; brew doctor'
# Set default editor to vscode
export EDITOR="code"
# Ignore duplicate commands in the history
export HISTCONTROL=ignoredups
# Increase the maximum number of lines contained in the history file
# (default is 500)