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
#c1b3rh4ck's .bashrc. | |
#All the alias below are not just mine,but they're pretty useful, | |
#if you liked just use it. | |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in |
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
#include <stdio.h> | |
#include <conio.h> | |
#include <math.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
//Una funcion por cada programa, no se necesita argumentos. | |
void salario(); | |
void calculoareas(); | |
void Operaciones(); |
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> | |
$(document).ready( | |
function() { | |
$('#pubadv-accept').on('click', function(){ | |
$('#pubadv').hide(); | |
}); | |
setTimeout(checkAds, 1000); | |
} | |
); |
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 | |
# | |
# Cygwin packages | |
# | |
packages=( | |
curl | |
cygutils | |
grep |
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
#include <iostream> | |
#include <algorithm>//min function | |
using namespace std; | |
int main(){ | |
int n,suma; //tamaño del vector | |
cout<<"Inserte Tamaño para crear el Vector: \t"; | |
cin>>n; //almacenamos las n posiciones del vector. | |
int array[n]; //creamos el vector de n posiciones. |
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
#include <iostream> | |
#include <stdlib.h> | |
using namespace std; | |
int primer_digito; | |
int main(){ | |
int n,maximo=0,posicion=0; //tamaño del vector | |
cout<<"Inserte Tamaño para crear el Vector: \t"; | |
cin>>n; //almacenamos las n posiciones del vector. | |
int array[n],ultimodig[n]; //creamos el vector de n posiciones. |
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
" Based on https://github.com/amix/vimrc/blob/master/vimrcs/basic.vim | |
set nocompatible | |
filetype off | |
set wildmenu | |
set wildignore=*.o,*~,*.pyc | |
set hid | |
set ignorecase |
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
#include <bits/stdc++.h> | |
#define fast ios_base::sync_with_stdio(false);cin.tie(NULL); | |
using namespace std; | |
long long fibonacci(int n); | |
int main(){ | |
fast; | |
int x;cin>>x; | |
cout<<fibonacci(x)<<endl; |
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
July 29 2011 | |
Dear Client | |
The pentest in your area will describe the issues for wireless networks in near area's,also the | |
implementation and testing will be done by hector Jimenez for simple pourpouses of study ,any malicious | |
activity or choice won't be part of pentester,H owever Law 1273 of 2009 The Colombian Republic Stablish: | |
"Articulo 1 ": | |
ARTÍCULO 269A. ACCESO ABUSIVO A UN SISTEMA INFORMÁTICO. |
OlderNewer