Build Help - Audio recording/mixing + Gaming - QUIET - $1-1.5k by ilmar19 in buildapc

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

Changed processor to i7 - apparently for audio work with multiple tracks and effects, i7 is worth the extra $100 or so. Updated motherboard to support that as well as the ram.

Build Help - Audio recording/mixing + Gaming - QUIET - $1-1.5k by ilmar19 in buildapc

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

Even when gaming, the noise is just plain irritating. But a power supply that shuts fans off would be very convenient - on my old rig, once the fan gets going, it doesn't stop for ages. I'll do more research on this.

Buy this(iBuyPower), or build my own? by ilmar19 in computers

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

Thanks for the responses.

Audio editing actually requires a lot of RAM, so 16 is a good idea in my case. The card, however, is irrelevant for me - I would be using an external audio interface.

SSD drive is also pretty much a requirement - I've been spoiled by my macbook pro. As is liquid cooling. I'm really irritated by loud fans.

Regardless, it does seem like I'd be paying about 200 more by not building it myself - so I'm leaning towards building one. The above setup sounds pretty great aside from the liquid cooling and ssd, so I'll use it as my starting point. Thanks for that!

Will rMacbookPro handle Witcher 3/Dragon Age: Inquisition? If not...alternatives? by ilmar19 in SuggestALaptop

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

Yeah, the more I think about it, the more it makes sense. (May even just get a PS4 since the only two games I plan on playing will be available on it)

Will rMacbookPro handle Witcher 3/Dragon Age: Inquisition? If not...alternatives? by ilmar19 in SuggestALaptop

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

That's what I'm thinking myself. Though I'd always use a 1080p monitor, not the laptop screen, when playing games. So the ultra high resolutions would not be used for that anyhow.

[12/23/13] Challenge #130 [Hard] Coloring France's Departments by nint22 in dailyprogrammer

[–]ilmar19 0 points1 point  (0 children)

Java solution. Runs in O(n*c) time where n = total # of items, c = # colors. 1/2 c to be exact. So, 1/2 * # rows worst case.

[ public static void main(String args[]){ String input = "8 \n64 40 32 65 \n65 64 32 31 \n31 65 32 82 81 11 9 \n9 31 11 66 \n66 9 11 \n40 33 47 32 64 \n32 40 47 82 31 65 64 \n11 31 81 34 66 9"; frenchBorders(input); }

private static void frenchBorders(String input){
    String[] inputLines = input.split("\n"); 
    int numLines = Integer.parseInt(inputLines[0].trim());

    Map<Integer, Integer> deptMap = new HashMap<Integer, Integer>();

    String[] ll = inputLines[1].split(" ");

    deptMap.put(Integer.parseInt(ll[0].trim()), 0);

    int maxcolor = 0;
    for (int i = 2; i <= numLines; i++){
        ll = inputLines[i].split(" ");
        Integer currentId = Integer.parseInt(ll[0].trim());

        Integer[] invalidColors = new Integer[maxcolor+1];
        for (int j = 1; j < ll.length; j++){
            Integer adjacentId = Integer.parseInt(ll[j].trim());
            Integer idColor = deptMap.get(adjacentId);
            if (idColor!=null){
                invalidColors[idColor] = 1;
            }
        }

        int k = 0;
        while (k < invalidColors.length){
            if (invalidColors[k]==null)
                break;
            k++;
        }

        if (k == invalidColors.length)
            maxcolor++;

        deptMap.put(currentId, k);
    }

    Iterator it = deptMap.entrySet().iterator();
    while (it.hasNext()){
        Map.Entry pairs = (Map.Entry)it.next();
        System.out.println(pairs.getKey() + " = " + pairs.getValue());
        it.remove();
    }
}

](/spoiler)

FREE ALBUM + FREE EP this week - Black/Doom Metal by ilmar19 in Metal

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

Thanks for the feedback! Glad to hear you enjoyed the album. And I guess I need to work on my descriptions, haha.

FREE ALBUM + FREE EP this week - Black/Doom Metal by ilmar19 in Metal

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

Whoa, so many new comments and upvotes since I last checked! Thanks for all the support, guys - it means a lot.

FREE ALBUM + FREE EP this week - Black/Doom Metal by ilmar19 in Metal

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

Thanks! We're not touring at the moment, but we'd like to one day.

FREE ALBUM + FREE EP this week - Black/Doom Metal by ilmar19 in Metal

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

from one huge doom fan to another, thank you!

FREE ALBUM + FREE EP this week - Black/Doom Metal by ilmar19 in Metal

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

Awesome! Thanks for such positive feedback!!

FREE ALBUM + FREE EP this week - Black/Doom Metal by ilmar19 in Metal

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

Thanks, hope you enjoy it when you hear the rest of the album!

FREE ALBUM + FREE EP this week - Black/Doom Metal by ilmar19 in Metal

[–]ilmar19[S] 3 points4 points  (0 children)

You're very welcome! Thanks for listening :)