Skip to content

Instantly share code, notes, and snippets.

View geshan's full-sized avatar

Geshan Manandhar geshan

View GitHub Profile
//run in the console of any meetup.com attendee page like https://www.meetup.com/gdgcloudsydney/events/295561358/attendees/
attendees = $$('div.w-full > span.font-medium');
const names = attendees.map(attendee => attendee.innerText).sort();
console.log(names.join('\n'));
//then put the list on https://wheelofnames.com/
// you have your random winner/raffel without the need of a single sheet of paper :)

I have helped the Nepali tech diaspora in Australia earn +$540000 in the past 3 years, how?

By helping people land their first tech/coding jobs. Let's do the maths. I have helped, let's say 15 people land their first tech or programming job in Australia. They will earn at least 50% more than what they earned doing casual jobs. Those low-skill jobs (with full respect to people doing it) usually pay at the minimum wage (or a bit above it) - say if the minimum hourly wage was $20.736 in 2019 (it was 19.49), so that is weekly $788.08 (38 hrs/week) and yearly $48000.

So $48000 * 1.5 = $72000, which will be $24000 more earning per year per person. Keep in mind, that 50% more pay is for working 38-40 hours per week in normal work hours (9 AM-5 PM) not working 6:30 AM-2:30 PM shifts or late nights. On top of that, mostly work from home in the safety of your home in the midst of the pandemic in 2020-2021. Yes, Sydney was in lockdown in mid-2021 and Q3 of 2021.

If you think $72000 is more, might be in a couple o

@geshan
geshan / Markdium-Shell.bash
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
kubectl create job print-date-try01 --from=cronjob/print-date
@geshan
geshan / Markdium-Shell.bash
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
NAME SCHEDULE SUSPEND ACTIVE LAST SCHEDULE AGE
print-date */5 * * * * False 0 17s
@geshan
geshan / Markdium-Shell.bash
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
Sat Feb 20 2021 10:55:03 GMT+0000 (Coordinated Universal Time)
@geshan
geshan / Markdium-Shell.bash
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
print-date-1613818500-88ln6 0/1 Completed 0 97s
@geshan
geshan / Markdium-YAML.yaml
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: print-date
spec:
schedule: "*/5 * * * *"
jobTemplate:
spec:
backoffLimit: 5
ttlSecondsAfterFinished: 100
@geshan
geshan / Markdium-Shell.bash
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
cronjob.batch/print-date created
@geshan
geshan / Markdium-Shell.bash
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
kubectl get jobs --watch
@geshan
geshan / Markdium-Shell.bash
Created March 23, 2021 04:10
Markdium-Kubernetes cron jobs: a hands-on guide to optimally configured crons
kubectl get cronjob