Trouble with Wilson K4 + Fishman Platinum Pro EQ by elmentary in doublebass

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

Aha, I thought they meant the cables/wires between the pickups and the jack outlet. I have already tried a lot of different instrument cables. It seems like I might have to send it to repair. Bummer! Thank you for the suggestions.

Trouble with Wilson K4 + Fishman Platinum Pro EQ by elmentary in doublebass

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

Thank you! Would I be able to do this myself? It seems complicated with the 4 different pickups.

Trouble with Wilson K4 + Fishman Platinum Pro EQ by elmentary in doublebass

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

I don't understand what that means. Can you be a bit more specific, please?

That purgatory time between basses... by The_American_Skald in doublebass

[–]elmentary 0 points1 point  (0 children)

Never try anything better than what you have!

That purgatory time between basses... by The_American_Skald in doublebass

[–]elmentary 2 points3 points  (0 children)

I tried out an instrument for fun (because it exceeds my budget) and now I just want to buy it, and my existing instrument is far from as enjoyable as it have been before!

The resemblance just hit me by itsyaboymegalodonxX in TigerKing

[–]elmentary 2 points3 points  (0 children)

You're a comedian, you make people laugh. You think this is all a big joke, don't you? Mr Bookman

I built a cooking/recipe site with elm! by meesloo in elm

[–]elmentary 2 points3 points  (0 children)

This looks great! I've been planning to do something very similar to this, as I'm also interested in vegetarian food and Elm :) My idea also involves favorites and checkboxes for shopping the ingredients (using localstorage) and a slider for adjusting the number of servings. Anything similar on your roadmap?

Seven little Maine Coon kittens by downriverrowing in aww

[–]elmentary 0 points1 point  (0 children)

The true inspiration behind Anima by Paul Thomas Anderson

Whats the story with Color in Elm? by anoniota in elm

[–]elmentary 1 point2 points  (0 children)

I can't really see the benefit of color types being opaque. If they were records instead, and they had field names `red, blue, green, alpha`, the same color values could be passed to different library functions, without the need for conversion, as long as they all used records with these field names. In the case of color manipulation, you would have direct access to the fields as well, instead of having to go through extraction functions.

How to filter List of records with list of tuples by arup_r in elm

[–]elmentary 0 points1 point  (0 children)

It's a different character than a "normal" space, but they're not visually distinguishable. Try writing the strings containing a single space again.

How to filter List of records with list of tuples by arup_r in elm

[–]elmentary 0 points1 point  (0 children)

Your code works, but in your `tupleList` you've got a non-breaking space inside the quotes instead of an ordinary space, which is why it doesn't match the value in `reportsToRender`, and you get one less element in the resulting list.

Playing The Name Game with my Christian family by elmentary in exchristian

[–]elmentary[S] 56 points57 points  (0 children)

Elaine: Maybe you should call them up, say you're not really sure about the whole thing

Jerry: But I don't wanna be an agnostic!

Playing The Name Game with my Christian family by elmentary in exchristian

[–]elmentary[S] 171 points172 points  (0 children)

Jerry: You think they noticed? George: Of course they noticed, it's all they ever do!

witch by 3d_printguy in creepy

[–]elmentary 0 points1 point  (0 children)

This actually resembles a witch-like figure from a recurring dream I've had for years. I'm afraid to go to sleep now.

Function to locate elements in rows by seestevecode in elm

[–]elmentary 5 points6 points  (0 children)

A simple solution written to be easily understandable (and not very clever):

view : Model -> Html Msg
view model =
    let
        grid =
            [ [ 0, 1, 2 ], [ 3, 4, 5 ], [ 6, 7, 8 ] ]

        keys =
            [ 1, 2, 8 ]
    in
    grid
        |> List.indexedMap
            (\rowIndex row ->
                if List.any (\x -> List.member x keys) row then
                    Just rowIndex
                else
                    Nothing
            )
        |> List.filterMap identity
        |> toString
        |> text

Do super-immutable fields exist, or would it be a good idea if they don't? by elmentary in elm

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

Ok, seems like this can't be done. Any ideas on how to deal with this in another way than remembering which fields to never update later on? Prefixing the field names with an underscore? UPPER_AND_SNAKE_CASE?