Social Graph
Studios Careers

Submit Resume


Thank you for your interest in applying for our Senior Backend Developer position. We would like to ask you a few simple questions to see if there's a good fit before you submit your resume.

  1. Do you have at least 7 years of proven software development experience?
       
  2. Can you legally work in Canada?
       
  3. Do you currently live in, or plan to relocate to the Greater Toronto Area?
       
  4. Which of these apply to you?






    	for ( i = 0; i < a.length; ++i ) {
    		for ( j = a.length - 1; j > i; --j )  {
    			if (a[j - 1] < a[j]) { 
    				swap(a[j - 1], a[j]); 
    			}
    		}
    	}