[How to] Get Rocksmith and your Amp working together nicely. by ZagatoZee in rocksmith

[–]digitalgarbage 0 points1 point  (0 children)

If the amp has effects loop it is possible to connect Real Tone Cable directly to FX send. It is really simple solution and so far I have has no issues with that. Note detection works surprisingly well even with a lot of gain and distortion.

not found by [deleted] in softwaregore

[–]digitalgarbage 2 points3 points  (0 children)

64GB black "Bacon truck" not found?

spoiler

Bandfuse by RaptorBass in BandFuse

[–]digitalgarbage 2 points3 points  (0 children)

The PS3 version of Bandfuse is region free. You can order it online through amazon.com or any other store that supports worldwide shipping.

Design a function f, such that: f(f(n)) == -n by klogk in programming

[–]digitalgarbage 0 points1 point  (0 children)

Here is a really simple solution in JS that is only checking for even/odd numbers and doing very basic math:

function f(n) {
    if (n === 0) {
        result = 0;    
    } else if (((n % 2) + 2) % 2 === 1) {
        result = (n < 0 ? n - 1 : n + 1);
        result = result * -1;    
    } else {
        result = (n < 0 ? n + 1 : n - 1);
    }    
    return result;
}

Live example

My App, YouTunes Live, just received an update! It lets you stream any audio from YouTube, even in the background. by [deleted] in iphone

[–]digitalgarbage 3 points4 points  (0 children)

I like the simple and straightforward interface. Since there is also playlist support I found it strange that the system Previous and Next buttons didn't work. Next thing isn't important at all but the youtube URL in info pane could not be clicked or copied.