HN user

anjanb

88 karma

a6e966

Posts1
Comments123
View on HN
Claude Opus 4.1 12 months ago

Could you share some of the videos that you watched ? Can you make a video yourself ? That will help a lot of us.

SEEKING WORK | REMOTE | FULL-STACK Java Javascript | Location: Bangalore/India.

Location : Bangalore, India. Remote: Yes Willing to relocate: Yes in India. Technologies: Java, Yourkit, Spring, Oracle, Postgresql, Mysql, DuckDB, MongoDB, Redis, Hazelcast, Ignite Javascript, Nodejs, React, Golang, Python, HTML, CSS, Git, bash, Docker AWS, Azure, C/C++, Assembler,

Résumé/CV: https://drive.google.com/file/d/1HummmW442v1dfvPphOF-EYJXSG6... Email: anjan.jobs.2024@gmail.com Linkedln: https://www.linkedin.com/in/anjanbacchu/ Github: https://github.com/anjanb

20+ years experience developing Products in multiple domains to be deployed in DMZ as well as SaaS. Backend focused Generalist Fullstack Software Engineer/Lead/Architect.

Have 10 years experience in USA and Switzerland working for Startups and Fortune 50/500 companies developing products and supporting them.

Experience in recruiting, onboarding and mentoring Engineers at all levels.

Location: India

Remote: Yes, in India.

Willing to relocate: No.

Technologies: Java, Javascript, Nodejs, Golang, Python, C/C++, Assembler, HTML, CSS, Git, bash, Docker, SQL(Oracle, PostgreSQL, MYSQL, DuckDB), Redis.

Résumé/CV: https://drive.google.com/file/d/1HummmW442v1dfvPphOF-EYJXSG6...

Email: anjan.jobs.2024@gmail.com

Linkedln: https://www.linkedin.com/in/anjanbacchu/

Github: https://github.com/anjanb

20+ years experience developing Products as SaaS. Backend focused Generalist and Fullstack Software Engineer/Lead/Architect.

Have 10 years experience in USA and Switzerland working for Startups and Fortune 100/500 companies developing products. Huge Experience recruiting, onboarding and mentoring Engineers at all levels.

SEEKING WORK

Location : Bangalore, India.

Remote: Yes

Willing to relocate: No.

Technologies: Java, Yourkit, Spring, Oracle, Postgresql, Mysql, DuckDB, MongoDB, Redis, Hazelcast, Ignite Javascript, Nodejs, React, Golang, Python, HTML, CSS, Git, bash, Docker AWS, Azure, C/C++, Assembler,

Résumé/CV:

https://drive.google.com/file/d/1HummmW442v1dfvPphOF-EYJXSG6...

Email: anjan.jobs.2024@gmail.com

Linkedln: https://www.linkedin.com/in/anjanbacchu/

Github: https://github.com/anjanb

20+ years experience developing Products in multiple domains to be deployed in DMZ as well as SaaS. Backend focused Generalist Fullstack Software Engineer/Lead/Architect.

Have 10 years experience in USA and Switzerland working for Startups and Fortune 50/500 companies developing products and supporting them. Like recruiting and mentoring Engineers.

Location: India Remote: Yes

Willing to relocate: No.

Technologies: Java, Javascript, Nodejs, Golang, Python, C/C++, Assembler, HTML, CSS, Git, bash, Docker, SQL(Oracle, PostgreSQL, MYSQL, DuckDB), Redis

Résumé/CV: https://drive.google.com/file/d/1HummmW442v1dfvPphOF-EYJXSG6...

Email: anjan.jobs.2024@gmail.com

Linkedln: https://www.linkedin.com/in/anjanbacchu/

Github: https://github.com/anjanb

20+ years experience developing Products as SaaS. Backend focused Generalist Fullstack Software Engineer/Lead/Architect.

Have 10 years experience in USA and Switzerland working for Startups and Fortune 100/500 companies developing products and supporting them.

Location: India Remote: Yes

Willing to relocate: No.

Technologies: Java, Javascript, Nodejs, Golang, Python, C/C++, Assembler, HTML, CSS, Git, bash, Docker, SQL(Oracle, PostgreSQL, MySql, DuckDB), Redis

Résumé/CV: https://drive.google.com/file/d/15joPaYt6KxybH9Ug3wEpVPQal8z...

Email: anjan.jobs@gmail.com

Linkedln: https://www.linkedin.com/in/anjanbacchu/

Github: https://github.com/anjanb

20+ years experience developing Solutions. Backend focused Generalist. Fullstack Software Engineer with hands-on experience as Developer, Tech Lead and Architect.

Have 10 years experience in USA and Switzerland working for Startups and Fortune 100/500 companies.

Exploring Gen AI and how to integrate them with existing solutions.

Polars 3 years ago

I'm a dataframes noob. I saw this post and the performance claims attracted me. I went to chatGPT to understand what dataframes were about. Then on udemy, I searched for a polar course. A course required pre-requisites : a bit about jupyter notebooks and pandas. Then I went through a few modules of a pandas course. Now, I'm going through a polars course. Altogether, I spent about 2-3 hours to setup the environment and know what this is all about.

A little bit context would have helped to have attracted a lot more noobs.g

I've used chatGPT(ver 4 through ChATGPT plus) for creating .bat files. Really easy ones, it can churn out quite well. A lil more complicated - it doesn't consider edge cases. Several cases require me to ask it to generate a golang program that gets called by the .bat file.

Several times, I had to spend hours to get a .bat script working. Hopefully, it will get better in the future.

you can grep the man page contents by using the following command

man <command> | col -b | grep "search_string"

I've used a small bash function. example : to search grep's manual for "lines", I type gm grep "lines"

gm () { man $1 | col -b | grep --color=always "$2" }

I also have something similar for grepping a command's help

gh () { $1 --help | grep --color=always $2 }

I usually try gh(grep help) and if I don't get what I'm looking for, I run gm(grep man).

It appears that I can also use tldr