Hello Le Wagon 👋
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
# Function to convert natural language queries into Unix commands using Ollama's API | |
# Usage: t2c list files in current folder | |
# Requirements: curl, jq, and Ollama running locally on port 11434 | |
t2c() { | |
# Store the entire command argument as the user's query | |
user_query="$*" | |
# Construct the prompt for the LLM to convert the query to a command | |
# The prompt specifically requests a single executable Unix command |
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
import inspect | |
from typing import Any, Callable, Dict, List, Optional, Union | |
import numpy as np | |
import torch | |
from transformers import CLIPTextModel, CLIPTokenizer, T5EncoderModel, T5TokenizerFast | |
from diffusers.image_processor import VaeImageProcessor | |
from diffusers.loaders import FluxLoraLoaderMixin | |
from diffusers.models.autoencoders import AutoencoderKL |
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
#!/usr/bin/env ruby | |
require 'selenium-webdriver' | |
wd = Selenium::WebDriver.for :remote, url: 'http://10.3.1.7:4444/wd/hub', desired_capabilities: :chrome | |
wd.navigate.to 'https://snipt.net/restrada/python-selenium-workaround-for-full-page-screenshot-using-chromedriver-2x/' | |
# Get the actual page dimensions using javascript | |
# | |
width = wd.execute_script("return Math.max(document.body.scrollWidth, document.body.offsetWidth, document.documentElement.clientWidth, document.documentElement.scrollWidth, document.documentElement.offsetWidth);") |
Hello Le Wagon 👋
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
# Kill spring if its running | |
run "if uname | grep -q 'Darwin'; then pgrep spring | xargs kill -9; fi" | |
#################################### GEMFILE ################################### | |
gsub_file './Gemfile', /(^ $|# .+$)/, '' | |
gsub_file './Gemfile', /^\n/, '' | |
gsub_file './Gemfile', /^ $/, '' | |
gsub_file './Gemfile', /^\n/, '' | |
gsub_file './Gemfile', /^ruby.+$/, "\nruby '#{RUBY_VERSION}'" | |
gsub_file './Gemfile', /^gem 'rails'.+$/, "\n# Base\ngem 'rails', '~> #{Rails.version}'" |
The most general and important advice I can give you is: build things. If you're practicing by yourself, find a problem you want to solve. Be it a page component you're interested in (a navbar that hides on a threshold) or an entire, but simple, app (a downscaled Evernote clone), it's important to have clear goals and to be able to see the results of your work.
I'll suggest only one thing here...:
Run rails new --help
to view all of the options you can pass to rails new
:
$ bin/rails new --help
Usage:
rails new APP_PATH [options]
Options:
-r, [--ruby=PATH] # Path to the Ruby binary of your choice
# Default: /Users/eliot/.rbenv/versions/2.2.0/bin/ruby
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
require 'mail' | |
require 'csv' | |
password = 'AQUI TU CONTRASEÑA' | |
user = "AQUI TU CORREO (gmail)" | |
csv_options = { col_sep: ',', quote_char: '"', headers: :first_row } | |
filepath = 'correos.csv' | |
options = { | |
address: 'smtp.gmail.com', | |
port: 587, | |
user_name: user, |
NewerOlder