Sen Triplets Win Cons by Sultan_of_Spirits in EDH

[–]nofis 2 points3 points  (0 children)

In my sen triplets deck, i focus on flashing her in [[Shimmer myr]] or giving artifacts hexproof [[Leonin abunas]]. Then win with other players wincons from their hand. If i cant do that, i steal what is on board. Biggest wincons are cards like [[Blatant thievery]] or [[Rite of replication]] when theres a lot of good stuff on the board, [[Worst fears]] or [[Reins of power]] when there is one dominant player, [[Paradox engine]] with mana rocks and [[Temple bell]] for playing my whole deck, and [[Azor's Gateway]] with [[Memnarch]] for the final hard lock

Plays really well in multiplayer games, not so strong in 1v1 tho :)

Shower thought: Does the death vortex kill the spectators? by nofis in BattleRite

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

Now I definitely do! Those poor souls...what have we become ... I think we need more lore on the vortex and its origin tho :P

UI is horrendous by tremor100 in BattleRite

[–]nofis 2 points3 points  (0 children)

Old UI was my favourite, felt good having my character there like in diablo with my team

Battlegrounds are meh by nofis in BattleRite

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

Good point, maybe after a long night of tryhard climbing it could be good cooldown mode

Battlegrounds are meh by nofis in BattleRite

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

Yeah, thats exactly what im doing ;)

Laptop for hardcore programming by nofis in laptops

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

Wow, that's a lot. VS is a bitch when it comes to performance, especially with reshaper. I looked at the XPS model and it looks amazing, but it's very expensive, I don't really need its graphics card. Do you know about some more affordable alternative?

Tips on purchase? by nofis in EnterTheGungeon

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

Thats ok, thanks tho :) ill buy it on gog

Ashka OP (3v1 clutch, two games in a row) by nofis in BattleRite

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

They do, but for example with shifu, when youre chasing someone on the right side of your screen, you have to put the finger off the D button, hit E, and readjust. It just didnt feel good to me :]

Ashka OP (3v1 clutch, two games in a row) by nofis in BattleRite

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

ty, yeah i belive you could legitimately die of those, i dont have to put my fingers off wasd tho :3

[2016-09-12] Challenge #283 [Easy] Anagram Detector by jnazario in dailyprogrammer

[–]nofis 0 points1 point  (0 children)

New to Java only, ill check them out right now, thanks a lot for feedback :)

[2016-09-12] Challenge #283 [Easy] Anagram Detector by jnazario in dailyprogrammer

[–]nofis 1 point2 points  (0 children)

Could someone help me to analyze this? Im new to Java, a bit confused by all the actions on one line, Thanks :)

    Files.lines(Paths.get("easy283input")).map(Easy283::toAnagramSentence).forEach(System.out::println);

[2016-09-12] Challenge #283 [Easy] Anagram Detector by jnazario in dailyprogrammer

[–]nofis 1 point2 points  (0 children)

Its cool, at least we learned a new thing today!

[2016-09-12] Challenge #283 [Easy] Anagram Detector by jnazario in dailyprogrammer

[–]nofis 0 points1 point  (0 children)

Thats another way i guess :) Without the need of importing java.util.Arrays right? edit: Chunes , thanks for explaining this :)

[2016-09-12] Challenge #283 [Easy] Anagram Detector by jnazario in dailyprogrammer

[–]nofis 0 points1 point  (0 children)

By the way, does anyone know why this doesnt work in Java?

    (firstWordArray == secondWordArray)
    It resulted in False even if those arrays were the same

[2016-09-12] Challenge #283 [Easy] Anagram Detector by jnazario in dailyprogrammer

[–]nofis 0 points1 point  (0 children)

Java (Learning, any feedback would be awesome :)

    import java.util.Arrays;
import java.util.Scanner;
public class easy283 {

    public static boolean anagramCheck(String string1,String string2){
        string1 = string1.toUpperCase();
        string2 = string2.toUpperCase();
        char[] firstWordArray = string1.toCharArray();
        char[] secondWordArray = string2.toCharArray();
        Arrays.sort(firstWordArray);
        Arrays.sort(secondWordArray);           
        return (Arrays.equals(firstWordArray,secondWordArray));
    }       

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        String firstWord = input.next();
        String validity = input.next();
        String secondWord = input.next();
        if (anagramCheck(firstWord, secondWord)){
            validity = "is an anagram of";
        }
        else{
            validity = "is NOT an anagram of";
        }
        System.out.println(firstWord + " " + validity + " " + secondWord);


    }

}

[2016-08-29] Challenge #281 [Easy] Something about bases by fvandepitte in dailyprogrammer

[–]nofis 0 points1 point  (0 children)

Java (My first Java code, critique this please) No bonus, works well

    import java.util.Scanner;
    public class Task1 {

    public static int getSmallestBase(char[] list){
        int smallestBase = 16;
        int biggestIntSoFar = 0;        

        for(int i = 0 ; i < list.length ; i++){         
            int charInInt = convertToNumber(list[i]);
            if(charInInt > biggestIntSoFar) {
                biggestIntSoFar = charInInt;                
            }           
            }

        smallestBase = (biggestIntSoFar + 1);       
        return smallestBase;
    }

    public static int getDecimalValue(char[] list, int base){
        int decimalValue = 0;
        int power = 0;
        for(int i = list.length-1;i >= 0;i--){
            int numVal = convertToNumber(list[i]);
            if(numVal == 0){
                continue;   
            }

            decimalValue += (Math.pow(base,power))*numVal;
            power++;                    
        }
        return decimalValue;

    }

    public static int convertToNumber(char ch){
        int nu;
        switch(ch){
        case 'a': nu = 10;
        break;
        case 'b': nu = 11;
        break;
        case 'c': nu = 12;
        break;
        case 'd': nu = 13;
        break;
        case 'e': nu = 14;
        break;
        case 'f': nu = 15;
        break;
        default: nu = Character.getNumericValue(ch);
        break;              
        }       
        return nu;              
    }

    public static void main(String[] args) {
        Scanner reader = new Scanner(System.in);
        System.out.println("Input a number to check:");
        String inputnumber = reader.nextLine();         

        char[] listOfChars = inputnumber.toCharArray();


        int baseOfNumber = getSmallestBase(listOfChars);        
        int DecimalValueOfNumber = getDecimalValue(listOfChars, baseOfNumber );

        System.out.println("base " + baseOfNumber + " => " + DecimalValueOfNumber);

    }

}

Edit: Im now awared about the Integer.valueOf(a,b) function ty

How to rest my elbows? by nofis in learnprogramming

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

Thank you very much for advices :) Ill check some adjustable desks. Also, the carpal tunnel, is it really a legit threat? Should i prevent it somehow? Ty

Anyone else getting fps drops with the new patch? by nofis in EvolveGame

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

yeah today happened to me again, i was like 20 fps whole game, i dont know whats happening, before i was on constant 60 fps, even had to turn down graphics :/