AFC 2015
General | Posted 10 years agoHey everybody I just wanted to create a journal explaining how much fun I had while attending the full Arizona Furry Convention a few days ago. It was my first convention and probably the third time in my life that I have had the chance to hang out with furries. I met one of my best friends that I have had the pleasure to chat with for years at the convention and we had a wonderful time together.
While I was there I was able to make a new commission of my fursona and meet a lot of very amazing and interesting people. I also got me a bumper sticker for my car and a tail that I may sometime in the future incorporate into a different fursona than my current horse fursona, River. I am very pleased that I was able to make it as the experience has changed my understanding of who I am. The convention made me very proud to be known as a furry and I highly recommend attending a convention to any of my friends.
And as a note I just want to apologize for always bouncing in and out of FA. With college being almost done and this new experience under my belt I will totally be sticking around. ^_^
While I was there I was able to make a new commission of my fursona and meet a lot of very amazing and interesting people. I also got me a bumper sticker for my car and a tail that I may sometime in the future incorporate into a different fursona than my current horse fursona, River. I am very pleased that I was able to make it as the experience has changed my understanding of who I am. The convention made me very proud to be known as a furry and I highly recommend attending a convention to any of my friends.
And as a note I just want to apologize for always bouncing in and out of FA. With college being almost done and this new experience under my belt I will totally be sticking around. ^_^
Ive Returned
General | Posted 12 years agoHey i know that ive been on and off for the past 3 years due to collage and minor things that have been going on in my life. Im happy to say that I have made some new friends who accept everything about me including furry side and things have been going great. Now I can be on here whenever i want except when at school and I highly doubt that I will ever have to leave you guys again.
I look foward to talking to everyone real soon. ^_^ I reallly missed everybody and i hope im not totally forgotten.
Oh yea ive only got about a year of collage left and only 6 months till im finally 21. YAY :)
Talk to everyone soon,
Rocket_Man55
I look foward to talking to everyone real soon. ^_^ I reallly missed everybody and i hope im not totally forgotten.
Oh yea ive only got about a year of collage left and only 6 months till im finally 21. YAY :)
Talk to everyone soon,
Rocket_Man55
My Life So Far
General | Posted 14 years agoWell school has taken a turn for the best for me. :3 I just resentally got an A on an exam that I was failing a class in and now I have a B in that class :3 YAY. So now I have 2 A's, 1 B, and 1 D. I need to work on pulling that grade up in matlab.. D:
Aside from that... I have a doctors appt. for next monday. I am finally going to stop being stubborn about my depression and go do something about it... Because if I dont... I will most likely flush my life down the toilet. So I am happy about getting meds and I hope that my depression is a lot better after monday. :3 Ill let you guys know how it goes. :3
Aside from that... I have a doctors appt. for next monday. I am finally going to stop being stubborn about my depression and go do something about it... Because if I dont... I will most likely flush my life down the toilet. So I am happy about getting meds and I hope that my depression is a lot better after monday. :3 Ill let you guys know how it goes. :3
Matlab Coding For Encryption/Decrypt
General | Posted 14 years agoThis is what I have been working on in Matlab for the past few days.. O.o Quite annoying....
This is the Encrypt Function Script.
%===================================================================================================
%[]FUNCTION NAME: ENCRYPT.m
%[]AUTHOR: Stephen
%[]CLASS: EGR 115.2--SPRING 2012
%[]CREATED: 02/27/2012
%[]REVISED: 03/05/2012
%===================================================================================================
%[]FUNCTION DESCRIPTION:
%7 bit cypher.
%===================================================================================================
%[]INPUT VARIABLES:
%This section describes the input variables using the following format.
%(string)|original message.
%===================================================================================================
%[]OUTPUT VARIABLES:
%This section describes the output variables using the following format.
%(encrypted message)|encrypted message.
%===================================================================================================
%[]VARIABLE FORMAT:
%(string)|String
%encrypted message| 7Xn
%===================================================================================================
%[]AUXILIARY FUNCTIONS:
%===================================================================================================
%[]COMMENTS:
%
%===================================================================================================
function encrypted_message = ENCRYPT(string)
if ischar(string)==0;
display('Improper input. Encrytion program will now close');
return;
%takes to where fun is being called from so to the command window
end
s=numel(string);
%find legnth of string
r=mod(s,7);
if r ~= 0;
for k=1:7 -r;
string = [string,' '];
%add space to the string to make divisible by 7
end
end
s=numel(string);
string= reshape(string,7, s/7);
%make into a matrix
encrypted_message= zeros(7,s/7);
for x=1:s/7;
for y=1:7
switch string(y,x);
case('a');
encrypted_message(y,x)=1;
case('b')
encrypted_message(y,x)=2;
case('c')
encrypted_message(y,x)=3;
case('d')
encrypted_message(y,x)=4;
case('e')
encrypted_message(y,x)=5;
case('f')
encrypted_message(y,x)=6;
case('g')
encrypted_message(y,x)=7;
case('h')
encrypted_message(y,x)=8;
case('i')
encrypted_message(y,x)=9;
case('j')
encrypted_message(y,x)=10;
case('k')
encrypted_message(y,x)=11;
case('l')
encrypted_message(y,x)=12;
case('m')
encrypted_message(y,x)=13;
case('n')
encrypted_message(y,x)=14;
case('o')
encrypted_message(y,x)=15;
case('p')
encrypted_message(y,x)=16;
case('q')
encrypted_message(y,x)=17;
case('r')
encrypted_message(y,x)=18;
case('s')
encrypted_message(y,x)=19;
case('t')
encrypted_message(y,x)=20;
case('u')
encrypted_message(y,x)=21;
case('v')
encrypted_message(y,x)=22;
case('w')
encrypted_message(y,x)=23;
case('x')
encrypted_message(y,x)=24;
case('y')
encrypted_message(y,x)=25;
case('z')
encrypted_message(y,x)=26;
case('A');
encrypted_message(y,x)=27;
case('B')
encrypted_message(y,x)=28;
case('C')
encrypted_message(y,x)=29;
case('D')
encrypted_message(y,x)=30;
case('E')
encrypted_message(y,x)=31;
case('F')
encrypted_message(y,x)=32;
case('G')
encrypted_message(y,x)=33;
case('H')
encrypted_message(y,x)=34;
case('I')
encrypted_message(y,x)=35;
case('J')
encrypted_message(y,x)=36;
case('K')
encrypted_message(y,x)=37;
case('L')
encrypted_message(y,x)=38;
case('M')
encrypted_message(y,x)=39;
case('N')
encrypted_message(y,x)=40;
case('O')
encrypted_message(y,x)=41;
case('P')
encrypted_message(y,x)=42;
case('Q')
encrypted_message(y,x)=43;
case('R')
encrypted_message(y,x)=44;
case('S')
encrypted_message(y,x)=45;
case('T')
encrypted_message(y,x)=46;
case('U')
encrypted_message(y,x)=47;
case('V')
encrypted_message(y,x)=48;
case('W')
encrypted_message(y,x)=49;
case('X')
encrypted_message(y,x)=50;
case('Y')
encrypted_message(y,x)=51;
case('Z')
encrypted_message(y,x)=52;
case(' ')
encrypted_message(y,x)=53;
case('`')
encrypted_message(y,x)=54;
case('~')
encrypted_message(y,x)=55;
case('!')
encrypted_message(y,x)=56;
case('@')
encrypted_message(y,x)=57;
case('#')
encrypted_message(y,x)=58;
case('$')
encrypted_message(y,x)=59;
case('%')
encrypted_message(y,x)=60;
case('^')
encrypted_message(y,x)=61;
case('&')
encrypted_message(y,x)=62;
case('*')
encrypted_message(y,x)=63;
case('(')
encrypted_message(y,x)=64;
case(')')
encrypted_message(y,x)=65;
case('-')
encrypted_message(y,x)=66;
case('_')
encrypted_message(y,x)=67;
case('=')
encrypted_message(y,x)=68;
case('+')
encrypted_message(y,x)=69;
case('[')
encrypted_message(y,x)=70;
case('{')
encrypted_message(y,x)=71;
case(']')
encrypted_message(y,x)=72;
case('}')
encrypted_message(y,x)=73;
case('\')
encrypted_message(y,x)=74;
case('|')
encrypted_message(y,x)=75;
case(';')
encrypted_message(y,x)=76;
case(':')
encrypted_message(y,x)=77;
case('"')
encrypted_message(y,x)=78;
case(',')
encrypted_message(y,x)=79;
case('<')
encrypted_message(y,x)=80;
case('.')
encrypted_message(y,x)=81;
case('>')
encrypted_message(y,x)=82;
case('/')
encrypted_message(y,x)=83;
case('?')
encrypted_message(y,x)=84;
case('0')
encrypted_message(y,x)=85;
case('1')
encrypted_message(y,x)=86;
case('2')
encrypted_message(y,x)=87;
case('3')
encrypted_message(y,x)=88;
case('4')
encrypted_message(y,x)=89;
case('5')
encrypted_message(y,x)=90;
case('6')
encrypted_message(y,x)=91;
case('7')
encrypted_message(y,x)=92;
case('8')
encrypted_message(y,x)=93;
case('9')
encrypted_message(y,x)=94;
case('''')
encrypted_message(y,x)=95;
end
%switch
end
%for2
end
%for1
E=[10,4,9,7,3,2,7;...
2,9,7,0,10,5,7;...
10,8,8,3,0,4,2;...
10,10,7,0,4,6,1;...
5,7,4,1,4,7,5;...
8,0,7,8,8,8,10;...
1,8,2,7,8,3,3];
%encryption matrix
for k=1:s/7;
encrypted_message(:,k)=E*encrypted_message(:,k);
%final message encryption
end%final for loop
end
%===================================================================================================
This is the Decrypt Function Script
%===================================================================================================
%[]FUNCTION NAME: ENCRYPT.m
%[]AUTHOR: Stephen
%[]CLASS: EGR 115.2--SPRING 2012
%[]CREATED: 02/27/2012
%[]REVISED: 03/05/2012
%===================================================================================================
%[]FUNCTION DESCRIPTION:
%7 bit cypher.
%===================================================================================================
%[]INPUT VARIABLES:
%This section describes the input variables using the following format.
%(encrypted_message)|The output from the Encryption Function.
%===================================================================================================
%[]OUTPUT VARIABLES:
%None.
%===================================================================================================
%[]VARIABLE FORMAT:
%(encrypted_message)|Matrix
%===================================================================================================
%[]AUXILIARY FUNCTIONS:
%===================================================================================================
%[]COMMENTS:
%
%===================================================================================================
function DECRYPT(encrypted_message)
if ischar(encrypted_message) == 1;
display('Improper input. Decryption program will now close');
return;
%takes to where fun is being called from so to the command window
end
s = numel(encrypted_message);
%find legnth of string
encrypted_message = reshape(encrypted_message, s, 1);
%[]Reshapes the encrypted message array into a column vector.
r = mod(s,7);
%[]Returns the remainder of the vector length divided by 7.
if r ~= 0;
for k = 1:7 -r;
encrypted_message = [encrypted_message; 53];
%Adds a space to the encrypted message vector.
end
end
s = numel(encrypted_message);
%[]Returns the new string length.
encrypted_message = reshape(encrypted_message, 7, s/7);
%make into a matrix
decrypted_message= zeros(7, s/7);
%[]Allocates memory for the decrypted message.
E=[10,4,9,7,3,2,7;...
2,9,7,0,10,5,7;...
10,8,8,3,0,4,2;...
10,10,7,0,4,6,1;...
5,7,4,1,4,7,5;...
8,0,7,8,8,8,10;...
1,8,2,7,8,3,3];
%encryption matrix
for k = 1:s/7;
decrypted_message(:,k) = round(E \ encrypted_message(:,k));
%[]Allocates memory for the encrypted message vector.
end
for x = 1:s/7;
for y = 1:7
switch decrypted_message(y,x);
case(1);
decrypted_message(y,x)='a';
case(2);
decrypted_message(y,x)='b';
case(3);
decrypted_message(y,x)='c';
case(4);
decrypted_message(y,x)='d';
case(5);
decrypted_message(y,x)='e';
case(6);
decrypted_message(y,x)='f';
case(7);
decrypted_message(y,x)='g';
case(8);
decrypted_message(y,x)='h';
case(9);
decrypted_message(y,x)='i';
case(10);
decrypted_message(y,x)='j';
case(11);
decrypted_message(y,x)='k';
case(12);
decrypted_message(y,x)='l';
case(13);
decrypted_message(y,x)='m';
case(14);
decrypted_message(y,x)='n';
case(15);
decrypted_message(y,x)='o';
case(16);
decrypted_message(y,x)='p';
case(17);
decrypted_message(y,x)='q';
case(18);
decrypted_message(y,x)='r';
case(19);
decrypted_message(y,x)='s';
case(20);
decrypted_message(y,x)='t';
case(21);
decrypted_message(y,x)='u';
case(22);
decrypted_message(y,x)='v';
case(23);
decrypted_message(y,x)='w';
case(24);
decrypted_message(y,x)='x';
case(25);
decrypted_message(y,x)='y';
case(26);
decrypted_message(y,x)='z';
case(27);
decrypted_message(y,x)='A';
case(28);
decrypted_message(y,x)='B';
case(29);
decrypted_message(y,x)='C';
case(30);
decrypted_message(y,x)='D';
case(31);
decrypted_message(y,x)='E';
case(32);
decrypted_message(y,x)='F';
case(33);
decrypted_message(y,x)='G';
case(34);
decrypted_message(y,x)='H';
case(35);
decrypted_message(y,x)='I';
case(36);
decrypted_message(y,x)='J';
case(37);
decrypted_message(y,x)='K';
case(38);
decrypted_message(y,x)='L';
case(39);
decrypted_message(y,x)='M';
case(40);
decrypted_message(y,x)='N';
case(41);
decrypted_message(y,x)='O';
case(42);
decrypted_message(y,x)='P';
case(43);
decrypted_message(y,x)='Q';
case(44);
decrypted_message(y,x)='R';
case(45);
decrypted_message(y,x)='S';
case(46);
decrypted_message(y,x)='T';
case(47);
decrypted_message(y,x)='U';
case(48);
decrypted_message(y,x)='V';
case(49);
decrypted_message(y,x)='W';
case(50);
decrypted_message(y,x)='X';
case(51);
decrypted_message(y,x)='Y';
case(52);
decrypted_message(y,x)='Z';
case(53);
decrypted_message(y,x)=' ';
case(54);
decrypted_message(y,x)='`';
case(55);
decrypted_message(y,x)='~';
case(56);
decrypted_message(y,x)='!';
case(57);
decrypted_message(y,x)='@';
case(58);
decrypted_message(y,x)='#';
case(59);
decrypted_message(y,x)='$';
case(60);
decrypted_message(y,x)='%';
case(61);
decrypted_message(y,x)='^';
case(62);
decrypted_message(y,x)='&';
case(63);
decrypted_message(y,x)='*';
case(64);
decrypted_message(y,x)='(';
case(65);
decrypted_message(y,x)=')';
case(66);
decrypted_message(y,x)='-';
case(67);
decrypted_message(y,x)='_';
case(68);
decrypted_message(y,x)='=';
case(69);
decrypted_message(y,x)='+';
case(70);
decrypted_message(y,x)='[';
case(71);
decrypted_message(y,x)='{';
case(72);
decrypted_message(y,x)=']';
case(73);
decrypted_message(y,x)='}';
case(74);
decrypted_message(y,x)='\';
case(75);
decrypted_message(y,x)='|';
case(76);
decrypted_message(y,x)=';';
case(77);
decrypted_message(y,x)=':';
case(78);
decrypted_message(y,x)='"';
case(79);
decrypted_message(y,x)=',';
case(80);
decrypted_message(y,x)='<';
case(81);
decrypted_message(y,x)='.';
case(82);
decrypted_message(y,x)='>';
case(83);
decrypted_message(y,x)='/';
case(84);
decrypted_message(y,x)='?';
case(85);
decrypted_message(y,x)='0';
case(86);
decrypted_message(y,x)='1';
case(87);
decrypted_message(y,x)='2';
case(88);
decrypted_message(y,x)='3';
case(89);
decrypted_message(y,x)='4';
case(90);
decrypted_message(y,x)='5';
case(91);
decrypted_message(y,x)='6';
case(92);
decrypted_message(y,x)='7';
case(93);
decrypted_message(y,x)='8';
case(94);
decrypted_message(y,x)='9';
case(95);
decrypted_message(y,x)='''';
end
end
end
decrypted_message = reshape(decrypted_message, 1, s);
%[]Converts decrypted message into a row vector.
decrypted_message = char(decrypted_message);
%[]converts decrypted message from ascii format to string format.
disp(decrypted_message);
%[]Displays the message in the command window.
%=====================================================================
This is the Encrypt Function Script.
%===================================================================================================
%[]FUNCTION NAME: ENCRYPT.m
%[]AUTHOR: Stephen
%[]CLASS: EGR 115.2--SPRING 2012
%[]CREATED: 02/27/2012
%[]REVISED: 03/05/2012
%===================================================================================================
%[]FUNCTION DESCRIPTION:
%7 bit cypher.
%===================================================================================================
%[]INPUT VARIABLES:
%This section describes the input variables using the following format.
%(string)|original message.
%===================================================================================================
%[]OUTPUT VARIABLES:
%This section describes the output variables using the following format.
%(encrypted message)|encrypted message.
%===================================================================================================
%[]VARIABLE FORMAT:
%(string)|String
%encrypted message| 7Xn
%===================================================================================================
%[]AUXILIARY FUNCTIONS:
%===================================================================================================
%[]COMMENTS:
%
%===================================================================================================
function encrypted_message = ENCRYPT(string)
if ischar(string)==0;
display('Improper input. Encrytion program will now close');
return;
%takes to where fun is being called from so to the command window
end
s=numel(string);
%find legnth of string
r=mod(s,7);
if r ~= 0;
for k=1:7 -r;
string = [string,' '];
%add space to the string to make divisible by 7
end
end
s=numel(string);
string= reshape(string,7, s/7);
%make into a matrix
encrypted_message= zeros(7,s/7);
for x=1:s/7;
for y=1:7
switch string(y,x);
case('a');
encrypted_message(y,x)=1;
case('b')
encrypted_message(y,x)=2;
case('c')
encrypted_message(y,x)=3;
case('d')
encrypted_message(y,x)=4;
case('e')
encrypted_message(y,x)=5;
case('f')
encrypted_message(y,x)=6;
case('g')
encrypted_message(y,x)=7;
case('h')
encrypted_message(y,x)=8;
case('i')
encrypted_message(y,x)=9;
case('j')
encrypted_message(y,x)=10;
case('k')
encrypted_message(y,x)=11;
case('l')
encrypted_message(y,x)=12;
case('m')
encrypted_message(y,x)=13;
case('n')
encrypted_message(y,x)=14;
case('o')
encrypted_message(y,x)=15;
case('p')
encrypted_message(y,x)=16;
case('q')
encrypted_message(y,x)=17;
case('r')
encrypted_message(y,x)=18;
case('s')
encrypted_message(y,x)=19;
case('t')
encrypted_message(y,x)=20;
case('u')
encrypted_message(y,x)=21;
case('v')
encrypted_message(y,x)=22;
case('w')
encrypted_message(y,x)=23;
case('x')
encrypted_message(y,x)=24;
case('y')
encrypted_message(y,x)=25;
case('z')
encrypted_message(y,x)=26;
case('A');
encrypted_message(y,x)=27;
case('B')
encrypted_message(y,x)=28;
case('C')
encrypted_message(y,x)=29;
case('D')
encrypted_message(y,x)=30;
case('E')
encrypted_message(y,x)=31;
case('F')
encrypted_message(y,x)=32;
case('G')
encrypted_message(y,x)=33;
case('H')
encrypted_message(y,x)=34;
case('I')
encrypted_message(y,x)=35;
case('J')
encrypted_message(y,x)=36;
case('K')
encrypted_message(y,x)=37;
case('L')
encrypted_message(y,x)=38;
case('M')
encrypted_message(y,x)=39;
case('N')
encrypted_message(y,x)=40;
case('O')
encrypted_message(y,x)=41;
case('P')
encrypted_message(y,x)=42;
case('Q')
encrypted_message(y,x)=43;
case('R')
encrypted_message(y,x)=44;
case('S')
encrypted_message(y,x)=45;
case('T')
encrypted_message(y,x)=46;
case('U')
encrypted_message(y,x)=47;
case('V')
encrypted_message(y,x)=48;
case('W')
encrypted_message(y,x)=49;
case('X')
encrypted_message(y,x)=50;
case('Y')
encrypted_message(y,x)=51;
case('Z')
encrypted_message(y,x)=52;
case(' ')
encrypted_message(y,x)=53;
case('`')
encrypted_message(y,x)=54;
case('~')
encrypted_message(y,x)=55;
case('!')
encrypted_message(y,x)=56;
case('@')
encrypted_message(y,x)=57;
case('#')
encrypted_message(y,x)=58;
case('$')
encrypted_message(y,x)=59;
case('%')
encrypted_message(y,x)=60;
case('^')
encrypted_message(y,x)=61;
case('&')
encrypted_message(y,x)=62;
case('*')
encrypted_message(y,x)=63;
case('(')
encrypted_message(y,x)=64;
case(')')
encrypted_message(y,x)=65;
case('-')
encrypted_message(y,x)=66;
case('_')
encrypted_message(y,x)=67;
case('=')
encrypted_message(y,x)=68;
case('+')
encrypted_message(y,x)=69;
case('[')
encrypted_message(y,x)=70;
case('{')
encrypted_message(y,x)=71;
case(']')
encrypted_message(y,x)=72;
case('}')
encrypted_message(y,x)=73;
case('\')
encrypted_message(y,x)=74;
case('|')
encrypted_message(y,x)=75;
case(';')
encrypted_message(y,x)=76;
case(':')
encrypted_message(y,x)=77;
case('"')
encrypted_message(y,x)=78;
case(',')
encrypted_message(y,x)=79;
case('<')
encrypted_message(y,x)=80;
case('.')
encrypted_message(y,x)=81;
case('>')
encrypted_message(y,x)=82;
case('/')
encrypted_message(y,x)=83;
case('?')
encrypted_message(y,x)=84;
case('0')
encrypted_message(y,x)=85;
case('1')
encrypted_message(y,x)=86;
case('2')
encrypted_message(y,x)=87;
case('3')
encrypted_message(y,x)=88;
case('4')
encrypted_message(y,x)=89;
case('5')
encrypted_message(y,x)=90;
case('6')
encrypted_message(y,x)=91;
case('7')
encrypted_message(y,x)=92;
case('8')
encrypted_message(y,x)=93;
case('9')
encrypted_message(y,x)=94;
case('''')
encrypted_message(y,x)=95;
end
%switch
end
%for2
end
%for1
E=[10,4,9,7,3,2,7;...
2,9,7,0,10,5,7;...
10,8,8,3,0,4,2;...
10,10,7,0,4,6,1;...
5,7,4,1,4,7,5;...
8,0,7,8,8,8,10;...
1,8,2,7,8,3,3];
%encryption matrix
for k=1:s/7;
encrypted_message(:,k)=E*encrypted_message(:,k);
%final message encryption
end%final for loop
end
%===================================================================================================
This is the Decrypt Function Script
%===================================================================================================
%[]FUNCTION NAME: ENCRYPT.m
%[]AUTHOR: Stephen
%[]CLASS: EGR 115.2--SPRING 2012
%[]CREATED: 02/27/2012
%[]REVISED: 03/05/2012
%===================================================================================================
%[]FUNCTION DESCRIPTION:
%7 bit cypher.
%===================================================================================================
%[]INPUT VARIABLES:
%This section describes the input variables using the following format.
%(encrypted_message)|The output from the Encryption Function.
%===================================================================================================
%[]OUTPUT VARIABLES:
%None.
%===================================================================================================
%[]VARIABLE FORMAT:
%(encrypted_message)|Matrix
%===================================================================================================
%[]AUXILIARY FUNCTIONS:
%===================================================================================================
%[]COMMENTS:
%
%===================================================================================================
function DECRYPT(encrypted_message)
if ischar(encrypted_message) == 1;
display('Improper input. Decryption program will now close');
return;
%takes to where fun is being called from so to the command window
end
s = numel(encrypted_message);
%find legnth of string
encrypted_message = reshape(encrypted_message, s, 1);
%[]Reshapes the encrypted message array into a column vector.
r = mod(s,7);
%[]Returns the remainder of the vector length divided by 7.
if r ~= 0;
for k = 1:7 -r;
encrypted_message = [encrypted_message; 53];
%Adds a space to the encrypted message vector.
end
end
s = numel(encrypted_message);
%[]Returns the new string length.
encrypted_message = reshape(encrypted_message, 7, s/7);
%make into a matrix
decrypted_message= zeros(7, s/7);
%[]Allocates memory for the decrypted message.
E=[10,4,9,7,3,2,7;...
2,9,7,0,10,5,7;...
10,8,8,3,0,4,2;...
10,10,7,0,4,6,1;...
5,7,4,1,4,7,5;...
8,0,7,8,8,8,10;...
1,8,2,7,8,3,3];
%encryption matrix
for k = 1:s/7;
decrypted_message(:,k) = round(E \ encrypted_message(:,k));
%[]Allocates memory for the encrypted message vector.
end
for x = 1:s/7;
for y = 1:7
switch decrypted_message(y,x);
case(1);
decrypted_message(y,x)='a';
case(2);
decrypted_message(y,x)='b';
case(3);
decrypted_message(y,x)='c';
case(4);
decrypted_message(y,x)='d';
case(5);
decrypted_message(y,x)='e';
case(6);
decrypted_message(y,x)='f';
case(7);
decrypted_message(y,x)='g';
case(8);
decrypted_message(y,x)='h';
case(9);
decrypted_message(y,x)='i';
case(10);
decrypted_message(y,x)='j';
case(11);
decrypted_message(y,x)='k';
case(12);
decrypted_message(y,x)='l';
case(13);
decrypted_message(y,x)='m';
case(14);
decrypted_message(y,x)='n';
case(15);
decrypted_message(y,x)='o';
case(16);
decrypted_message(y,x)='p';
case(17);
decrypted_message(y,x)='q';
case(18);
decrypted_message(y,x)='r';
case(19);
decrypted_message(y,x)='s';
case(20);
decrypted_message(y,x)='t';
case(21);
decrypted_message(y,x)='u';
case(22);
decrypted_message(y,x)='v';
case(23);
decrypted_message(y,x)='w';
case(24);
decrypted_message(y,x)='x';
case(25);
decrypted_message(y,x)='y';
case(26);
decrypted_message(y,x)='z';
case(27);
decrypted_message(y,x)='A';
case(28);
decrypted_message(y,x)='B';
case(29);
decrypted_message(y,x)='C';
case(30);
decrypted_message(y,x)='D';
case(31);
decrypted_message(y,x)='E';
case(32);
decrypted_message(y,x)='F';
case(33);
decrypted_message(y,x)='G';
case(34);
decrypted_message(y,x)='H';
case(35);
decrypted_message(y,x)='I';
case(36);
decrypted_message(y,x)='J';
case(37);
decrypted_message(y,x)='K';
case(38);
decrypted_message(y,x)='L';
case(39);
decrypted_message(y,x)='M';
case(40);
decrypted_message(y,x)='N';
case(41);
decrypted_message(y,x)='O';
case(42);
decrypted_message(y,x)='P';
case(43);
decrypted_message(y,x)='Q';
case(44);
decrypted_message(y,x)='R';
case(45);
decrypted_message(y,x)='S';
case(46);
decrypted_message(y,x)='T';
case(47);
decrypted_message(y,x)='U';
case(48);
decrypted_message(y,x)='V';
case(49);
decrypted_message(y,x)='W';
case(50);
decrypted_message(y,x)='X';
case(51);
decrypted_message(y,x)='Y';
case(52);
decrypted_message(y,x)='Z';
case(53);
decrypted_message(y,x)=' ';
case(54);
decrypted_message(y,x)='`';
case(55);
decrypted_message(y,x)='~';
case(56);
decrypted_message(y,x)='!';
case(57);
decrypted_message(y,x)='@';
case(58);
decrypted_message(y,x)='#';
case(59);
decrypted_message(y,x)='$';
case(60);
decrypted_message(y,x)='%';
case(61);
decrypted_message(y,x)='^';
case(62);
decrypted_message(y,x)='&';
case(63);
decrypted_message(y,x)='*';
case(64);
decrypted_message(y,x)='(';
case(65);
decrypted_message(y,x)=')';
case(66);
decrypted_message(y,x)='-';
case(67);
decrypted_message(y,x)='_';
case(68);
decrypted_message(y,x)='=';
case(69);
decrypted_message(y,x)='+';
case(70);
decrypted_message(y,x)='[';
case(71);
decrypted_message(y,x)='{';
case(72);
decrypted_message(y,x)=']';
case(73);
decrypted_message(y,x)='}';
case(74);
decrypted_message(y,x)='\';
case(75);
decrypted_message(y,x)='|';
case(76);
decrypted_message(y,x)=';';
case(77);
decrypted_message(y,x)=':';
case(78);
decrypted_message(y,x)='"';
case(79);
decrypted_message(y,x)=',';
case(80);
decrypted_message(y,x)='<';
case(81);
decrypted_message(y,x)='.';
case(82);
decrypted_message(y,x)='>';
case(83);
decrypted_message(y,x)='/';
case(84);
decrypted_message(y,x)='?';
case(85);
decrypted_message(y,x)='0';
case(86);
decrypted_message(y,x)='1';
case(87);
decrypted_message(y,x)='2';
case(88);
decrypted_message(y,x)='3';
case(89);
decrypted_message(y,x)='4';
case(90);
decrypted_message(y,x)='5';
case(91);
decrypted_message(y,x)='6';
case(92);
decrypted_message(y,x)='7';
case(93);
decrypted_message(y,x)='8';
case(94);
decrypted_message(y,x)='9';
case(95);
decrypted_message(y,x)='''';
end
end
end
decrypted_message = reshape(decrypted_message, 1, s);
%[]Converts decrypted message into a row vector.
decrypted_message = char(decrypted_message);
%[]converts decrypted message from ascii format to string format.
disp(decrypted_message);
%[]Displays the message in the command window.
%=====================================================================
Good News
General | Posted 14 years agoWell probably for the past 6 months or so I have been a chronic pot smoker... and finally last night me and my friend decided that we wernt going to smoke anymore. So last night I went out for the last time with him to get high and it was a great time. Saturday we plan on filling our bong with kerosene and shooting it. So for now it seems like my stoner days are over. And hopefully it will stay that way for a good amount of time to come. :3
Hard Times... AGAIN! -rant-
General | Posted 14 years agoThis is a rant...
Ok well this semester started out quite well for me actually.. I joined a frat... I bought a gun... I partyed alot... and i was getting really good grades in ALL my classes... But aparently I am not aloud to be happy for long and one of my classes became hard as hell and i got an F on the test we just had... Now when im sitting in that class nothing that comes out of the professors mouth makes any sence and its driving me crazy. It has already put me back into a terriable state of depression because i cant afford to fail another class... because if I do i get put on Academic Suspension and then i cant come back to school for a semester... and if that happened to me... i would be ruined... I would pry just you know... become an alcoholic.. smoke weed all the time and just become a waste of life... I came to college to get away from that... but if this fucking college keeps pushing me away and making it impossible to do what i want to do in life... then i guess lifes a bitch and then you die.... I am gona go grab my handle now and drink my ass off tonight until i just pass the fuck out and maby just try to enjoy my friday night... Life just seems to keep making me feel like a failure.. and no matter what i do.. it always feels that way..
Ok well this semester started out quite well for me actually.. I joined a frat... I bought a gun... I partyed alot... and i was getting really good grades in ALL my classes... But aparently I am not aloud to be happy for long and one of my classes became hard as hell and i got an F on the test we just had... Now when im sitting in that class nothing that comes out of the professors mouth makes any sence and its driving me crazy. It has already put me back into a terriable state of depression because i cant afford to fail another class... because if I do i get put on Academic Suspension and then i cant come back to school for a semester... and if that happened to me... i would be ruined... I would pry just you know... become an alcoholic.. smoke weed all the time and just become a waste of life... I came to college to get away from that... but if this fucking college keeps pushing me away and making it impossible to do what i want to do in life... then i guess lifes a bitch and then you die.... I am gona go grab my handle now and drink my ass off tonight until i just pass the fuck out and maby just try to enjoy my friday night... Life just seems to keep making me feel like a failure.. and no matter what i do.. it always feels that way..
So wats up?
General | Posted 14 years agoHey guys. So what is everyone who is online doing at the moment? :P
"Im 66% Furry" ^.^
General | Posted 14 years ago[] you meow/bark to get attention
[x] you find pets toys amusing
[] you get hyper by the smell of catnip
[ ] you growl/hiss when someone gets too close to your food
[] you growl/hiss when someone you dislike is too close to you
[x] you purr/shake your leg when someone shows you affection
[ ] if someone tosses a ball, you chase it and bring it back
Total: 2
[x] you love to be scratched behind the ear
[x] you love fish/meat (many normal people like this too FYI)
[x] you like to stick your head out through the window of a moving car.
[x] you like when people pet your head
[x] people can make you stop doing stuff by hitting you on the nose with a newspaper
[x] you think feathers are fun to play with
Total: 6
[x] you sleep a lot during daytime
[x] you enjoy scaring birds
[ ] you lick peoples faces to show you like them
[ ] you bite people if they annoy you
[x] you tend to steal food from your friends/family's plate when you have eaten all of yours
[x] milk or water is your favorite drink
Total: 4
[x] you own a collar and you enjoy wearing it
[ ] you own a leash and enjoy wearing it
[ ] you own animal ears/tail/paws or a fursuit (Sadly No)
[x] you enjoy long walks in the park
[ ] you meow/bark when you see something you want
Total: 2
[ ] you call your hands and feet "paws"
[x] you tilt your head when you do not understand what someone is talking about
[x] you run to the door when someone mentions a walk
[x] you really enjoy cuddling (only with some people)
[x] you stretch your body and whimper a bit every morning when you wake up
[x] you can wake up and go back to sleep right away after looking around
Total: 5
[x] you have your favorite spot besides your bed where you like to sleep
[ ] you meow or bark very often
[x] you hide when you get scared
[x] you run to the door to see who it is every time someone comes in to the house
[x] you like to chase flying insects and try to catch them with your bare hand
[x] you tend to chew on stuff a lot
[x] you like to do tricks to get a treat (only for cirtin things)
Total: 6
[x] you own a wearable item/tag with your name on it
[ ] you refer to yourself as an animal
[ ] your username has something to do with animals
[ ] your e-mail has something to do with animals
[x] if you get a bleeding wound, you lick it to make it feel better (if its on my hand or arm yes... XD )
[x] you look for edible stuff often
Total: 3
[x] you often find yourself looking through the window for a long time
[x] you like to say hi to strangers
[x] you like to be petted when you have done something good
[ ] people think you act like a pet
[ ] you growl/hiss at stuff you do not like
[x] you like to eat grass (there is actually some tasty grass out there XD... but i dont do it often)
[x] if you get wet, you shake to get rid of the water
Total: 5
Final total: 33
Take your score and multiply it by 2
Put your title as "I'm _% Furry"
[x] you find pets toys amusing
[] you get hyper by the smell of catnip
[ ] you growl/hiss when someone gets too close to your food
[] you growl/hiss when someone you dislike is too close to you
[x] you purr/shake your leg when someone shows you affection
[ ] if someone tosses a ball, you chase it and bring it back
Total: 2
[x] you love to be scratched behind the ear
[x] you love fish/meat (many normal people like this too FYI)
[x] you like to stick your head out through the window of a moving car.
[x] you like when people pet your head
[x] people can make you stop doing stuff by hitting you on the nose with a newspaper
[x] you think feathers are fun to play with
Total: 6
[x] you sleep a lot during daytime
[x] you enjoy scaring birds
[ ] you lick peoples faces to show you like them
[ ] you bite people if they annoy you
[x] you tend to steal food from your friends/family's plate when you have eaten all of yours
[x] milk or water is your favorite drink
Total: 4
[x] you own a collar and you enjoy wearing it
[ ] you own a leash and enjoy wearing it
[ ] you own animal ears/tail/paws or a fursuit (Sadly No)
[x] you enjoy long walks in the park
[ ] you meow/bark when you see something you want
Total: 2
[ ] you call your hands and feet "paws"
[x] you tilt your head when you do not understand what someone is talking about
[x] you run to the door when someone mentions a walk
[x] you really enjoy cuddling (only with some people)
[x] you stretch your body and whimper a bit every morning when you wake up
[x] you can wake up and go back to sleep right away after looking around
Total: 5
[x] you have your favorite spot besides your bed where you like to sleep
[ ] you meow or bark very often
[x] you hide when you get scared
[x] you run to the door to see who it is every time someone comes in to the house
[x] you like to chase flying insects and try to catch them with your bare hand
[x] you tend to chew on stuff a lot
[x] you like to do tricks to get a treat (only for cirtin things)
Total: 6
[x] you own a wearable item/tag with your name on it
[ ] you refer to yourself as an animal
[ ] your username has something to do with animals
[ ] your e-mail has something to do with animals
[x] if you get a bleeding wound, you lick it to make it feel better (if its on my hand or arm yes... XD )
[x] you look for edible stuff often
Total: 3
[x] you often find yourself looking through the window for a long time
[x] you like to say hi to strangers
[x] you like to be petted when you have done something good
[ ] people think you act like a pet
[ ] you growl/hiss at stuff you do not like
[x] you like to eat grass (there is actually some tasty grass out there XD... but i dont do it often)
[x] if you get wet, you shake to get rid of the water
Total: 5
Final total: 33
Take your score and multiply it by 2
Put your title as "I'm _% Furry"
Hey
General | Posted 14 years agoHey sorry for bein away for so long again. I kinda had winter break from college and i spent the whole time with my family. Then when i came back to college for spring semester I have been spending most of my time either studying, studying, going to class, studying more, sleeping, and hanging out with fraternity bros in my free time. So sorry for bein away and i look foward to talking to alot of you again. :)
FML
General | Posted 14 years agoWell this is a rant....
About an hour ago my geography professor decided to tell me that because i was late for his class this morning he is going to give me a zero for my participation grade for the entire semester. Hearing this agravates me so much... i almost dont know what to say.. I have only missed one of his classes this entire semester and just because i was late for another one he is going to give me a zero for my participation grade. WHAT A FUCKING ASS HOLE!!!! He is the worst teacher in the universe and is such a control freak.. I wish i could go to his office and just fuckin knock his lights out. I have put so much work into his class this semester and he still treats me like shit. I FUCKING SPENT 5000 dollers taking his class this semester and for that much money i feel that he should treat me with a little more respect.. Not like his FUCKING dog!!
About an hour ago my geography professor decided to tell me that because i was late for his class this morning he is going to give me a zero for my participation grade for the entire semester. Hearing this agravates me so much... i almost dont know what to say.. I have only missed one of his classes this entire semester and just because i was late for another one he is going to give me a zero for my participation grade. WHAT A FUCKING ASS HOLE!!!! He is the worst teacher in the universe and is such a control freak.. I wish i could go to his office and just fuckin knock his lights out. I have put so much work into his class this semester and he still treats me like shit. I FUCKING SPENT 5000 dollers taking his class this semester and for that much money i feel that he should treat me with a little more respect.. Not like his FUCKING dog!!
Looking For People To Chat With
General | Posted 14 years agoHey kinda self explanitory. :P Just lookin for people who wana chat about anything :P Im really bored right now. DX So yea if ya wana chat just send me a note or comment on this page :P
Hard Week
General | Posted 14 years agoIve been having a hard time at college for the past few days... So much shit to do and everything just making me down. I wish that I dident get so much homework at one time. On top of my schoolwork I have to study for my theta xi tests so i can be accepted into the fraternity. I failed the last test and that got me down really bad. I became depressed and dident eat for two days and had trouble doing my schoolwork. Why dose everything have to be so dificult all of a sudden. So yea.. Im just having a very hard week and just lookin for people to chat with. Feel free to post things :3
California and USC
General | Posted 14 years agoHey everyone. Over the weekend I went to California with some associate brothers and went to USC for 2 nights. I had a blast. We stayed at the Theta Xi house on fraternity row and just had so much fun we are going back in 3 more weeks. Its gona be awsome.. AGAIN :D Does anyone here go to USC? If so i would like to meet ya :3
Whooot! :D
General | Posted 14 years agoWell tomorrow is one of those days where I get to dress all fancy and wear a suit. >.< X3 Its for a meeting that I will have with theta xi.. And hopefully all goes well.. I have to wear the suit from the time i wake up till the time i get into my room at night.. Its gona be a long day.. XD Aparentally my geography professor thinks i "look handsome in a suit" i dont know what professor tells his students they look handsome.. X3 so yea that was weird. X3 KK im turning in for the night... Goodnight everyone <3~~~~~~
Rocket MAN~ :D
General | Posted 14 years agoShe packed my bags last night pre-flight
Zero hour nine a.m.
And Im gonna be high as a kite by then
I miss the earth so much I miss my wife
Its lonely out in space
On such a timeless flight
And I think its gonna be a long long time
Till touch down brings me round again to find
Im not the man they think I am at home
Oh no no no Im a rocket man
Rocket man burning out his fuse up here alone
Mars aint the kind of place to raise your kids
In fact its cold as hell
And theres no one there to raise them if you did
And all this science I dont understand
Its just my job five days a week
A rocket man, a rocket man
Zero hour nine a.m.
And Im gonna be high as a kite by then
I miss the earth so much I miss my wife
Its lonely out in space
On such a timeless flight
And I think its gonna be a long long time
Till touch down brings me round again to find
Im not the man they think I am at home
Oh no no no Im a rocket man
Rocket man burning out his fuse up here alone
Mars aint the kind of place to raise your kids
In fact its cold as hell
And theres no one there to raise them if you did
And all this science I dont understand
Its just my job five days a week
A rocket man, a rocket man
Homework
General | Posted 14 years agoI have been up working on homework for the past 3 hours... Im getting quite annoyed... Me and my stupid procrastonation has caused me to be stuck doing homework at 1AM again.. :( I really need to stop procrastonating.. I even had to skip out of a party tonight because i had to do this homework... Sad... :( I missed the first party of the weekend.. again.. XD Oh well.. There will be plenty of drinking tomorrow.. XD
New Best Friend
General | Posted 14 years agoHey everybody I has made a new best friend. :3 He is
xxxmatt122987xxx You should go check out his page and say hi. :3 Hehe :P He is awsome and everyone should watch him :3 *hugs the winged horsey* ^.^
xxxmatt122987xxx You should go check out his page and say hi. :3 Hehe :P He is awsome and everyone should watch him :3 *hugs the winged horsey* ^.^College Life
General | Posted 14 years agoI am going to have to say that college is one of the best things that has ever happened to me. Ever sence i got here all of my depression has gone away.. I have tons of friends... and my parents arnt looking over my shoulder anymore. Im joining a Fraturnity (Theta Xi). Very good group of brothers and they throw the best parties. One of these days im going down to Phoenix with some of my good friends to go to a Rave. :3 So yea college is like the best thing that has ever happened to me.. :P (Just wanted to let ya all know) ^.^
Arizona (looking for friends)
General | Posted 14 years agoHey guys I just moved to Prescott, Arizona and i was wondering if any of my friends here knew any Arizona furries i could be friends with :3 Please reply if you do cuz i wana make furry friends :D (PS... Its really nice in Prescott AZ :P )
Whoop
General | Posted 14 years agoOHhhhh yeaa! I finally got my Account Un-Agelocked :D Ive been w8ting for this for 4 years :D X3
Minecraft
General | Posted 14 years agoHey does anyone else here play minecraft? I bought it resentally and made a server.. :P There isnt much in it so far but im working on it. Would like to have people to help me build. So if u play minecraft and wana free server to play inn... Message me :D Ill give u my Currrent Server IP.
Hey
General | Posted 14 years agoNow that im back.. i just realized how much i really missed this place and the furs that i met on here..
Thank you all for bein such good friends to me. Ur all almost like family <3
Thank you all for bein such good friends to me. Ur all almost like family <3
Oragy Contest for Equines :D
General | Posted 14 years ago
is holding an orgy contest for equines. For more informations, read his journal-http://www.furaffinity.net/journal/2608117/
That is all.
Im BACK FOR GOOD
General | Posted 14 years agoOk everyone.. most of you probably have forgotten who i am and how i got in ur friends list.. That is because i have been gone for about 6 months... Sooooo I am officially moving out of my parents house in 2 weeks to go to college in AZ. So I am officially anouncing that I am back for goood. That means whoever still wants to chat with me can will never have to say goodbye to me again.. Hooray :D <3
Really quick catch up on my life.. i turned 18.. I crashed and destroyed my car... I am going to college... and thats about it. XD SOOOO PLEASE MESSAGE ME AND WE WILL CATCH UP :3 <3~
Really quick catch up on my life.. i turned 18.. I crashed and destroyed my car... I am going to college... and thats about it. XD SOOOO PLEASE MESSAGE ME AND WE WILL CATCH UP :3 <3~
Plz Watch This Person! :D DO IT! :D
General | Posted 15 years agoHaha.. there is really special reason why you should watch this person.. XD Butt she is a great friend of mine and very fun to talk to.. and she draws very well. ^^ SO PLEASE WATCH HER!! :D Itl only take 3 seconds out of ur lives to go hit the +watch button. XD DOO ITT!! :D
slippingstar
If u no watch this person.. I kill you! >:D
Unless ur a hoofer.. I dont kill hoofers. ^^ I love them to much. :D
But w8.. They account for most of my friends.. so.. i guess i just wont be killing anyone.. XD :p
slippingstarIf u no watch this person.. I kill you! >:D
Unless ur a hoofer.. I dont kill hoofers. ^^ I love them to much. :D
But w8.. They account for most of my friends.. so.. i guess i just wont be killing anyone.. XD :p
FA+
