Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by musicman (musicman@nu.federati.net), page 85

  1. musicman (musicman@nu.federati.net)'s status on Monday, 20-May-2019 10:11:08 EDT musicman musicman
    in reply to
    • lnxw48a1
    what do you ask?
    In conversation Monday, 20-May-2019 10:11:08 EDT from nu.federati.net permalink
  2. musicman (musicman@nu.federati.net)'s status on Sunday, 19-May-2019 20:58:06 EDT musicman musicman
    in reply to
    • lnxw48a1
    @lnxw48a1 yes
    In conversation Sunday, 19-May-2019 20:58:06 EDT from nu.federati.net permalink
  3. musicman (musicman@nu.federati.net)'s status on Sunday, 19-May-2019 18:07:08 EDT musicman musicman
    I've been thinking a lot about giving up on this Plaid application. Marvin's EOL care is pretty intense. Wendy is having a brutal month at work, and she has another year left on her masters. I need to find a remote position, but maybe Plaid isn't the right one. The thing is, I already had an interview with them.

    My boss is changing roles at Perforce. I want remote work anyway, but him leaving is making this more of a priority. It looks increasingly likely that Nik will not get the support team job at Perforce, which was another thing keeping me from being serious about looking. The fact that it is taking so long to find someone is completely draining.

    Wendy is pretty useless to help make decisions. She's literally only worked in the medical academy or not worked for the past 17 years.

    Nik is less useless but he's obsessed with getting out of Minneapolis, which is not an option for me. He also wants to work in an office. He did send me the Plaid link though.

    My parents have only worked in music education for the past 40 years or so.

    My brother works in math education, and lives in the same town he grew up in. Aside from the YMCA, he's only had one job.

    But back to Plaid. I have the logic down for the final bit, but awk is not doing what I want it to. Maybe I should use something besides awk. I need to get the second column of output so seems like the obvious choice. So far, porting this to python seems like it is going to be complicated.

    I tried to use subprocess but that didn't work. I'm not trying to use requests.

    Anyway, it's time to feed the cats again, I guess.
    In conversation Sunday, 19-May-2019 18:07:08 EDT from nu.federati.net permalink
  4. musicman (musicman@nu.federati.net)'s status on Sunday, 19-May-2019 17:31:42 EDT musicman musicman
    This album is an hour and 42 minutes long (rounding to the nearest minute).

    One Hour. 42 minutes.

    https://hypnoticdirgerecords.bandcamp.com/album/there-is-no-beauty-left-here
    In conversation Sunday, 19-May-2019 17:31:42 EDT from nu.federati.net permalink

    Attachments

    1. Invalid filename.
      There is no beauty left here..., by Exiled From Light
      from Hypnotic Dirge Records
      9 track album
  5. musicman (musicman@nu.federati.net)'s status on Saturday, 18-May-2019 21:25:22 EDT musicman musicman
    ffs windows. Thanks for the update about my audio...or for just taking a shit and needing a reboot.

    Anyway, problem "solved".
    In conversation Saturday, 18-May-2019 21:25:22 EDT from nu.federati.net permalink
  6. musicman (musicman@nu.federati.net)'s status on Saturday, 18-May-2019 21:21:10 EDT musicman musicman
    in reply to
    • musicman
    used my non-bluetooth headphones on a different computer. I was pretty bummed with the sound at first, but I think it might just have been the recording. Listining to a different bandcamp stream and it sounds good. Still no audio from machine one though. Cycling videos finished uploading, so going to reboot
    In conversation Saturday, 18-May-2019 21:21:10 EDT from nu.federati.net permalink
  7. musicman (musicman@nu.federati.net)'s status on Saturday, 18-May-2019 20:49:54 EDT musicman musicman
    I am not sure why I am so tired
    In conversation Saturday, 18-May-2019 20:49:54 EDT from nu.federati.net permalink
  8. musicman (musicman@nu.federati.net)'s status on Saturday, 18-May-2019 20:25:30 EDT musicman musicman
    in reply to
    • musicman
    I gave up for now
    In conversation Saturday, 18-May-2019 20:25:30 EDT from nu.federati.net permalink
  9. musicman (musicman@nu.federati.net)'s status on Saturday, 18-May-2019 18:51:44 EDT musicman musicman
    Is anybody else having issues with Bandcamp streaming? Clearly my Internet works
    In conversation Saturday, 18-May-2019 18:51:44 EDT from nu.federati.net permalink
  10. musicman (musicman@nu.federati.net)'s status on Friday, 17-May-2019 14:43:30 EDT musicman musicman
    if your ticket subject is "a couple issues", you are doing it wrong
    In conversation Friday, 17-May-2019 14:43:30 EDT from nu.federati.net permalink
  11. musicman (musicman@nu.federati.net)'s status on Friday, 17-May-2019 13:35:56 EDT musicman musicman
    One of the more radio friendly tracks to come out of HD: https://hypnoticdirgerecords.bandcamp.com/track/heartfelt-like-dying

    oh, nm, it's 9 minutes long...
    In conversation Friday, 17-May-2019 13:35:56 EDT from nu.federati.net permalink

    Attachments

    1. Invalid filename.
      Heartfelt Like Dying, by Immensity
      from Hypnotic Dirge Records
      from the album The Isolation Splendour
  12. musicman (musicman@nu.federati.net)'s status on Friday, 17-May-2019 09:30:06 EDT musicman musicman
    in reply to
    • musicman
    really though, it's a sign of how little I use email at work other than just reading mailing lists
    In conversation Friday, 17-May-2019 09:30:06 EDT from nu.federati.net permalink
  13. musicman (musicman@nu.federati.net)'s status on Friday, 17-May-2019 09:29:23 EDT musicman musicman
    I almost opened a support ticket with my wife. Maybe I email her too much from work...
    In conversation Friday, 17-May-2019 09:29:23 EDT from nu.federati.net permalink
  14. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 21:51:27 EDT musicman musicman
    comparing variables in bash is ok, but it seems like bash is deciding total is not an int. variables in bash are not typed, but total only has numerals.

    I can test simple math outside of the loop on $total and it doesn't work.

    I was using a variable name that made sense, but all the examples use i, so I just went with that.

    #/bin/bash

    total=`./total.sh | awk '{ print $2 }'`

    echo $total

    i=0

    #testing another method
    while [ $i < $total ]
    do
    curl -X POST https://sandbox.plaid.com/institutions/get -H 'Content-Type: application/json' --data @<(cat <<EOF
    {
    "client_id": "5cc312cee54277001312d232",
    "secret": "",
    "count": 1,
    "offset": $i
    }
    EOF
    )
    echo $i
    ((i++))
    done
    In conversation Thursday, 16-May-2019 21:51:27 EDT from nu.federati.net permalink
  15. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 21:04:39 EDT musicman musicman
    in reply to
    • musicman
    I did an inline EOF and that worked, but still curious why the above doesn't work
    In conversation Thursday, 16-May-2019 21:04:39 EDT from nu.federati.net permalink
  16. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 20:57:13 EDT musicman musicman
    I keep on getting told this isn't valid JSON. Can someone tell what I am doing?

    generate_post_data()
    {
    cat << EOF
    {
    "client_id": "5cc312cee54277001312d232",
    "secret": "",
    "count": 500,
    "offset": 1
    }
    EOF
    }

    #while $x = $total
    # test of function call in curl
    curl -X POST https://sandbox.plaid.com/institutions/get -H 'Content-Type: application/json' --data "(generate_post_data)"

    The actual error:
    {
    "display_message": null,
    "error_code": "INVALID_BODY",
    "error_message": "body could not be parsed as JSON",
    "error_type": "INVALID_REQUEST",
    "request_id": "WnnobVglKsKqYmZ",
    "suggested_action": null
    }
    In conversation Thursday, 16-May-2019 20:57:13 EDT from nu.federati.net permalink
  17. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 20:37:42 EDT musicman musicman
    • Craig Maloney ☕
    @craigmaloney not sure how far you've gone back in the HD catalog, but if you want to include some dungeon synth, this is great: https://hypnoticdirgerecords.bandcamp.com/track/lament-of-the-withering-world

    It definitely turns into atmospheric black, but the beginning is pretty much pure dungeon synth
    In conversation Thursday, 16-May-2019 20:37:42 EDT from nu.federati.net permalink

    Attachments

    1. Invalid filename.
      Lament of the Withering World, by Winds of Sorrow
      from Hypnotic Dirge Records
      from the album Through Twilight...
  18. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 17:10:24 EDT musicman musicman
    I was thinking about getting more coffee, but I had pizza with tomato today, and I can feel the acid on my throat. meh
    In conversation Thursday, 16-May-2019 17:10:24 EDT from nu.federati.net permalink
  19. Willow (salixlucida@mastodon.sdf.org)'s status on Thursday, 16-May-2019 13:43:50 EDT Willow Willow

    Corporations profit off #racism. It's time for us to stand up to them https://www.theguardian.com/commentisfree/2019/may/16/racial-justice-corporations

    In conversation Thursday, 16-May-2019 13:43:50 EDT from mastodon.sdf.org permalink Repeated by musicman

    Attachments

    1. Invalid filename.
      Corporations profit off racism. It's time for us to stand up to them | Rashad Robinson
      from the Guardian
      We must prevent corporations from writing the exploitation of black and brown labor into the law in permanent ink
  20. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 15:27:46 EDT musicman musicman
    #TeamCity is 1.2 GB. wtf
    In conversation Thursday, 16-May-2019 15:27:46 EDT from nu.federati.net permalink
  • After
  • Before
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

Jonkman Microblog is a social network, courtesy of SOBAC Microcomputer Services. It runs on GNU social, version 1.2.0-beta5, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All Jonkman Microblog content and data are available under the Creative Commons Attribution 3.0 license.

Switch to desktop site layout.