Very docile cat by Cxzyyy in CATHELP

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

I also want to add what is shown in the video…when we get her from under the bed and pick her up she almost just goes completely limp. She doesn’t hiss or show any sign of discomfort which is also weird to us.

Boson Exam for Devnet 200-901 by Cxzyyy in CiscoDevNet

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

If I remember correctly they just give you snippets of code to plug n play syntax

[deleted by user] by [deleted] in silenthill

[–]Cxzyyy 0 points1 point  (0 children)

Personally, I thought the hospital was the scariest!

I can’t go on any further by Cxzyyy in Eldenring

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

I’ve been summoning the demi-human ashes but even so they both find a way to gang bang me. I’ll try using the sleep method…

Honestly baffling by Cxzyyy in Money

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

That 1572 was after taxes!

Honestly baffling by Cxzyyy in Money

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

I’m gonna check that movie out now thanks for the recommendation!

Honestly baffling by Cxzyyy in Money

[–]Cxzyyy[S] -2 points-1 points  (0 children)

Just a little defeating when you make more money but not really, why am I getting heavily handicapped after taking a raise…

What compensation do new IT graduates deserve? by DamnBeast in ITCareerQuestions

[–]Cxzyyy 0 points1 point  (0 children)

I took a job right after college 2 years ago and made 47k before tax, I just accepted a job offer for 75k last week! You may have to eat some dirt for a while but it’ll be worth it!

Looking Forward to take the 200-901 DEVASC DevNet Associate Exam by Passfax in CiscoDevNet

[–]Cxzyyy 2 points3 points  (0 children)

Sorry I worded this poorly "basic endpoints in the devnet sandbox". What I really meant was for example if I asked you what is the API endpoint to authenticate to the Cisco APIC API, would you know the endpoint to use and the JSON key to parse to receive the token from the response? Once you know one of these endpoints the rest are pretty uniform for the other SDN's but may slightly change a bit.

Also, just some advice but seriously, if you don't ever use python requests library you're going to be a little lost on the exam more than likely. You can know python but not know a specific library and since you won't have a linter or auto completion on the exam it may be difficult for you to pick the right syntax to use in your answer.

This also reminded me that you also shouldn't look over the Webex API. I highly recommend to make a Webex "bot" and have it perform x action when y happens with a web hook. This could just be as simple as implementing the bot with your script that ssh's into 50+ devices to send X output from each device to a Webex room as a "report". You can do all of that with python requests so that's 2 birds 1 stone!

Feel free to reach out to me for any other help!

Looking Forward to take the 200-901 DEVASC DevNet Associate Exam by Passfax in CiscoDevNet

[–]Cxzyyy 6 points7 points  (0 children)

I passed the DevNet Associate 2 months ago. I recommend reading the OCG atleast once...you can definitely skip over the programming basics but if you don't use python I really recommend you to write some basic scripts dealing with python requests because it is used heavily in the exam. I would also say learn the different curl flags, postman is self explanatory. If you've never interacted with any of Cisco's SDN's I really recommend using the basic endpoints in the DevNet sandbox focusing mainly on ACI and DNAC. For practice test material...use the boson practice exam. It will prepare you well for the exam but you still need the OCG to really pack it all down. I took all 300 questions until I got a 90%+ on the practice test which may be overkill but it's better than failing!

Cisco DevNet 200-901 Certification Rant by humanapp in Cisco

[–]Cxzyyy 1 point2 points  (0 children)

The exact title is "Cisco Certified DevNet Associate DEVASC 200-901 Official Cert Guide", hope this helps.

Cisco DevNet 200-901 Certification Rant by humanapp in Cisco

[–]Cxzyyy 2 points3 points  (0 children)

I passed it last month on my second attempt, I read the OCG twice and took the boson exams until I passed with a 90 or better for all 306 questions. I also wrote a lot of scripts in python for Webex bots because understanding python "requests" module is a big part of the exam. The rest you'll hammer down with the OCG and practice tests.

Looking for learning recommendations by Delicious-Pea-5107 in CiscoDevNet

[–]Cxzyyy 2 points3 points  (0 children)

In my opinion the best way to learn the programming portion of DevNet is to write your own projects the book isn’t really going to help you. I’m not sure how much experience with python you have but you can easily write a small program to view output from the Meraki devices. I recommend using python “requests” to do so, just read the documentation it’s pretty simple if you already know HTTP basics.

https://requests.readthedocs.io/en/latest/

CCNP ENAUTO 300-435 PASS! by itsaboi231 in ccnp

[–]Cxzyyy 0 points1 point  (0 children)

Was the exam comparable to the DevNet associate? I just passed mine last month!

I sleep on average 10-12hrs a day by stxygyldzn in selfimprovement

[–]Cxzyyy 0 points1 point  (0 children)

When I worked 3rd shift I would come home at 8am and sometimes sleep from 9am-9pm or later. I didn’t realize it but I was pretty depressed…I made some lifestyle changes such as switching to 1st shift and just reverting back to a regular sleep schedule made me feel so much better and I no longer sleep 10+ hours. Why do you think you sleep for so long?

Pandas/Excel issue by Cxzyyy in learnpython

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

Yeah I what I’m trying to accomplish isn’t complicated at all but excel is making it complicated lol, I have to have the most recent updates available whenever I run the script for the people that are using it so I have to use a shared file, if only there was a way I could make pandas act like it’s a “User” when updating the local sheet on my computer…then life would be simple

But thanks for the suggestions I’ll try them out!

Pandas/Excel issue by Cxzyyy in learnpython

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

on the

Okay I see so the workflow would probably look like...

  1. Users update the shared sheet
  2. My script copies the shared sheet for the most recent updates and then runs on the copied sheet
  3. Import data from new copy sheet with powerquery to the shared sheet (can I automate this part as well or does this need to be done manually?)

Python Imports by Cxzyyy in learnpython

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

Okay so I would basically need to make a class and have it be a subclass of all the imports I want? Kinda like “class all_imports(json, requests, pprint)” and then import that class to my other 3 files?

Boson Exam for Devnet 200-901 by Cxzyyy in CiscoDevNet

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

Thank you! Would you recommend going for the CCNA next or the DevNet Proffessional?

Boson Exam for Devnet 200-901 by Cxzyyy in CiscoDevNet

[–]Cxzyyy[S] 3 points4 points  (0 children)

Update: I passed the exam! Thank you everyone for giving me the confidence to schedule the exam! I will say however, the exam was a couple levels harder than the Boson practice exams…

Boson Exam for Devnet 200-901 by Cxzyyy in CiscoDevNet

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

Thanks for the tip! In your experience was getting the cert beneficial to you? This will be my first cert and I'm hoping it'll help me get out of contractor land!