Skip to content

Instantly share code, notes, and snippets.

View rebcesp's full-sized avatar
馃幆
Focusing

rebcesp

馃幆
Focusing
View GitHub Profile
@rebcesp
rebcesp / sysinfo.java
Last active December 7, 2018 11:52
info del sistema
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/* CONCEPTO: infosystem / execProcess / runas?
* AUTOR: REBCESP
* 2018
*/
public class systeminfo {
@rebcesp
rebcesp / scriptBase64.py
Last active November 12, 2018 17:28
scriptbase64Converter
#!/usr/bin/env python
#Script-Convierte Texto a Base64 y Viceversa
#by rebcesp
import base64
import codecs
inputOpcion= input("Selecciona 1 si quieres convertir texto a base64 o 2 si es viceversa\n")
if int(inputOpcion)==1 or int(inputOpcion)==2: