Skip to content

Instantly share code, notes, and snippets.

View ioritz1993's full-sized avatar
馃尨
On vacation

Ioritz ioritz1993

馃尨
On vacation
View GitHub Profile
@ioritz1993
ioritz1993 / server.py
Last active January 18, 2025 14:24 — forked from mildred/server.py
Python 3 http.server with PUT support
#!/usr/bin/env python
import argparse
import http.server
import os
class HTTPRequestHandler(http.server.SimpleHTTPRequestHandler):
def do_PUT(self):
path = self.translate_path(self.path)
if path.endswith('/'):
@ioritz1993
ioritz1993 / Colaborar Proyecto GitHub.markdown
Created July 22, 2023 19:08 — forked from BCasal/Colaborar Proyecto GitHub.markdown
Pasos a seguir para colaborar en un proyecto de GitHub

C贸mo colaborar en un proyecto en GitHub

  • Fork del repositorio
  • Clonar el repositorio
  • Actualizar la rama master
  • Crear una rama
  • Hacer los cambios
  • Hacer un Pull Request

Fork del repositorio

@ioritz1993
ioritz1993 / download-all-repos.sh
Last active June 5, 2024 00:17 — forked from vke-code/download-all-repos.sh
New functionality added. The added functionality allows for two different actions, depending on the state of the repository: Cloning non-existent repositories - Pulling existing repositories.
#!/bin/bash
#To run the script in the folder where we want the new repositories from a user to be downloaded, or alternatively, to be updated.
if [ $# -eq 0 ]
then
echo "Usage: $0 <user_name> "
exit;
fi