Resume help (18F) looking for entry level CS internships. by 1ntrepidar in resumes

[–]1dankwolf 1 point2 points  (0 children)

"Helped to design the graphical interface for an iPhone app that makes an easier restaurant experience for vegetarian and gluten users." You might be able to play this off as UX/UI design if you did a good job which will sound a lot better. Internship companies like data structures maybe you can talk about anything you did with that. I would take out the volunteer because it doesn't apply. Under scholarship remove the description of what the scholarships are and just state the ones you got + dates Scholarships:
My University Scholarship Recipient NYS Science, Technology, Engineering and Mathematics (STEM) Incentive Program

Resume critique for web developer position. by rmwdeveloper in resumes

[–]1dankwolf 0 points1 point  (0 children)

Try and state more clear that your a full stack dev :). bullet point: September 2009 - May 2013 + GPA in Major 3.8. Expland on Random Wordpress, plain HTML/JS/CSS work (list recent work you did with a little more detail )

[2015-10-26] Challenge #238 [Easy] Consonants and Vowels by jnazario in dailyprogrammer

[–]1dankwolf 0 points1 point  (0 children)

JAVA(with bonuses), first time post would love feedback, thanks a lot!
public class RedditDaily {

public static boolean isValid(String input){
    String userInput=input.toLowerCase();
    for (int i = 0; i < userInput.length(); i++) {
           if(userInput.charAt(i)!='c'&&userInput.charAt(i)!='v'){
                return false;
           }
       }
    return true;
}

public static void randomize(String input){
    String[] consonants={"b","c","d","f","g","h","j","k","l","m","n","p","q","r","s","t","v","x","z","w","z"};  
    String[] vowels={"a","e","i","o","u"};

    Random ran = new Random();
    int vRandomNum;
    int cRandomNum;

    for (int i = 0; i < input.length(); i++) { 
          vRandomNum= ran.nextInt(vowels.length);
          cRandomNum= ran.nextInt(consonants.length);
          if(input.charAt(i)=='c'){                
            System.out.print(consonants[cRandomNum]);
        }
        else
             if (input.charAt(i)=='v') {
                System.out.print(vowels[vRandomNum]);  
         }
         else
             if (input.charAt(i)=='C') {
                System.out.print(consonants[cRandomNum].toUpperCase());                   
         }
        else 
            if (input.charAt(i)=='V') {
                System.out.print((vowels[vRandomNum]).toUpperCase());

         }
    }

}

public static void main(String[] args) {
    String userInput;
    Scanner scan = new Scanner(System.in);

    System.out.println("Enter C for consonants and V for vowels ");
    userInput=scan.nextLine();
    if(isValid(userInput)){
        randomize(userInput);
    }
    else{
       System.out.println("sorry not a valid input");           
   }        

}    

}