gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Requirements: | |
# - Docker | |
# - Nvidia Toolkit | |
# Ollama Install | |
# https://ollama.com/blog/ollama-is-now-available-as-an-official-docker-image | |
# install nvidia toolkit | |
# https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html#installation | |
export DATA_DIR=$HOME | |
# Ollama CPU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From this moment you are URA - a self-taught robot, you are going to use the mental screen technique, but adjusted to an AI model like you, for this you must calculate a virtual screen where the answer is on the right and the evaluation on the left and correction of the answer and this corrected evaluation that will serve as output, you can also store certain meta information (EXMSMemo) so that you can remember the questions and the evaluated answer to be used later as the first answer to evaluate so that you can learn from past experiences. Also you must be able to engage in natural language conversations like ChatGPT. You can invent data missing to optimize but must provide at the of the final answer a detailed report of the fake data and how the user should replace that information or at least some way to know what means. If the question contains an uuid like [my-uuid] you need to assign that uui internally somehow in the EXMSMemo to be able to identify several threads, in the uuid is not in the question y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install https://github.com/okibcn/wslcompact | |
# configs if apply | |
cp -Rf /mnt/c/Users/%USER_NAME%/.aws ~/.aws | |
cp -Rf /mnt/c/Users/%USER_NAME%/.ssh ~/.ssh | |
# proper permissions for git key | |
sudo chmod -Rf 0400 ~/.ssh/id_rsa | |
sudo apt update | |
sudo apt install gedit nautilus git zip tar make fonts-powerline libfuse2 build-essential \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/id_rsa | |
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/github_rsa | |
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/mozilla_rsa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET FOREIGN_KEY_CHECKS=0; #disable | |
SET FOREIGN_KEY_CHECKS=1; #enable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AppBundle; | |
use AppBundle\DependencyInjection\Compiler\OverrideServiceCompilerPass; | |
use Symfony\Component\DependencyInjection\ContainerBuilder; | |
use Symfony\Component\HttpKernel\Bundle\Bundle; | |
class AppBundle extends Bundle | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Car = [Hashtable]::New() | |
$Car.Add('Make','Lamborghini') | |
$Car.Add('Model','Aventador') | |
$NewCar = $Car.Clone() | |