Click here to Skip to main content
15,891,253 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
2374128-Sep-15 10:18
2374128-Sep-15 10:18 
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
newton.saber28-Sep-15 10:21
newton.saber28-Sep-15 10:21 
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
Jörgen Andersson28-Sep-15 10:59
professionalJörgen Andersson28-Sep-15 10:59 
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
newton.saber28-Sep-15 11:06
newton.saber28-Sep-15 11:06 
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
den2k8828-Sep-15 22:06
professionalden2k8828-Sep-15 22:06 
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
newton.saber29-Sep-15 1:44
newton.saber29-Sep-15 1:44 
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
den2k8829-Sep-15 1:51
professionalden2k8829-Sep-15 1:51 
JokeRe: FaceBook Is Toast: Spread some PHP on it. Pin
newton.saber29-Sep-15 3:55
newton.saber29-Sep-15 3:55 
I haz da codz.
Rot-13 should do.
https://en.wikipedia.org/wiki/ROT13[^]
C#
string EncryptPwd(string clearPwd)
{
    // actually this is a lazy ROT13 which 
   // provides more encryption since no one will ever figure
   // out the encryption routine.  :)
   string cipherPass = string.Empty;
   foreach (char c in clearPwd)
   {
      
      cipherPass += Convert.ToChar(c + 13);
   }
   return cipherPass;
}
 
string DecryptPwd(string cipherPwd)
{
   string clearPass = string.Empty;
   foreach (char c in cipherPwd)
   {
      clearPass +=  Convert.ToChar(c - 13);
   }
   return clearPass;
}


NOTE: I marked this as joke, but someone will come along and use it for their SUPERSECURE Web Site. Laugh | :laugh:
GeneralRe: FaceBook Is Toast: Spread some PHP on it. Pin
den2k8829-Sep-15 3:59
professionalden2k8829-Sep-15 3:59 
GeneralBlatter not blatted... Pin
R. Giskard Reventlov28-Sep-15 9:23
R. Giskard Reventlov28-Sep-15 9:23 
GeneralRe: Blatter not blatted... Pin
PIEBALDconsult28-Sep-15 9:57
mvePIEBALDconsult28-Sep-15 9:57 
GeneralRe: Blatter not blatted... Pin
R. Giskard Reventlov28-Sep-15 10:04
R. Giskard Reventlov28-Sep-15 10:04 
GeneralRe: Blatter not blatted... Pin
User 1106097928-Sep-15 10:44
User 1106097928-Sep-15 10:44 
GeneralRe: Blatter not blatted... Pin
Dan Neely29-Sep-15 3:05
Dan Neely29-Sep-15 3:05 
GeneralRe: Blatter not blatted... Pin
User 1106097929-Sep-15 3:07
User 1106097929-Sep-15 3:07 
GeneralRe: Blatter not blatted... Pin
Jörgen Andersson28-Sep-15 11:01
professionalJörgen Andersson28-Sep-15 11:01 
GeneralRe: Blatter not blatted... Pin
OriginalGriff28-Sep-15 21:18
mveOriginalGriff28-Sep-15 21:18 
GeneralWhat are your thoughts on MS Edge browser? Pin
clawton28-Sep-15 6:52
clawton28-Sep-15 6:52 
GeneralRe: What are your thoughts on MS Edge browser? Pin
newton.saber28-Sep-15 6:59
newton.saber28-Sep-15 6:59 
GeneralRe: What are your thoughts on MS Edge browser? Pin
Colin Mullikin28-Sep-15 8:22
professionalColin Mullikin28-Sep-15 8:22 
GeneralRe: What are your thoughts on MS Edge browser? Pin
newton.saber28-Sep-15 8:43
newton.saber28-Sep-15 8:43 
GeneralRe: What are your thoughts on MS Edge browser? Pin
obermd3-Oct-15 7:42
obermd3-Oct-15 7:42 
GeneralRe: What are your thoughts on MS Edge browser? Pin
Member 1070767728-Sep-15 21:19
Member 1070767728-Sep-15 21:19 
GeneralRe: What are your thoughts on MS Edge browser? Pin
newton.saber29-Sep-15 1:47
newton.saber29-Sep-15 1:47 
GeneralRe: What are your thoughts on MS Edge browser? Pin
OriginalGriff28-Sep-15 8:13
mveOriginalGriff28-Sep-15 8:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.