Project Support
Project Support professionals provide essential administrative and logistical arrangements to project managers and teams, ensuring the smooth execution of projects. They manage documentation, facilitate communication, and support project tasks to help meet objectives efficiently. Applicants should be proficient in office and project management software. This role acts as a central point of contact for project stakeholders and helps with budget tracking and reporting.
50k new jobs listed every day. Install TAL to find more jobs like this.

Experience
Experience not specified
Function
Administrative
Work mode
Onsite, Singapore
Company
Tier 2
What you will work on
Project Support professionals provide essential administrative and logistical arrangements to project managers and teams, ensuring the smooth execution of projects. They manage documentation, facilitate communication, and support project tasks to help meet objectives efficiently. Applicants should be proficient in office and project management software. This role acts as a central point of contact for project stakeholders and helps with budget tracking and reporting.
TAL's take
Role is a standard administrative support function with clear but generic responsibilities in an unfamiliar company.
The JD clearly defines the administrative and logistical duties expected in the project support role.
Must haves
- Diploma or equivalent experience
- Strong organizational skills
- Strong administrative skills
- Strong communication skills
- Attention to detail
- Proficiency in office software
- Proficiency in project management software
Tools and skills
Nice to have: microsoft business central.
About the company
unfamiliar company, default mid-tier.
Posts mentioning Jason Marine Group Limited
Enzo Maresca on Jadon Sancho's Potential Impact for Chelsea
- Enzo Maresca discussed Jadon Sancho's potential role at Chelsea after their draw with Crystal Palace. - Sancho is expected to compete with Pedro Neto for a spot on the left flank. - Maresca hinted that Sancho could become a key player for Chelsea this season. - Eberechi Eze's equaliser denied Maresca his first home Premier League win. - Chelsea faces challenges with right-back injuries, affecting their squad depth.
Dev tool app - toolhub.fyi
Built a small dev tool hub over the weekend — JSON formatter, validators, etc in one place. Trying to make it super fast and no-BS (no login, no clutter). If you use tools like this often, would love to know what I should add next 🙌 toolhub.fyi
BigData- How does data parsing happen in your company?
Hi community, Context: In my current company, we have a data-pipeline, which in short works like this: we get raw events from Kafka dumped in S3. We run a batch job (Airflow), this job essentially picks up the raw jsons in s3, enforces data parser logic (we have a service written in python where we explicitly define what attributed we want from raw json, these attributes are accordingly parsed), the parsed data is then converted to CSV/parquet formats and dumped in s3 in another folder and later loaded into tables, which is used for analytics, etc. Problem: Today for every new event we generate, we have to write a parser logic from scratch, if the event structure is different. In case of small changes we can update attributes we want to parse in code itself. But post that we have to deploy changes which takes time. Is there a smarter way of doing it? For example, having a UI interface, where we select the attributes from json (that could include nested attributes), and that is parsed and dumped in s3, later loading happens. And if we want to update parser, we can do so from UI itself than going into code updating things, deploying, etc. Do we have any open source alternatives here? Or any good engineering blogs which has covered such/similar scenario?