SShortSingh.
Back to feed

How International Tech Students Should Format Gig and Part-Time Work on US Resumes

0
·2 views

International students pursuing full-time US tech roles often have fragmented work histories spanning on-campus jobs, freelance projects, and CPT internships, which can be difficult to present professionally. Career advisors recommend formatting every part-time or gig engagement exactly like a full-time role, with a standard job title, company name, employment dates, and two to four accomplishment-focused bullet points. Labels such as 'part-time' or 'freelance' should be omitted from job titles, as dates and context already convey that information to recruiters. ATS software scans for standard resume structures, so candidates are advised to avoid tables or columns and use simple left-aligned formatting with consistent fonts like Arial or Calibri. Multiple small freelance projects can be grouped under a single 'Freelance Developer' entry, and all bullet points should begin with action verbs and include quantifiable outcomes wherever possible.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingHacker News ·

Leaded Gasoline Was Recognized as Toxic From the Moment It Was Created

A Smithsonian Magazine article revisiting the history of leaded gasoline highlights that its dangers were understood even at the time of its invention. Despite this early awareness, the fuel additive tetraethyl lead was widely adopted and used for decades in vehicles worldwide. The decision to proceed with leaded gas prioritized industrial and commercial interests over known public health risks. The article underscores how scientific evidence of harm was suppressed or ignored by those who stood to profit from the product.

0
ProgrammingHacker News ·

Earendel: The Most Distant Individual Star Ever Observed by Humans

Earendel is a massive star located in the Sunrise Arc galaxy, detected by the Hubble Space Telescope in 2022. It holds the record as the farthest individual star ever observed, situated approximately 28 billion light-years away from Earth. The star was spotted using a phenomenon called gravitational lensing, where a galaxy cluster bent and amplified its light enough to make it visible. NASA's James Webb Space Telescope later confirmed and further studied the star. Earendel existed in the early universe, just 900 million years after the Big Bang.

0
ProgrammingDEV Community ·

Cordless v0.6 Launches CLI-First Terminal Dashboard with QR Pairing and Self-Contained Binary

Cordless, a tool for managing remote terminal and coding-agent sessions on mobile, has released version 0.6 with a redesigned CLI-first approach. Running the app now opens a full-screen terminal dashboard that immediately displays a pairing QR code, eliminating the need to run a separate pairing command. The update ships as a single self-contained binary bundling its own Node.js runtime and node-pty, removing any prior installation requirements. Security has also been tightened, with pairing codes now issued exclusively through an authenticated WebSocket call restricted to loopback connections, making remote device enrollment impossible. The persistent daemon architecture ensures that closing the dashboard never interrupts active sessions or phone connections.

0
ProgrammingDEV Community ·

Common jq Pitfalls in Shell Scripts and How to Handle Them

Developers and sysadmins using jq to process JSON in shell scripts often encounter edge cases that work in testing but fail in production. Key issues include improper null handling and unexpected behavior when querying missing or empty fields. Using flags like -r for raw string output and -e to detect null results with exit code 5 can help catch these problems early. Defensive scripting patterns, such as explicit null checks and error exits, are recommended to avoid hard-to-debug production failures. These are not flaws in jq itself but rather subtleties that arise when combining shell scripting with real-world JSON data processing.