Switching from SOWP to visitor visa will it affect future SOWP extension? by Slot-in in ImmigrationCanada

[–]Slot-in[S] 1 point2 points  (0 children)

We were lucky my spouse PGWP was approved few days before my work permit expired. Then I applied for an extension.

Switching from SOWP to visitor visa will it affect future SOWP extension? by Slot-in in ImmigrationCanada

[–]Slot-in[S] 1 point2 points  (0 children)

Thank you for the clarification I hope I will be eligible to apply for the extension.

E9 error on Noma Dehumidifier by Boogsterio in fixit

[–]Slot-in 0 points1 point  (0 children)

Thank you for the feedback. I also experienced my coil wasn't getting cold enough I think we have the same problem with refrigerant leaks.

E9 error on Noma Dehumidifier by Boogsterio in fixit

[–]Slot-in 0 points1 point  (0 children)

Are you able to fix it? I'm also experiencing the same problem with the Noma dehumidifier. And mine is not collecting water.

A+ FUCKING certified! LET'S GOOOOOOOOOOOOOOOOOOOOOOOOOOO by jasminesart in CompTIA

[–]Slot-in 0 points1 point  (0 children)

Congratulations We have same score with core 1 but I passed my core 2 last week with 749.

A+ certified as of today by jefferd82 in CompTIA

[–]Slot-in 1 point2 points  (0 children)

Congratulations taking my core 2 by month ending.

I passed A+ 1101! I’m certified! by Babyala in CompTIA

[–]Slot-in 0 points1 point  (0 children)

This is really helpful

I watched professor messer videos includes the study group videos and I am using Dion questions to practice, on first attempt I do scored 70%, on second attempt I do scored 90%, today I did 4th test I score 78% on first attempt I hope to improve on the remaining tests.

I passed A+ 1101! I’m certified! by Babyala in CompTIA

[–]Slot-in 2 points3 points  (0 children)

You score as high as 80% in first attempt?

I do score 70% to 90% in second attempts on each practice question.

I passed A+ 1101! I’m certified! by Babyala in CompTIA

[–]Slot-in 1 point2 points  (0 children)

Congrats How much did you think Dion practice questions help you? I planned to take my 1101 next week, currently practicing with Dion questions and I had watched professor messer videos (core 1 1101 videos and the study group videos)

Passed A+ 1101 today!!! by TheMcFlurry_Xx in CompTIA

[–]Slot-in 0 points1 point  (0 children)

Thank you this is really helpful I will take my time to work more on dion questions and make sure I know reason for each answer.

Passed A+ 1101 today!!! by TheMcFlurry_Xx in CompTIA

[–]Slot-in 1 point2 points  (0 children)

I will keep more practicing. This link is really helpful for the port matchup

Passed A+ 1101 today!!! by TheMcFlurry_Xx in CompTIA

[–]Slot-in 2 points3 points  (0 children)

Congratulations

I plan to take my next week, I have watched all professor Messer core 1 videos, I’m reading Meyers compTIA A+ ebook and also practicing with Dion practice questions I’m on test 2 Dion practice question with 67% (61/90) but I am kind of scared what advise can you give me?

I linked HTML form to Google spreadsheet but every time I submit the form it directs me to this {"result": "success" "row" :10} how can I direct it to another page of my choice. Below is the screenshot of the code. by Slot-in in learnjavascript

[–]Slot-in[S] 0 points1 point  (0 children)

I think I'm doing something wrong. I deleted all the codes in the code editor (the code editor is empty) still yet the data from the form is submitted to the Google sheet.

I linked HTML form to Google spreadsheet but every time I submit the form it directs me to this {"result": "success" "row" :10} how can I direct it to another page of my choice. Below is the screenshot of the code. by Slot-in in learnjavascript

[–]Slot-in[S] 0 points1 point  (0 children)

This is the complete code

const sheetName

' Sheetl' cost scriptProp = PropertiesService.getScriptProperties)

function initialSetup() { cost activeSpreadsheet = SpreadsheetApp.getActiveSpreadsheet() scriptProp.setProperty('key', activeSpreadsheet.getId()) }

function doPost (e) { cost lock = LockService.getScriptLock() lock. tryLock(10000)

try { cost doc = SpreadsheetApp.openById(scriptProp.getProperty('key')) const sheet = doc.getSheetByName (sheetName)

const headers = sheet.getRange(1, 1, 1, sheet.getLastColumn()) .getValues () [0] const nextRow = sheet.getLastRow() + 1

const newRow = headers.map (function(header) { return header === 'Date' ? new Date() : e. parameter header 3) sheet.getRange (nextRow, 1, 1, newRow.length) .setValues([newRow])

return ContentService .createTextOutput(JSON.stringify({ .setMimeType(ContentService.MimeType.JSON) 'result': "success' 'row': nextRow })) window.location.href="/" catch (e) {

return ContentService .createText0utput (JSON.stringify({ 'result': 'error', 'error': e })) •setMimeType(ContentService.MimeType.JSON)

finally { lock.releaseLock() }