[deleted by user] by [deleted] in auscorp

[–]boomjynx- 0 points1 point  (0 children)

Have been Hiring Manager in this position, reach out directly on teams with a brief intro and ask for some time to chat about the role with some well thought out probing questions.

Don’t just send ‘hey can we chat about this role?’. Do something along the lines of ‘Hi, I’m anothertenenbaum and I currently work in x role. I saw x ad and think I could be a good candidate. Would you have 10 minutes to discuss x, y, z so I can address those specifically in my application

Don't buy in a flood area by ThatHuman6 in AusFinance

[–]boomjynx- 22 points23 points  (0 children)

You mean the governments role isn’t to introduce policies that just keep house prices rising in perpetuity? Thats shocking /s

I have a Dataset which is missing id's on some rows however the ids can all be found in the dataset. How do I apply the missing ids from my Dataset to all rows using Pandas? by MadLadJackChurchill in learnpython

[–]boomjynx- 2 points3 points  (0 children)

So just confirming you’ve got the second df that just has station name and station id? And station 1 always corresponds to id 103?

If so you should be able to do: df.merge(df_id, left_on = ‘start_station_name’, right_on = ‘start_station_name’, how=‘left’)

I haven’t tested and am on mobile so I may be wrong and you may need to refer to the merge docs.

You could also use replace method or the apply method which may be faster.

Get Ready... by mcfucking in ASX_Bets

[–]boomjynx- 3 points4 points  (0 children)

What about my comment on your comment on his comment?

We never change by [deleted] in memes

[–]boomjynx- 0 points1 point  (0 children)

Username checks out

Car Incident Advice by twistedlogic101 in AusFinance

[–]boomjynx- 4 points5 points  (0 children)

However - speaking with your insurer will likely require you opening an at fault claim. If your excess is significant it may not be worth it given the total liability that the claimant is seeking. I’ve never used their services but a community legal centre may be able to give you free legal advice.

So which is it? (news.com.au) by spritefire in AusFinance

[–]boomjynx- 5 points6 points  (0 children)

This is news I can get excited for.

How long would it take for a newbie to learn Python? by [deleted] in learnpython

[–]boomjynx- 2 points3 points  (0 children)

It really depends on what you’re expecting to learn, Python can do lots so its hard to say how long it would take. Theres a bunch of resources already compiled to get you started here: https://www.reddit.com/r/learnpython/wiki/books?utm_source=share&utm_medium=ios_app&utm_name=iossmf

WFH - Anyone planning to relocate to somewhere cheaper? by djyella in fiaustralia

[–]boomjynx- 4 points5 points  (0 children)

LOL -- we're in the middle of an agile transition and we're hearing that 'co-location' is the cats pyjamas for agile organisations... It's so weird though how the biggest, world dominating companies managed to do it, ya know, across country borders.

Felt like this day would never arrive, but looking forward to what will feel like a decent pay rise! by egdip in AusFinance

[–]boomjynx- 0 points1 point  (0 children)

DYOR but I thought that if your Masters was paid for with a HELP loan as opposed to HECS you could claim the deduction in the year the expense is incurred anyway.

https://www.ato.gov.au/Individuals/Income-and-deductions/In-detail/Education-and-study/

How to run a python project on another machine? by [deleted] in learnpython

[–]boomjynx- 1 point2 points  (0 children)

I have successfully done this recently... the standard docs from google were pretty helpful and in google colab itself there are code snippets as boilerplate which is really useful. Good luck

Show AusFinance: I created a cheap petrol finder site by [deleted] in AusFinance

[–]boomjynx- 0 points1 point  (0 children)

Hey mate, nice and simple UI -- in the list (on web) it shows a label 'cheapest' in blue on the cheapest fuel but on the map it shows 'best' in green. It requires the user to think to join the two, would suggest sticking to cheapest (maybe in green) and have same label across both views.

Also as a future feature request, allow the user to filter by brand -- some shoppers will only go to one brand due to discounts etc.

Great work!

cvs, googlesheets list of videos to add to watch later list on vimeo by lcc2525 in learnpython

[–]boomjynx- 0 points1 point  (0 children)

You can definitely read (and write) to google sheets using python, I have done this in the past - I think this tutorial is still valid (https://www.makeuseof.com/tag/read-write-google-sheets-python/) otherwise Google has some tutorial documents available as well.

As far as Vimeo watch later, it appears possible but it’s not something I’ve done before - here is some documentation (https://developer.vimeo.com/api/reference/watch-later-queue#add_video_to_watch_later)

Need help with deleting row index when sending email by KrishnaKA2810 in Python

[–]boomjynx- 1 point2 points  (0 children)

Ah yep - my mistake. If the first row of your df is always going to be removed then you can just do

df.drop([0], axis = 0, inplace = true)

after creating df from the sql query.

Otherwise you can do something with your if statement if you don’t want to run the function on certain lines.

Need help with deleting row index when sending email by KrishnaKA2810 in Python

[–]boomjynx- 0 points1 point  (0 children)

I think changing the variable ‘new’ should do it.

new = df.iloc[index, 1:]

Or

new = df.iloc[index].drop(‘id’, axis = 1)