Welcome to my channel. In this channel, I upload videos and share my experiences in education, lifestyle, science, and technology, as well as productivity. If you find these videos useful, please click on the subscribe button to join for free. Thank you for your support.
Really informative video but, I just want to clear one of my query that my pgwp is expiring this month and I do not have LMIA but I have a job offer letter from employer. Can you please suggest how can I apply for extensions ( applied for PR but have not received ITA yet).
Hi! My husband is applying to get an extension for posdoctoral fellow. In his application also an invitation letter as well. Could you Clarity what does invitation letter means? Thank you!
Hi … could you please tell me if i am extending my work permit after renewal of passport as i was eligible for 3 years but i got for 2 years duw to passport expiry now wht will i put on my status in canada as i am on work permit
Hi Manab, I have applied for WP extension (post doc) following your video. I have submitted everything including new LMIA exempt, new offer/invitation letter etc. However, one month has passed and I have not received any update from IRCC. I noted that your application was approved in one week. Would have any idea why its taking so long in my case?
How if our status when applying for a study permit was a student but several months later we're no longer student? And do we need applying for other visas once we've applied for a study permit?
I’m afraid I don't have a concrete answer to your question at the moment. Recently, they have been issuing the TRV, which is the same for students, workers, and visitors. However, in the past, they used to issue V-1 visas for work permit holders and a similar type for student visas.
Hi dear, I have extend to remain in Canada to waiting for new LMIA and Now I just received new LMIA with the same employer . Could you please tell me which form that I need to use to fill out my application to renew work permit ? Or Is it the same extension form ?
The video is very informative. I'm going through your video for the WP application. In supporting documents, the offer letter and invitation letter are both the same right? I got stuck in my application because of this doubt. Please can you clarify ? Thanks
@@DrManab Thank you for your quick responce!! I have one more concern that in optional documents, TRV application form and clint information are applicable?
is this the same on a closed work permit? how can i obtain an lmia exempt #? , does employer will apply for the his lmia exepmt? i am on teer 5 and my work permit expired in 6 months. thanks
Hi could you please tell which documents to upload under offer of employment, invitation letter, proof that you meet the requirements of the job being offered, would really appreciate the time you will take to respond me. I have employer exempt offer thank you
Hello and thanks for the comment, "offer of employment" and " invitation letter" is the same thing, so you may upload the same document. As per "proof that you meet...", you need to submit your educational qualification which is required for the job.
Hy can you please tell me what i have to submit in the coloumn that shows the proof that you meet the requirements of job being offered Please help thank you
Hey bro, it would be great if you can answer my questions. I have open work permit expiring in July, but I got Saskatchewan nomination and work permit letter of support to extend my work permit. Would I get closed work permit or open work permit if I do LMIA exemption extension? Also what does invitation means in document checklist?
@@sarcasticbella2395you don’t need LMIA to extend ur work permit. If you have a letter of support and want to extend ur work permit you can simply as your employer for LMIA exempt number that would start with letter A I believe and you can apply for a extension as LMIA exempt closed work permit until you get your PR
Hii can you please explain about these documents that what are these documents and where I can find these? 1. Invitation Letter 2. Proof that you meet the requirements of the job being offered
Hi ,Now I stay outside Canada but My work permit and visa is almost expire next month , Can I do Extension outside Canada? and one thing, my visa and work permit is almost expire next month can I entry in Canada before it will be expire 2 weeks or 3 week? Please
You can enter Canada even with 1 day of Visa left, thats not a problem. You can apply for fresh work Permit outside Canada, but I am not sure if you can extend your work permit outside Canada.
I think the data for the plot are zero at the boarder. Try to run this code with a simple function y = X**3, the derivation is Y' = 3*X**2 the last point is wrong due to the difference because you can get always for y' => n-1 point where n is the length of the X. How do you solve this issue? import matplotlib.pyplot as plt import numpy as np dx = 1 x_values = np.arange(-10, 11, dx) #print(x_values) y = x_values**3 #print(y) # let us use backward derivative formula dyforward = np.zeros_like(y) # for the first elment use farward difference #dyforward[0] = (y[1] - y[0]) / dx for i in range(0, len(y)-1): dyforward[i] = (y[i+1] - y[i]) / dx # for the last data point backward difference #dyforward[-1] = (y[-1] - y[-2]) / dx plt.figure() plt.subplot(2, 1, 1) plt.plot(x_values, y, label='f(x) = x^3') plt.legend() plt.subplot(2, 1, 2) plt.plot(x_values, dyforward, label="f'(x)=3*x^2") plt.legend() #plt.show()
Hello Naveed, Thank you for your comment. The key point here is that if you have any figures saved in a *.fig file, the data is already embedded within the fig file.
@@DrManab sir i have the point cloud 3D image save in ply. format and we are very stuck in accessing the points in 3D image of point cloud in MATLAB....please sir humbly requested to help us in this...
@@DrManab Dear sir! I've the 3D image and w need to embed the data within it. So, our mentor told us that first learn that how to access the points e.g (xyz coordinate, rgb values) in the MATLAB. please dear sir i'm very worried help me.