Skip to content

Instantly share code, notes, and snippets.

View igmarin's full-sized avatar
🏠
Working from home

Ismael Marín igmarin

🏠
Working from home
View GitHub Profile
@igmarin
igmarin / proxy.py
Created March 25, 2026 18:04
Proxy between Cursor and Ollama
from flask import Flask, request, Response
import requests
import json
app = Flask(__name__)
OLLAMA_URL = "http://localhost:11434/v1"
def forward(path, body):
try:
@igmarin
igmarin / rails_exercise.md
Created January 4, 2024 20:15
Interview Exercise2

Ruby on Rails Exercise for Interview

Task Description:

In this exercise, you are required to create a simple Ruby on Rails API endpoint. This task is designed to assess your knowledge of Rails routing, controllers, and basic data handling.

Duration:
20 minutes

Objective:

@igmarin
igmarin / ruby_exercise.md
Last active January 4, 2024 20:15
Interview Exercise1

Instructions

Your task is to convert a number into a string that contains raindrop sounds corresponding to certain potential factors. A factor is a number that evenly divides into another number, leaving no remainder. The simplest way to test if a number is a factor of another is to use the modulo operation.

The rules of raindrops are that if a given number:

  • has 3 as a factor, add 'Pling' to the result.
  • has 5 as a factor, add 'Plang' to the result.
  • has 7 as a factor, add 'Plong' to the result.
  • does not have any of 3, 5, or 7 as a factor, the result should be the digits of the number.
@igmarin
igmarin / guess_game.rb
Last active August 29, 2015 14:12
This a Guess Game in Ruby just for fun and taking the Chap1 in Head First Ruby as a reference :)
class GuessGame
GUESS = 10
def initialize(player_name)
@player_name = player_name
@number = generate_number
@attempts = 1
play
end
def try_to_guess