ABDULRAHMAN ALMARZOOQI
Petroleum Engineer
A petroleum engineer with an ace mentality and performance, graduated from the UAE’s top institution: Khalifa University.
​
Has technical knowledge in Reservoir Engineering, Completion and Workover, Rock Properties, Fluid Properties, Well Logging, Drilling Engineering.
​
Finely educated in Accounting & Finance, Economics, Petroleum Economics & Risk Analysis. Earned the Bloomberg Certificate.
​
Equipped with a wide array of hard-skills and soft-skills.
Skills & Software
json.data.boards[0].items_page.items.forEach(item => { item.column_values.forEach(column => { if ((column.id == "date_1" || column.id == "date4") && column.value) { console.log(item.name, column.id, column.value); try { // Parse the JSON string let columnValue = JSON.parse(column.value); // Check if the date and time properties exist if (columnValue.date && columnValue.time) { // Construct the date-time string let dateTimeString = `${columnValue.date}T${columnValue.time}Z`; let date = new Date(dateTimeString); // Adjust the hours date.setHours(date.getHours() + 4); // Update the date and time in the original format columnValue.date = date.toISOString().split('T')[0]; // Update date columnValue.time = date.toISOString().split('T')[1].split('Z')[0]; // Update time // Convert back to JSON string and update column.value column.value = JSON.stringify(columnValue); } } catch (e) { console.error('Error parsing column value:', e); } } }); });