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
#!/bin/bash | |
#**************************************************************************************************** | |
# _ _ ____ _ | |
# Project ___| | | | _ \| | | |
# / __| | | | |_) | | | |
# | (__| |_| | _ <| |___ | |
# \___|\___/|_| \_\_____| | |
# | |
# Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, et al (et alii, here Jimmy Olano). | |
# |
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
#!/bin/bash | |
# <Guión para respaldar bases de datos en MySQL Community Server 8.0.19> | |
# Copyright (C) <2020> <Jimmy Olano 🇻🇪> | |
# | |
# Este programa es software libre: puedes redistribuirlo y/o modificarlo | |
# bajo los términos de la Licencia Pública General de GNU, publicada por | |
# la Fundación de Software Libre, ya sea la versión 3 de la Licencia, o | |
# (a su elección) cualquier versión posterior. | |
# | |
# Este programa se distribuye con la esperanza de que sea útil, |
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
CULTURE SPEC.CULTURE ENGLISH NAME | |
-------------------------------------------------------------- | |
Invariant Language (Invariant Country) | |
af af-ZA Afrikaans | |
af-ZA af-ZA Afrikaans (South Africa) | |
ar ar-SA Arabic | |
ar-AE ar-AE Arabic (U.A.E.) | |
ar-BH ar-BH Arabic (Bahrain) | |
ar-DZ ar-DZ Arabic (Algeria) | |
ar-EG ar-EG Arabic (Egypt) |
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 python | |
# -*- coding: utf-8 -*- | |
import sys | |
version = sys.version[0] | |
if version == '2': | |
import urllib2 as urllib | |
else: | |
import urllib.request as urllib |
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
#! /bin/sh | |
# Oracle VM VirtualBox | |
# Linux kernel module init script | |
# | |
# Copyright (C) 2006-2015 Oracle Corporation | |
# | |
# This file is part of VirtualBox Open Source Edition (OSE), as | |
# available from http://www.virtualbox.org. This file is free software; | |
# you can redistribute it and/or modify it under the terms of the GNU |
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
# Script para bloquear y desbloquear la escritura en dispostivos usb. | |
# Autor: Francisco Palenzuela Luque @fpalenzuela | |
# Blog: https://aprendizdesysadmin.com/powershell_-contruyendo-nuestro-usb-write-blocker/ | |
# Constantes y variables | |
$RegRutaCompleta = 'hklm:\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies' | |
$RegRuta = 'hklm:\SYSTEM\CurrentControlSet\Control' | |
$ExisteRegistro = Test-Path -path $RegRutaCompleta |
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/python | |
# coding=utf-8 | |
# | |
# Copyright [2017] [Jimmy Olano, Twitter @ks7000] | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
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
<?php | |
header('Content-type: text/html; charset=UTF-8'); | |
header('Content-language: es-ve'); | |
date_default_timezone_set("America/Caracas"); | |
// El verdadero programador CUENTA DESDE CERO | |
if (date("z") == "255"){ | |
echo "¡Feliz Día del Programador y de la Programadora! 🤓 "; | |
}else{ | |
echo "Hoy es un buen día para programar 🤔 ."; | |
} |
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/python | |
#-*-coding:utf-8-*- | |
from datetime import datetime | |
ahora = datetime.now() | |
#Si el año es bisiesto entonces el día 256 es el 12 de septiembre | |
if ( ahora.strftime("%j") == "256" ) : | |
print ("Feliz Día del Programador "+ahora.strftime("%d/%m/%Y")) |
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 sys | |
def factorial(num): | |
'''Return large factorial by Jimmy Olano Sayago | |
(GNU General Public License v3.0) ''' | |
if num<=1: | |
return 1 | |
else: | |
sys.setrecursionlimit(sys.getrecursionlimit()+1) | |
return num * factorial(num - 1) |
NewerOlder