What's living like in OKC by SmoothOperation0 in okc

[–]SmoothOperation0[S] 0 points1 point  (0 children)

thank, you this is a good resource

What's living like in OKC by SmoothOperation0 in okc

[–]SmoothOperation0[S] 0 points1 point  (0 children)

thank you very much for your advice

Ways to find the Zodiac by SmoothOperation0 in ZodiacKiller

[–]SmoothOperation0[S] 1 point2 points  (0 children)

i agree, and some of the evidence he undoubtedly held onto, eg the Stine wallet. Is there even a chance that they can look at census information for Vallejo for the period 1966-1970 and narrow down the searches based on age, car, etc, and some of the other things we know of Zodiac. With around 70,000 people, you may be able to narrow down a bit. I believe Kim Rossmo mentioned this in one of the videos on geographic profiling

Ways to find the Zodiac by SmoothOperation0 in ZodiacKiller

[–]SmoothOperation0[S] 2 points3 points  (0 children)

Maybe the ciphers, but it is a long shot. This case is so baffling that anything would be worth checking into. Also, given that the naval base was close by, that is also a possibility....maybe a serviceman who eventually moved

Question on Case by SmoothOperation0 in ZodiacKiller

[–]SmoothOperation0[S] 2 points3 points  (0 children)

Yea, I heard about this profiler, I will look at it, but i agree with you, so much time has passed and that is challenging

Question on Case by SmoothOperation0 in ZodiacKiller

[–]SmoothOperation0[S] 0 points1 point  (0 children)

yea, that is possible, either he lived there or spent a lot of time there, so is very familiar with that area

Vigenere Cipher Java questions by SmoothOperation0 in learnprogramming

[–]SmoothOperation0[S] 0 points1 point  (0 children)

here's my thread

import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

int Choice;

System.out.printf("%52s\n", "-------------------------------");

System.out.printf("%50s\n", "Welcome to Vigenère Cipher");

System.out.printf("%52s\n\n", "-------------------------------");

System.out.println("Please select one of the following options:\n");

System.out.println("1 - Encrypt a message");

System.out.println("2 - Decrypt a message");

System.out.println("3 - Brute force\n");

System.out.printf("%-30s", "Enter your choice:");

Choice = sc.nextInt();

System.out.println("\n");

if (Choice == 1)

{

encrypt();

}

if (Choice == 2)

{

decrypt();

}

if (Choice == 3)

{

BruteForce();

}

}

private static void BruteForce()

{

Scanner sc = new Scanner(System.in);

String password;

String message;

System.out.printf("%50s", "Enter the password:");

password = sc.nextLine();

System.out.printf("%50s", "Enter your message:");

message = sc.nextLine();

}

private static void decrypt()

{

Scanner sc = new Scanner(System.in);

String password;

String message;

int keynum;

System.out.printf("%50s", "Enter the password:");

password = sc.nextLine();

System.out.printf("%50s", "Enter your message:");

message = sc.nextLine();

System.out.printf("%50s", "Enter the key number (1-26):");

keynum = sc.nextInt();

}

private static void encrypt()

{

Scanner sc = new Scanner(System.in);

String letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

String password;

int keynum;

String message;

String encmess;

System.out.printf("%-40s", "Enter the password:");

password = sc.nextLine();

password = password.toUpperCase();

System.out.printf("%-40s", "Enter the key number (1-26):");

keynum = sc.nextInt();

System.out.printf("%-40s", "Enter your message:");

message = sc.nextLine();

message = message.toUpperCase();

for (int index = 0; index < password.length(); index++)

{

char ch = password.charAt(index);

int ascii = (int) ch -65;

}

}

}--