By default the model files are stored:
- Windows:
C:\Users%username%.ollama\models
- Linux:
/usr/share/ollama/.ollama/models
- macOS:
~/.ollama/models
#!/bin/sh | |
echo "#############################################################################" | |
echo "# Git Pre-Commit hook #" | |
echo "# This is a pre-commit Git hook to update a WordPress deployment #" | |
echo "# Created by Wesley Gonçalves <[email protected]> #" | |
echo "# https://gist.github.com/WesleyGoncalves/fc9657bf77bf8162ba84a4d47dfed0a6 #" | |
echo "# version: 1.0.0 #" | |
echo "#############################################################################" | |
ROOT=. |
<?php | |
/** | |
* Test getting properties/attributes from object/class. | |
* | |
* It considers the following characteristics: | |
* visibility: public, protected, private | |
* abstraction: "normal", static, magic | |
* default value: with or without initial value | |
* updated value: whether or not its initial value is changed |
# OS and IDEs | |
.DS_Store | |
Thumbs.db | |
UserInterfaceState.xcuserstate | |
$RECYCLE.BIN/ | |
*.code-workspace | |
*.sublime-project | |
*.sublime-workspace | |
/.idea | |
/.vscode |
vsc: git | |
format: md | |
issue_tracker_pattern: https://github.com/<user-name>/<repo-name>/issues/ | |
break: "# CHANGELOG" | |
output_file_name: "CHANGELOG.md" | |
message_groups: | |
Features: | |
- feat | |
Fixed: | |
- fix |
# <type>[(optional scope)]: (If applied, this commit will...) <subject> (Max 50 char) | |
# |<---- Using a Maximum Of 50 Characters ---->| | |
# Explain why this change is being made | |
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->| | |
# Provide links or keys to any relevant tickets, articles or other resources | |
# Example: Github issue #23 |
/** | |
* Visual Studio Code settings.json file | |
* Reference: https://code.visualstudio.com/docs/getstarted/settings | |
* | |
* You can download this file | |
* directly to your project from the command-line | |
* curl -O https://gist.githubusercontent.com/WesleyGoncalves/4369bcbc8dd2075f482d08695e8cad90/raw/settings.json | |
* | |
* SOME OTHER OPTIONS: | |
* # Interface |
# EditorConfig is awesome: http://EditorConfig.org | |
# 1st version comes from a Gist by @avandrevitor [here](https://gist.github.com/avandrevitor/b917770334af3a43cf8c489f93287a84) | |
# | |
# Extended version is available in [WesleyGoncalves' GitHub Gist](https://gist.githubusercontent.com/WesleyGoncalves/ae64d95f663a15d8df455d1f0e5f7687) | |
# | |
# Be aware that: | |
# > Comments should go in individual lines, **we are not sure whether appending comments may cause issues**. | |
# Emphasis added. [link](https://github.com/editorconfig/editorconfig/wiki/Syntax) | |
# | |
# |
/** | |
* Sizes of data types and pointers in C | |
* \author Wesley Gonçalves (@wesleygoncalves) | |
* | |
* You can download this file | |
* directly to your project from the command-line | |
* curl -O https://gist.githubusercontent.com/WesleyGoncalves/b914272d146917db37c6937cc2643064/raw/894f67d5e98083281d87a7880da7d04455b2105f/datatype_sizes.c | |
*/ | |
#include <stdio.h> |