Skip to content

Instantly share code, notes, and snippets.

View EsteveSegura's full-sized avatar
❄️
Focusing

Esteve Segura EsteveSegura

❄️
Focusing
View GitHub Profile
@EsteveSegura
EsteveSegura / questions_vet_minified.csv
Created May 15, 2024 23:41
questions_vet_minified
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 9.
Question,Response
"What's your clinic's operating hours?","Our clinic is open from Monday to Saturday, from 07:00 AM to 09:00 PM."
"What time do you open on Saturdays?","We are open on Saturdays from 07:00 AM to 09:00 PM."
"Can I visit the clinic on Sunday?","Our clinic is closed on Sundays. We are open from Monday to Saturday, from 07:00 AM to 09:00 PM."
"What animals do you treat?","We treat terrestrial pets only. Unfortunately, we do not handle aquatic animals or horses at the clinic."
"Do you provide services for horses?","For horses, we offer a mobile veterinary service. Our vet can travel to your location to provide the necessary care."
"Can you treat my goldfish?","We currently do not treat aquatic animals. Our services are limited to terrestrial pets."
"Are you open on holidays?","Our holiday hours may vary. Please contact us closer to the date to confirm our hours of operation."
"Do you treat exotic pets?","We primarily treat common terrestrial pets such as dogs, cats, rabbits, and small mammals. Ple
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 9.
Question,Response
"What's your clinic's operating hours?","Our clinic is open from Monday to Saturday, from 07:00 AM to 09:00 PM."
"What time do you open on Saturdays?","We are open on Saturdays from 07:00 AM to 09:00 PM."
"Can I visit the clinic on Sunday?","Our clinic is closed on Sundays. We are open from Monday to Saturday, from 07:00 AM to 09:00 PM."
"What animals do you treat?","We treat terrestrial pets only. Unfortunately, we do not handle aquatic animals or horses at the clinic."
"Do you provide services for horses?","For horses, we offer a mobile veterinary service. Our vet can travel to your location to provide the necessary care."
"Can you treat my goldfish?","We currently do not treat aquatic animals. Our services are limited to terrestrial pets."
"Are you open on holidays?","Our holiday hours may vary. Please contact us closer to the date to confirm our hours of operation."
"Do you treat exotic pets?","We primarily treat common terrestrial pets such as dogs, cats, rabbits, and small mammals. Ple
@EsteveSegura
EsteveSegura / pseudoRNG.js
Created December 21, 2023 00:42
PseudoRNG
class LinearRadGen{
constructor(seed) {
this.a = 1103515245;
this.c = 12345;
this.m = Math.pow(2,32);
this.seed = seed;
}
next() {
this.seed = (this.a * this.seed + this.c) % this.m;
@EsteveSegura
EsteveSegura / README.md
Created November 24, 2023 11:39
Chayane approve - meme creator
2g1c
2 girls 1 cup
acrotomophilia
alabama hot pocket
alaskan pipeline
anal
anilingus
anus
apeshit
arsehole
@EsteveSegura
EsteveSegura / SwearWordsList.txt
Created December 30, 2022 21:10
Swear Words List
cheesehead
whitepower
luckycammeltoe
illegal
slopies
cock-head
mothafuckings
pee
twunt
boink
@EsteveSegura
EsteveSegura / proxy.js
Created June 28, 2022 18:02
serverProxy
const net = require("net");
const server = net.createServer();
server.on("connection", (clientToProxySocket) => {
console.log("Client connected to proxy");
clientToProxySocket.once("data", (data) => {
let isTLSConnection = data.toString().indexOf("CONNECT") !== -1;
let serverPort = 80;
let serverAddress;
hey
@EsteveSegura
EsteveSegura / discordAuth.js
Created August 12, 2020 20:45
oauth discord
const express = require('express');
const btoa = require('btoa');
const fecth = require('node-fetch');
const app = express();
const idDiscord = 'xxxxxxxxxxxxxxxx';
const secretDiscord = 'xxxxxxxxxxxxxxxx';
const redirect = 'http://localhost:3000/callback';
@EsteveSegura
EsteveSegura / Montecarlo.js
Created July 20, 2020 16:12
calculate pi
let r = 5;
let points_total = 0;
let points_inside = 0;
while (1) {
points_total++;
let x = Math.random() * r * 2 - r
let y = Math.random() * r * 2 - r