Skip to content

Instantly share code, notes, and snippets.

View alphanetEX's full-sized avatar
⚒️
Devalator mode

AlphanetEX alphanetEX

⚒️
Devalator mode
View GitHub Profile
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
@alphanetEX
alphanetEX / kernel-discover.sh
Created October 4, 2021 12:16
Verify-kernel-conf
#!/bin/bash
unset kernel_data[6]
unset tegra_version[3]
unset cpu_verstion
Green='\033[0;32m'
Red='\033[0;31m'
Blue='\033[0;34m'
@alphanetEX
alphanetEX / dec_hex_ascii.sh
Created September 29, 2021 05:13
Example of alphabet covert dec to hex in ascii table
dec=97
counter=0
counter_disk=0
cant=0
read -p "Cantidad de discos a Formatear ?: " cant
while [ $counter -lt $cant ]
do
@alphanetEX
alphanetEX / lvm_exec.sh
Created September 21, 2021 06:28
Automatization of LVM Test LAB
#!/bin/bash
receptor=$1
echo $receptor
fdisk_lvm_cmd="n
p
1
#\n
#\n
@alphanetEX
alphanetEX / 3B.py
Created May 5, 2020 01:07
Dado el siguiente array: numeros = [15, 74,110,9,8,1,0,14,78,13,150,4] Mostrar la suma de todos los elementos pares contenidos en el arreglo.
def pair():
numbers = [15,74,110,9,8,1,0,14,78,13,150,4]
counter = 0
acumulator = 0
while counter <= len(numbers) -1:
if numbers[counter] % 2 == 0:
acumulator += numbers[counter]
counter += +1
return str(acumulator)
@alphanetEX
alphanetEX / 2B.PY
Created May 5, 2020 00:34
Crear una función que pida el ingreso de 10 números y retorne su promedio.
def numbers():
counter = 0
acumulator = 0
while counter < 10:
number = float(input("igrese el {} numero: ".format(counter+1)))
acumulator += number
counter += +1
return acumulator / counter
@alphanetEX
alphanetEX / 1B.py
Created April 27, 2020 11:45
Entrega 1B
def discount(price, result):
if result == 0:
return price - (price * 0.1)
elif result == 1:
return price - (price * 0.05)
else:
return price + (price * 0.15)
result = int(input(" pagar: \nefectivo: 0\ndebito: 1\ncredito: 2 (monto adicional del 15%)\n: "))
price = float(input("ingrese el precio del producto: "))
@alphanetEX
alphanetEX / ejer_01.py
Created April 14, 2020 19:50
Realizar un programa que solicite el ingreso de 3 números y mostrar el mayor de ellos.
counter = 0
numbers = [0 , 0 , 0]
while counter < 3:
numbers[counter]= float(input('insert the {} number: '.format(counter +1)))
counter +=1
print('the highest number is : ', max(numbers))
# OTHER LOGIC IF YOUR NOT PERMIT USE MAX FUNCTION
@alphanetEX
alphanetEX / ejer_02.py
Created April 14, 2020 19:47
Solicitar el ingreso de números mientras la suma de ellos no supere los 500. Al final mostrar la suma de los múltiplos de 3.
acumulator = 0
module_3 = 0
while acumulator <= 500:
number = float(input('insert any number: '))
if number % 3 == 0.0:
module_3 += number
else:
pass
acumulator += number;
<!--area de registro y de atencion -->
<div>
<div class="col-lg-6">
<div class="alert alert-success" *ngIf="status_backend =='success'"> bienvenido
</div>
<div class="alert alert-danger" *ngIf="status_backend == 'failed'"> No es posible iniciar secion