Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.
Avoid being a link dump. Try to provide only valuable well tuned information.
Neural network links before starting with transformers.
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
| # Run a python script using FB Prophet in a Docker container | |
| # Build image: docker build -f Dockerfile-Debian -t forecast:R1 . | |
| FROM python:3.4.6-wheezy | |
| MAINTAINER Stefan Proell <[email protected]> | |
| RUN apt-get -y update && apt-get install -y \ | |
| python3-dev \ | |
| libpng-dev \ | |
| apt-utils \ |
| 1 - Create a *private* GitHub/Bitbucket or similar git repo. Here I assume the repo is: | |
| https://github.com/calkan/bash_history.git | |
| 2 - Create .history directory and initialize it for the repo: | |
| mkdir $HOME/.history | |
| cd $HOME/.history | |
| git init | |
| touch README.md |
| # Hack for Capybara to use SSL connections using selenium. | |
| # | |
| ### Usage: | |
| # Require this from rails_helper.rb | |
| # | |
| ### Steps to generate a SSL certificate on a Linux box: | |
| # 0. Starting from 'Rails.root' | |
| # 1. Generate private key. Type in some password. | |
| # $ openssl genrsa -des3 -out private.key 4096 | |
| # 2. Generate certificate sign request |
| def select2 text, options | |
| page.find("#s2id_#{options[:from]} a").click | |
| find(:xpath, "//body").find("input.select2-input").set(text) | |
| page.execute_script(%|$("input.select2-input:visible").keyup();|) | |
| find(:xpath, '//body').find('ul.select2-results li', text: text).click | |
| end |
| --- | |
| - name: install rb-installer | |
| action: shell curl https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash | |
| - name: update PATH in ~/.bash_profile for rb-env | |
| action: lineinfile dest=/home/$user/.bash_profile line=export\ PATH="$HOME/.rbenv/bin:$PATH" regexp=PATH.*rbenv | |
| - name: add rb-env init to ~/.bash_profile | |
| action: lineinfile dest=/home/$user/.bash_profile line='eval "$(rbenv init -)"' regexp=eval.*rbenv | |