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 | |
# | |
# 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
# 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
#! /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
#!/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
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
#!/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
#!/bin/bash | |
#**************************************************************************************************** | |
# _ _ ____ _ | |
# Project ___| | | | _ \| | | |
# / __| | | | |_) | | | |
# | (__| |_| | _ <| |___ | |
# \___|\___/|_| \_\_____| | |
# | |
# Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, et al (et alii, here Jimmy Olano). | |
# |
OlderNewer