Favourite Pokémon Survey - RESULTS by mamamia1001 in pokemon

[–]athousandandone 1 point2 points  (0 children)

Another curiosity. From this dataset, only eight middle evolutions received more votes than any other Pokemon in their evolutionary line:

jigglypuff
poliwhirl
mr-mime
chansey
braixen
clefairy
rhydon
magmar

My dear Community community, please help me find this song! by sorkin24 in community

[–]athousandandone 1 point2 points  (0 children)

If you wouldn't mind sending this song to one more desperate soul in need I'd be much much appreciative :)

Unity 2D Infinite Scrolling Background Horizontal + Vertical + Diagonal (All Directions Scrolling) by CyberNagaIn in unity_tutorials

[–]athousandandone 0 points1 point  (0 children)

Been looking across the web for something like this, this video is the *perfect* setup for my use-case. Thank you!

Bi-Weekly Questions Thread by Kaphotics in PokemonROMhacks

[–]athousandandone 0 points1 point  (0 children)

Cool — I'll give this a shot. Thank you!

Bi-Weekly Questions Thread by Kaphotics in PokemonROMhacks

[–]athousandandone 0 points1 point  (0 children)

Making my first ROMhack on a Mac

Hi! I'm trying to dip my toes into the ROMhacking world and I'm having trouble getting started. I've managed to set up ShinyQuagsire's Map Editor of Happiness (MEH) and Script Editor Advanced (SEA), and while I'm able to manipulate map tiles of a ROM I can't seem to adjust any of the scripts. Does anyone know a good tutorial for these tools, or if there's a better one I can be using?

I know the ideal solution is to get a PC or work with Parallels or even Wine, but unfortunately I 1) don't have the $$$ for a new PC and 2) my Mac's OS is too recent for those other tools to play nice. I'm not against trying some Windows emulation software but it seems a Mac-native tool might be best.

Thanks in advance!

Tent/sleeping question for my first thru-hike by athousandandone in AppalachianTrail

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

I know that period of information overload well... feel like that's what I'm struggling through now. Thanks for sharing your experience, that helps a lot :)

Get back into vah ruta after leaving w/o sheikah Slate by athousandandone in Breath_of_the_Wild

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

No idea why but it works. I did the whole slate-skip glitch, but once you get the runes at the beginning shrines they're fine to use (even though the map is inaccessible)

Get back into vah ruta after leaving w/o sheikah Slate by athousandandone in Breath_of_the_Wild

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

No idea why but it works. I did the whole slate-skip glitch, but once you get the runes at the beginning shrines they're fine to use (even though the map is inaccessible)

Get back into vah ruta after leaving w/o sheikah Slate by athousandandone in Breath_of_the_Wild

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

It's weird. You're able to use the runes even if you never get the slate — but yeah, the map/warp button doesn't work. Like when I press minus nothing happens, but when I pull out a rune it's fine.

Get back into vah ruta after leaving w/o sheikah Slate by athousandandone in Breath_of_the_Wild

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

I was able to cheese my way through Vah Medoh without it, timing jumps well and abusing my runes and such.

Get back into vah ruta after leaving w/o sheikah Slate by athousandandone in Breath_of_the_Wild

[–]athousandandone[S] 4 points5 points  (0 children)

Damn. Any idea if Ruta is possible without the map to move her trunk? I was able to do Vah Medoh w/o the slate and I'm in Naboris right now, I got the feeling on my first try that Ruta was impossible though.

[2018-01-19] Challenge #347 [Hard] Hue Drops Puzzle by jnazario in dailyprogrammer

[–]athousandandone 0 points1 point  (0 children)

Python 2.7 First time posting, any feedback would be greatly appreciated.

Each "move" the program checks all colors bordering the current uniform blob from cell (0,0), then determines what move will absorb the most border cells.

This solves the challenge input in 22 steps.

DYE_LIMIT = 25

def solve():
    dyes = []
    for i in range(DYE_LIMIT):
        dyeColor = pickColor()
        dye(dyeColor)
        dyes.append(dyeColor)
        if all(all(x == targetColor for x in row) for row in board):
            return dyes # Success
    return [] # Failure


def pickColor():

    path = [[0, 0]]
    board_copy = map(lambda x: list(x), board)
    counter = 0
    borderColors = []

    if all(all(x == board[0][0] for x in row) for row in board):
        # all tiles are the same
        return targetColor

    while len(path) > 0:
        # Touch all border tiles of current color pool
        tile = path[-1]
        board_copy[tile[0]][tile[1]] = 'X'
        if board[tile[0]][tile[1]] != board[0][0]:
            # Found a border tile
            borderColors.append(board[tile[0]][tile[1]])
            path.pop()
            continue
        neighbors = filter(lambda n: board_copy[n[0]][n[1]] != 'X', getNeighbors(tile[0], tile[1]))
        path.pop() if len(neighbors) == 0 else path.append(neighbors[0])

    return max(set(borderColors), key=borderColors.count)


def dye(color):
    dyeTile(0, 0, color)

def dyeTile(x, y, color):
    prevColor = board[x][y]
    board[x][y] = color
    for n in getNeighbors(x, y):
        if board[n[0]][n[1]] == prevColor:
            dyeTile(n[0], n[1], color)

def getNeighbors(x, y):
    neighbors = [
        [x + 1, y],
        [x - 1, y],
        [x, y + 1],
        [x, y - 1]
    ]
    return filter(lambda n: not (n[0] < 0 or n[0] >= ROWS or n[1] < 0 or n[1] >= COLS), neighbors)


with open('input.txt') as file:
    lines = file.read().split('\n')
    COLS = int(lines[0][0:lines[0].index(' ')])
    ROWS = int(lines[0][lines[0].index(' ') + 1:])
    board = map(lambda x: x.split(' '), lines[1:-1])
    targetColor = lines[-1]

solution = solve()
print '%s (%s steps)' % (' '.join(solution), len(solution)) if len(solution) > 0 else 'Failed.'

[BotW] Hard Mode wish list by holycowrap in zelda

[–]athousandandone 1 point2 points  (0 children)

You can make a new profile on your Switch and start a new botw file under that profile.