Jonkman Microblog
  • Login
Show Navigation
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

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

  1. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 13:36:14 EDT musicman musicman
    Just over halfway through the month, and I have eclipsed my April ticket total. Have I mentioned we are hiring? Actually, we are hiring one in the UK and one here.
    In conversation Thursday, 16-May-2019 13:36:14 EDT from nu.federati.net permalink
  2. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 12:25:52 EDT musicman musicman
    in reply to
    • lnxw48a1
    @lnxw48a1 6.5 hours to Kansas City. Way better than Cali. #justsayin
    In conversation Thursday, 16-May-2019 12:25:52 EDT from nu.federati.net permalink
  3. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 11:25:04 EDT musicman musicman
    • lnxw48a1
    @lnxw48a1 I know you are looking further south, but I think this might be a good fit for you otherwise

    Position Title: Desktop Support Engineer
    Location: Minneapolis, MN
    Reports to: Director of IT



    Position Summary
    The Desktop Support Engineer is responsible for the effective delivery of high-quality computer and application support services to the Perforce internal user community.

    Essential Functions

    Investigate, troubleshoot and resolve daily issues related to workstations, peripherals, phones, mobile devices, operating systems (MS Windows & Apple products), and business applications
    Provide installation, configuration and support of desktop/laptop computers, peripheral equipment and software
    Collaborate with the Perforce Infrastructure & Web Applications teams to resolve complex issues and ensure efficient operation of the business computing environment
    Work with hiring managers to order hardware / software for new employees and set up new computers in a timely manner
    Perform routine updates of computer hardware and software
    Rebuild, configure and repair computer equipment, as needed
    Research IT purchase requests, obtain quotes & approvals, create purchase orders, and track, receive, and deploy equipment as necessary
    Maintain hardware/software inventory, including software license inventory
    Provide IT support at Perforce events and company meetings as needed
    Provide technical support and assistance for corporate conferencing solutions, i.e., WebEx, Zoom, and conference room audio & video devices
    Actively support and manage current tickets, open issues, and project support activities

    Required Education, Experience and Skills

    BA/BS degree or equivalent experience
    3+ years of desktop support experience in a heterogeneous environment (Windows, Mac, Linux)
    Superior customer service skills; ability to work comfortably with customers with a wide range of personalities and technical expertise
    Demonstrated proficiency in diagnosing and resolving complex problems with computer hardware and software
    Highly motivated self-starter – able to work quickly and independently with minimal supervision

    Ability to communicate clearly and concisely, both orally and in writing

    Strong sense of achievement and willingness to contribute to a dynamic team environment

    Familiarity with Microsoft Office 365 and ZenDesk ticketing system a plus

    Working Conditions and/or Physical Demands

    Must be able to lift 50-100 pounds
    In conversation Thursday, 16-May-2019 11:25:04 EDT from nu.federati.net permalink
  4. musicman (musicman@nu.federati.net)'s status on Thursday, 16-May-2019 10:47:24 EDT musicman musicman
    • Minnesota, USA
    For anyone in the #Minneapolis !Minnesota area tomorrow (May 17), I've got two tickets with your name on it for the Minneapolis City SC match. Free parking. Game at 7pm.
    In conversation Thursday, 16-May-2019 10:47:24 EDT from nu.federati.net permalink
  5. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 21:18:55 EDT musicman musicman
    in reply to
    • musicman
    although, there may well be better way to write this loop. Gotta write a loop regardless
    In conversation Wednesday, 15-May-2019 21:18:55 EDT from nu.federati.net permalink
  6. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 21:17:37 EDT musicman musicman
    in reply to
    • musicman
    wait, no I didn't. I solved a different issue. this issue remains
    In conversation Wednesday, 15-May-2019 21:17:37 EDT from nu.federati.net permalink
  7. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 21:16:36 EDT musicman musicman
    in reply to
    • musicman
    I have discovered a simpler solution
    In conversation Wednesday, 15-May-2019 21:16:36 EDT from nu.federati.net permalink
  8. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 21:14:15 EDT musicman musicman
    in reply to
    • musicman
    and yes, I know I published the secret. It's a sandbox and I rotated it anyway
    In conversation Wednesday, 15-May-2019 21:14:15 EDT from nu.federati.net permalink
  9. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 21:12:02 EDT musicman musicman
    This gives me the output I want as a starter

    curl -X POST https://sandbox.plaid.com/institutions/get -H 'Content-Type: application/json' -d '{
    "client_id": "5cc312cee54277001312d232",
    "secret": "fc3906bc934b52a10df62c11f0e94e",
    "count": 500,
    "offset": 50000
    }' 2>&1 | grep 77
    100 203 100 77 100 126 255 418 --:--:-- --:--:-- --:--:-- 674

    Then though, I want the 4th column. It seems like awk is performing the operation on the initial output, not the grepped output, as seen below.

    Any tips?

    d@zareason:~/quickstart/python$ curl -X POST https://sandbox.plaid.com/institutions/get -H 'Content-Type: application/json' -d '{
    "client_id": "5cc312cee54277001312d232",
    "secret": "fc3906bc934b52a10df62c11f0e94e",
    "count": 500,
    "offset": 50000
    }' 2>&1 | grep 77 | awk '{print $4}'
    0
    d@zareason:~/quickstart/python$ curl -X POST https://sandbox.plaid.com/institutions/get -H 'Content-Type: application/json' -d '{
    "client_id": "5cc312cee54277001312d232",
    "secret": "fc3906bc934b52a10df62c11f0e94e",
    "count": 500,
    "offset": 50000
    }' 2>&1 | grep 77 | awk '{print $5}'
    0
    d@zareason:~/quickstart/python$ curl -X POST https://sandbox.plaid.com/institutions/get -H 'Content-Type: application/json' -d '{
    "client_id": "5cc312cee54277001312d232",
    "secret": "fc3906bc934b52a10df62c11f0e94e",
    "count": 500,
    "offset": 50000
    }' 2>&1 | awk '{print $5}'
    %
    Left
    0
    In conversation Wednesday, 15-May-2019 21:12:02 EDT from nu.federati.net permalink
  10. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 21:00:18 EDT musicman musicman
    "the closest thing to this that I could find in man curl (don't ever google for that!)"

    lol
    In conversation Wednesday, 15-May-2019 21:00:18 EDT from nu.federati.net permalink
  11. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 16:12:24 EDT musicman musicman
    Bro, you are killing my metrics.
    In conversation Wednesday, 15-May-2019 16:12:24 EDT from nu.federati.net permalink
  12. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 13:59:37 EDT musicman musicman
    A bit Judas Priesty: https://wackenmetalbattlecanada.bandcamp.com/track/derailed-fryzone
    In conversation Wednesday, 15-May-2019 13:59:37 EDT from nu.federati.net permalink

    Attachments

    1. Invalid filename.
      Derailed - Fryzone, by Wacken Metal Battle Canada
      from Wacken Metal Battle Canada
      from the album Wacken Metal Battle Canada Compilation Vol. 2
  13. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 13:24:25 EDT musicman musicman
    • Metal
    I'm not sure if this qualifies as power metal. It's pretty slow for power !metal. It's kinda like if Led Zeppelin decided to do power metal: https://wackenmetalbattlecanada.bandcamp.com/track/celestial-ruin-wrath-of-the-dragon
    In conversation Wednesday, 15-May-2019 13:24:25 EDT from nu.federati.net permalink

    Attachments

    1. Invalid filename.
      Celestial Ruin - Wrath of The Dragon, by Wacken Metal Battle Canada
      from Wacken Metal Battle Canada
      from the album Wacken Metal Battle Canada Compilation Vol. 2
  14. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 12:00:57 EDT musicman musicman
    Kinda emoy, but it works: https://wackenmetalbattlecanada.bandcamp.com/track/beg-for-mercy-dying-hours
    In conversation Wednesday, 15-May-2019 12:00:57 EDT from nu.federati.net permalink

    Attachments

    1. Invalid filename.
      Beg For Mercy - Dying Hours, by Wacken Metal Battle Canada
      from Wacken Metal Battle Canada
      from the album Wacken Metal Battle Canada Compilation Vol. 2
  15. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 11:19:05 EDT musicman musicman
    looks like our customers finally woke up. Did I mention we are hiring?
    In conversation Wednesday, 15-May-2019 11:19:05 EDT from nu.federati.net permalink
  16. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 11:19:03 EDT musicman musicman
    looks like our customers finally woke up. Did I mention we are hiring?
    In conversation Wednesday, 15-May-2019 11:19:03 EDT from nu.federati.net permalink
  17. musicman (musicman@nu.federati.net)'s status on Wednesday, 15-May-2019 10:30:01 EDT musicman musicman
    jazzy, at parts: https://wackenmetalbattlecanada.bandcamp.com/track/bookakee-a-a
    In conversation Wednesday, 15-May-2019 10:30:01 EDT from nu.federati.net permalink

    Attachments

    1. Invalid filename.
      Bookakee - A.A., by Wacken Metal Battle Canada
      from Wacken Metal Battle Canada
      from the album Wacken Metal Battle Canada Compilation Vol. 1
  18. musicman (musicman@nu.federati.net)'s status on Tuesday, 14-May-2019 21:48:29 EDT musicman musicman
    I have not liked the other episodes of this show, but this one is good

    Episode 4: (B2B) Caeli Collins, VP Customer Success & Support Panzura
    Key Insights o First, no relation to our previous guest :) o Their attrition is super low ~2% (TSIA says average is about 15%). They have built a collaborative culture in support e.g., Level 3 people do not own cases,a they just help other folks close theirs. o Panzura NPS is 82! Average for tech industry is around 21. One of th o One interesting metric that Caeli does NOT keep track of is time-to-close. She explains why in the podcast. Caeli also keeps track of this unique metric (which I haven’

    * duration: 44:43, Played: 29:24

    * Published: 3/19/19 5:27:27 PM

    * Episode Download link (83 MB): https://nu.federati.net/url/223634

    * Show Notes: https://nu.federati.net/url/223635

    * Episode feed: The Customer Support Podcast - https://anchor.fm/s/9338994/podcast/rss
    In conversation Tuesday, 14-May-2019 21:48:29 EDT from nu.federati.net permalink

    Attachments

    1. File without filename could not get a thumbnail source.
      Episode 4: (B2B) Caeli Collins, VP Customer Success & Support Panzura by The Customer Support Podcast
      By Episode 4: (B2B) Caeli Collins, VP Customer Success & Support Panzura by The Customer Support Podcast from Anchor FM Inc.
  19. musicman (musicman@nu.federati.net)'s status on Tuesday, 14-May-2019 20:17:47 EDT musicman musicman
    in reply to
    • musicman
    Indeed Day Tripper Pale Ale if you're curious
    In conversation Tuesday, 14-May-2019 20:17:47 EDT from nu.federati.net permalink
  20. musicman (musicman@nu.federati.net)'s status on Tuesday, 14-May-2019 20:09:01 EDT musicman musicman
    I don't normally drink alcohol, but a friend left some beer here and I've been beating my head against the wall for a couple of weeks on this project, so I thought fuck it, maybe I could use some out of the box thinking. I'm like halfway through the can and now all I want to do is sleep. It worked for like 20 minutes though.
    In conversation Tuesday, 14-May-2019 20:09:01 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.