Friday, March 20, 2026

25 job portals most people don't know exist

 Here are 25 job portals most people don't know exist:


💻 TECH JOBS & INTERNSHIPS
01. SimplyHired → simplyhired.com
02. Jobspresso → jobspresso.co
03. Stack Overflow Jobs → stackoverflow.com/jobs
04. AngelList / Wellfound → wellfound.com
05. Indeed (Tech Filtered) → indeed.com
06. Glassdoor Jobs → glassdoor.com

💰 FREELANCE & HIGH-PAY
07. Toptal → toptal.com (top 3% talent, premium pay)
08. Outsourcely → outsourcely.com
09. Freelancer → freelancer.com
10. Remote Freelance → remotefreelance.com
11. Remote Rocketship → lnkd.in/gS2nRtV3
12. Upwork → upwork.com

🌍 GLOBAL / EUROPE REMOTE
13. Europe Remotely → europeremotely.com
14. Working Nomads → workingnomads.com
15. Virtual Vocations → virtualvocations.com
16. We Work Remotely → weworkremotely.com
17. FlexJobs → flexjobs.com
18. Jobspresso Remote → jobspresso.co

🏠 REMOTE-FIRST BOARDS
19. NoDesk → nodesk.co
20. Remotive → remotive.com
21. Remote4Me → remote4me.com
22. Pangian → pangian.com
23. Remotees → remotees.com
24. RemoteHabits → remotehabits.com
25. Skip The Drive → skipthechive.com

Monday, March 16, 2026

Highlights of the Nvidia GTC 2026 event

 NVIDIA’s GTC 2026 (often nicknamed the "Super Bowl of AI") kicked off yesterday, March 16, 2026, at the SAP Center in San Jose.

CEO Jensen Huang’s keynote lasted nearly three hours and pivoted the company from being a "chip maker" to an "AI infrastructure and factory operator." Here is a summary of the major announcements:

1. Hardware: The "Vera Rubin" Era

NVIDIA officially unveiled the successor to the Blackwell architecture, named Vera Rubin (after the astronomer who discovered dark matter).

 * Vera Rubin GPUs: Designed to handle the massive shift toward AI Inference. The new NVL72 architecture reportedly offers 35x more performance per watt than previous systems.

 * Vera CPU: A new, high-performance CPU designed specifically for "Agentic AI" (AI that can reason and act independently), boasting twice the efficiency of traditional CPUs.

 * Vera Rubin Space-1: A bold project to bring NVIDIA data centers into outer space to extend accelerated computing beyond Earth.

2. Software & AI Agents

 * NemoClaw: A new "agentic AI" platform that allows developers to build autonomous AI agents (or "claws") that can perform complex tasks, browse for info, and manage workflows with enterprise-grade security.

 * Nemotron Coalition: NVIDIA is rallying partners like Perplexity, Mistral, and Google to scale out the Nemotron-4 family of open frontier models.

 * DLSS 5: The next generation of AI-driven graphics for gaming, focusing on "neural rendering" to further bridge the gap between AI-generated and real-time visuals.

3. Robotics & Physical AI

 * Disney Partnership: In the most viral moment of the keynote, Jensen was joined on stage by a robotic Olaf (from Frozen). The robot was trained entirely inside the NVIDIA Omniverse simulator.

 * Autonomous Machines: New foundation models like Cosmos 3 were released to help robots and self-driving cars navigate the real world more naturally.

 * Uber Collaboration: NVIDIA announced a partnership with Uber to integrate AI-powered robotaxis into their network starting as early as 2027.

4. Financial Vision

Jensen Huang projected that AI infrastructure demand will lead to a staggering $1 trillion in revenue through 2027. He emphasized that we have reached an "inference inflection point," where AI is moving from being "trained" to being "used" at a global scale.


Monday, March 9, 2026

How to run your LLM locally on your laptop/PC/Mac?? #LMStudio

Interact with the locally deployed LLM using the below Python SDK using LM Studio.

Click here for LM Studio Python SDK documentation -  https://lmstudio.ai/docs/python 

Ollama by Meta is another option for you to run your LLMs locally on your laptop/PC/Mac.

Visit https://ollama.com/ for more details.

Post your questions if any & I shall try to answer.

Follow me on my social media accounts here -  https://linktr.ee/krmadhukar 

Thursday, February 26, 2026

How to run a command or script at regular intervals in Linux. Any alternative for crontab?

 To run a Linux command every 5 seconds, you have a few reliable options depending on what you prefer: watch, a while loop, or using cron (though cron can only go as low as 1 minute).

Here are the best methods 👇


✅ 1. Using watch (simplest method)

watch -n 5 <your-command>

Example:

watch -n 5 ls -l

➡️ Runs ls -l every 5 seconds and shows the output updating on screen.


✅ 2. Using an infinite while loop

This gives more control, supports complex commands, and works in any shell.

while true; do
    <your-command>
    sleep 5
done

Example:

while true; do
    date
    sleep 5
done


✅ 3. Using a one-liner while loop

while true; do <your-command>; sleep 5; done

Example:

while true; do curl -I https://example.com; sleep 5; done


🚫 Cron? Not suitable

Cron runs at minimum 1-minute intervals, so it cannot run every 5 seconds.


To run a cron job every 1 minute, you can use the * * * * * syntax in your crontab.

Here’s how to set it up 👇


✅ Step 1: Open the crontab

crontab -e


✅ Step 2: Add a cron entry with 1‑minute interval

Use this format:

* * * * * <your-command>

Example: run a script every minute:

* * * * * /home/user/myscript.sh

Example: append timestamp to a log every minute:

* * * * * echo "$(date)" >> /home/user/time.log


✅ Step 3: Save and exit

  • If using nanoCTRL + O, then CTRL + X
  • If using vim:wq

📝 Tips and Best Practices

1️⃣ Redirect output to avoid cron emails

* * * * * <your-command> >/dev/null 2>&1

2️⃣ Ensure the script is executable

chmod +x /home/user/myscript.sh

3️⃣ Use full paths in cron

Cron runs in a limited environment, so:

❌ Avoid:

python3 script.py

✔️ Use:

/usr/bin/python3 /home/user/script.py



Wednesday, November 26, 2025

Termius or macOS Terminal keyboard shortcuts

 Termius on Mac uses standard macOS shortcuts along with some specific commands for its unique features like the Command Palette and split view. 

General Actions
Action Shortcut
Command Palette (access tabs/hosts)Command-K
Jump between tabsCommand-J
New connection/tabCommand-T
Open local terminalCommand-L
Open side panel (snippets/history)Command-S
Split window into two panesCommand-D
Close split paneShift-Command-D
Close tabCommand-W
Terminal Navigation & Text Editing (Standard Unix/Mac)
These shortcuts are standard for most command-line interfaces on macOS and work in Termius: 
  • Go to beginning of lineControl-A
  • Go to end of lineControl-E
  • Delete from cursor to beginning of lineControl-U
  • Delete from cursor to end of lineControl-K
  • Navigate by wordOption-Left Arrow or Option-Right Arrow
  • Reverse search command historyControl-R
  • Autocomplete directory/file nameTab (type characters, then press Tab once or twice)
  • Send break (equivalent to Ctrl-C in shell)Command-. (period) 
Copy/Paste 
  • CopyCommand-C
  • PasteCommand-V
  • Paste selectionShift-Command-V 

Featured

TechBytes on Linux

This is a growing list of Linux commands which might come handy for the of Linux users. 1. Found out i had to set the date like this: ...

Popular Posts