- API: https://github.com/ollama/ollama/blob/main/docs/api.md
- Docker: https://github.com/ollama/ollama/blob/main/docs/docker.md
Warning
Running from a docker container in MacOS M3 with GPUs won't work from Docker
#!/usr/bin/env python3 | |
""" | |
fix_commit_messages.py | |
This script fixes commit messages in a branch to adhere to commitlint rules and a | |
maximum line width for the commit body. | |
It supports two modes: | |
1. Main mode: |
Warning
Running from a docker container in MacOS M3 with GPUs won't work from Docker
I'm passionate about automation and emojis have been used in Git for a while... here are some examples I've been using on my repos based on different emoji automation projects. Mostly from https://www.emojiall.com/en/all-emojis?type=normal.
To search for emojis based on a given keyword, just use https://emojidb.org/done-emojis?user_typed_query=1&utm_source=user_search
@startuml | |
skin rose | |
title Minitwit - Components | |
package viasat.platform.cloud <<Frame>> { | |
class ConfigService | |
class HostService | |
[marcellodesales-aws] | |
aws_access_key_id = AKIA*******F37A | |
aws_secret_access_key = sfZ*****w5m |
/* | |
* Click `Run` to execute the snippet below! | |
*/ | |
import java.io.*; | |
import java.util.*; | |
/* | |
* To execute Java, please define "static void main" on a class | |
* named Solution. |
FULL LANGUAGE DOCS: at Hoogle https://hoogle.haskell.org/
I hereby claim:
To claim this, I am signing this object:
This is a step-by-step guide on how to create a GPG key on keybase.io, adding it to a local GPG setup and use it with Git and Gitlab.
MacOS
: Usehomebrew
Linux
: Useapt-get
,apk
, etc- Windows: Get a better life, replace the entire OS with MacOS or Linux
[user] | |
name = Marcello de Sales | |
email = [email protected] | |
[alias] | |
lol = log --pretty=oneline --abbrev-commit --graph --decorate | |
lg = log --color --graph --pretty=format:'%C(yellow)%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
new = !sh -c 'git log $1@{1}..$1@{0} "$@"' | |
reflog = gitk --all --date-order $(git log -g --pretty=%H) | |
#lostfound = gitk --all --date-order $(git fsck | grep "dangling commit" | awk '{print $3;}') | |
lostfound = !sh -c "git fsck | awk {print $3;}" |