Posts

Showing posts from July, 2019

Time to leave Google and Duck Duck Go waves to you

Image
Hello, nice to meet you again. This time, i just want to share my knowledge to you guys.         Yes, I am a tech guy. I daily works around with tech.  Google — Yes, i admit it — One of my teacher who finds me a lot of information to me.        After many time spending with Google, I found myself my search and related words are automatically popping and recommending when i typed something in search box. They are tracking me, they recommend me places and food based on my location.  Uh — — — this is not good lah. 😂 Then, one day one of my co-workers recommend me to use Duck Duck Go . At first i thought the name is so funny and interesting, then I started using it. Wow — — it’s good enough lah. 🙋 Like their quote — ‘DuckDuckGo — Privacy, simplified. ’ It is so simple and duck duck go doesn’t track your search and it saves your privacy and security.       After using around 2 months, I prefer it because Duck Duck Go does not track your history in orde

cisco csr1000v ios upgrade or downgrade

Image
Good Morning! Today Let me share about upgrading or downgrading ios using ansible. Original idea credit to eanylin ( https://github.com/eanylin ). I follow rule for ios upgrade guide from cisco ( https://www.cisco.com/c/en/us/td/docs/routers/csr1000/software/configuration/b_CSR1000v_Configuration_Guide/b_CSR1000v_Configuration_Guide_chapter_01001.html ) and add some intelligence twisted code to each four roles. Hope you like it.  Please check this out 😉 and enjoy! https://github.com/tproximus/cisco-csr1000v-ios-upgrade-downgrade Have a nice day!

How to create Slack Webhooks

Image
Today let me show you how to generate a slack webhook. Slack webhooks is  a simple way to post messages from external sources into Slack. My steps to get slack webhook were as follow: Step1) I created slack app by merging one of my created slack workspace at this URL: https://api.slack.com/apps Step2) go to “Incoming Webhooks” to create webhook. Step3) active incoming webhooks Step4) create new webbook to workspace or merge webhook to channel Step5) Then select a channel from your workspace. Step6)finally got webhook url to work with slack api. Step7) can sent test message to your channel by using curl. Note: TDK572UAW/BLGRR1X6X/C0etNQsdetn06OH3qE9rqsPx used to push slack notification via Ansible slack module $curl -X POST -H 'Content-type: application/json' --data '{"text":"Hello, World!"}' https://hooks.slack.com/services/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 PS: I del