This is a test gist file named test.md.
| urls = $$('a.listing-result__address'); | |
| links = []; | |
| ids = []; | |
| for (url in urls) { | |
| links.push(urls[url].href.split('-')); | |
| } | |
| for(linkArr of links) { | |
| ids.push(linkArr[linkArr.length - 1]); | |
| } | |
| console.log(ids.join()); |
| //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 :) |
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
| Example app listening at http://localhost:3001 | |
| {"meta":{},"level":"\u001b[32minfo\u001b[39m","message":"GET /api/test 304 2ms"} | |
| {"meta":{},"level":"\u001b[32minfo\u001b[39m","message":"GET /favicon.ico 404 2ms"} | |
| {"meta":{},"level":"\u001b[32minfo\u001b[39m","message":"GET /favicon.ico 404 1ms"} |
| kubectl create job print-date-try01 --from=cronjob/print-date |
| NAME SCHEDULE SUSPEND ACTIVE LAST SCHEDULE AGE | |
| print-date */5 * * * * False 0 17s |
| Sat Feb 20 2021 10:55:03 GMT+0000 (Coordinated Universal Time) |
| print-date-1613818500-88ln6 0/1 Completed 0 97s |
| apiVersion: batch/v1beta1 | |
| kind: CronJob | |
| metadata: | |
| name: print-date | |
| spec: | |
| schedule: "*/5 * * * *" | |
| jobTemplate: | |
| spec: | |
| backoffLimit: 5 | |
| ttlSecondsAfterFinished: 100 |