This file contains hidden or 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
function Invoke-KNCreds | |
{ | |
[CmdletBinding(DefaultParameterSetName="HumptyDumpty")] | |
Param( | |
[Parameter(Position = 0)] | |
[String[]] | |
$ComputerName, |
This file contains hidden or 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
############################################################################################## | |
### K-Means Python Implementation ### | |
### http://konukoii.com/blog/2017/01/15/5-min-tutorial-k-means-clustering-in-python/ ### | |
############################################################################################## | |
import random | |
import math | |
#Euclidian Distance between two d-dimensional points | |
def eucldist(p0,p1): |
This file contains hidden or 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
/* | |
Note: This is really old hacky inefficient code. I'm saving for historical purpouses. | |
More Info on this: http://konukoii.com/blog/2016/08/18/capture-the-keys-chapter-1-clogger/ | |
DISCLAIMER: THE AUTHOR DOES NOT CONDONE THE USE OF THIS PROGRAM FOR ANY | |
ILLEGAL OR OTHERWISE INTRUSIVE APPLICATION THAT MIGHT HARM OTHERS PRIVACY. | |
USE AT YOUR OWN RISK! NO WARRANTIES OR GUARANTIES ARE GIVEN FOR THIS PROGRAM. | |
WHAT THIS PROGRAM IS FOR: | |
->LEARNING TO USE THE WINDOWS HOOKS. |
This file contains hidden or 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
//Ceasar (Shift) Cipher | |
//Pedro Miguel Sosa | |
//www.KonukoII.com | |
//Tutorial & Explanation: http://konukoii.com/blog/2016/03/24/caesar-cipher-in-scala/ | |
object CeasarCipher extends App{ | |
//Define Alphabet | |
//feel free to add more elements to your 'alphabet' (eg. Nums: 123... or Symbols: !?@#...) | |
val alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |