Skip to content

Instantly share code, notes, and snippets.

View ShortEmperor's full-sized avatar

Fabricio Escalante ShortEmperor

View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct Nodo
{
char value;
int frequency;
struct Nodo *next;
// Archivos.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <conio.h>
#include <Windows.h>
using namespace std;
#include <iostream>
#include <cstdio>
#include <cctype>
#include <cstdlib>
#include <conio.h>
#include <ctime>
#include <cstring>
#include <windows.h>
using namespace std;
#include <iostream>
#include <stdlib.h>
using namespace std;
class BankAccount{
private:
long int accountNumber;
long int clientNumber;
double currentBalance;
float annualInterest = .10;
// Libraries
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <windows.h>
using namespace std;
void position(int i, int j){ // Function to position the cursor (Only works in windows)
COORD coord;
@ShortEmperor
ShortEmperor / complex.cpp
Created February 22, 2022 17:14
practica 1.5
#include <iostream>
using namespace std;
int main() {
srand(time(NULL));
int complex[7][20][6];
int sum;
double avgFloor, avgBuilding;
/* Just a simple code, I just wanted to try the language
*/
#include <iostream>
using namespace std;
int main(){
int op;
int num1;
int num2;
int result = 0;
#include <iostream>
using namespace std;
int main(){
int a;
int b;
int sum;
cout << "Welcome to the CPP calc!"<<endl<<"Please, type the first number: ";
cin >> a;
cout <<a<< endl<<"Type the second number: ";
def decToBin():
Dec = int(input("Decimal number: "))
print(int(bin(Dec)[2:]))
def binToDec():
binar = int(input("Binary number: "))
#!/usr/bin/python
"""
This program is just a small program to shorten brute force sessions on hydra :)
But to be more satisfying results of the brute force. You better interact directly with hydra,
without having to use this black hydra console first :').
If you find any errors in running our program. Can chat via facebook :).
Hydra is need for the process of this program :).
"""
import sys