Category: Root

3 new jobs – python in various locations

Software Developer National Bank Montréal, QC N/A Full time Back-end Developer Replicon Inc. Calgary, AB $75,000.00 to $140,000.00 annually (to be negotiated) Full time Remote work available Software Developer SR Research Ltd Woodbridge, ON $80,000.00 to $120,000.00 annually (to be negotiated) Full time

14 new jobs – instructor in various locations

Sports And Leisure Leader Auberge du Lac Taureau Saint-Michel-des-Saints, QC $15.33 hourly Full time Recreation Leader Laser Game Évolution Lévis, QC $22.00 hourly Full time Nursing Instructor – College University of Saskatchewan (College of Nursing) Saskatoon, SK The current salary band for an Instructor is $66,355 – $106,663. Technologist, Medical Radiation Haliburton Highlands Health Services …

Continue reading

8 new jobs – dotnet in various locations

Developer, Software Computer Consultants International, Inc. Toronto, ON N/A Full time IT (information Technology) Consultant Computer Consultants International, Inc. Toronto, ON N/A Full time Web Developer Genius Solutions Québec, QC N/A Full time Information Systems Business Analyst Roxboro Excavation Dorval, QC N/A Full time Programmer Analyst Cooptel Valcourt, QC N/A Full time Software Developer Zenith …

Continue reading

6 new jobs – instructor in various locations

Trainee Instructor LE GROUPE PROBEX Sherbrooke, QC $17.00 hourly Full time Instructor Of Persons With A Learning Disability LE GROUPE PROBEX Sherbrooke, QC $17.00 hourly Full time Trainer, Computer Main-a-Dieu Community Development Association Main-à-Dieu, NS $13.35 hourly Full time Driving School Instructor Vachon École de conduite supérieure Lévis, QC $18.00 to $21.00 hourly Full time …

Continue reading

VassuTech Services Inc., is hiring for Java Spring Developer. 13 more java jobs in Toronto, ON.

Full Stack Software Engineer (On-Site or Hybrid) YuJa Inc. – North York, ON 6 days ago – Sponsored Programmer Analyst – DevOps Buchanan Technologies – Toronto, ON 4 days ago – Sponsored Full Stack Developer Buchanan Technologies – Toronto, ON 4 days ago – Sponsored Java Spring Developer VassuTech Services Inc., – Greater Toronto Area, …

Continue reading

Today’s Markets

Today’s Markets In Asia, Japan +1%. Hong Kong -1.2%. China flat. India -0.1%. In Europe, at midday, London +1%. Paris +0.1%. Frankfurt +0.6%. Futures at 6:20, Dow +0.7%. S&P +0.7%. Nasdaq +0.6%. Crude +1.1% to $111.15. Gold +1.1% to $1862.10. Bitcoin +1% to $30,455. Ten-year Treasury Yield +3 bps to 2.82% Today’s Economic Calendar 8:30 …

Continue reading

Misc. Python, MongoDB, MySQL, LMS/Moodle stuff.

Web Hosting Introduction

Python and MongoDB Operations. Code Example

#!/usr/bin/env python# coding: utf-8# In[63]: import pymongo; # In[64]: import pymongomyclient = pymongo.MongoClient(“mongodb://localhost:27017/”)mydb = myclient[“mydatabase”] # In[65]: # Check if database exist # In[66]: print(myclient.list_database_names()) # In[67]: dblist = myclient.list_database_names()if “mydatabase” in dblist:  print(“The database exists.”) # In[68]: # Create a collection # In[69]: import pymongomyclient = pymongo.MongoClient(“mongodb://localhost:27017/”)mydb = myclient[“mydatabase”]mycol = mydb[“customers”] # In[70]: #collection …

Continue reading

Python and MySQL Operations. Code Examples

#!/usr/bin/env python# coding: utf-8# In[1]: import mysql.connector # In[2]: # create a database connection # In[3]: import mysql.connectormydb = mysql.connector.connect(  host=”localhost”,  user=”root”,  password=””)print(mydb) # In[4]: import mysql.connectormydb = mysql.connector.connect(  host=”localhost”,  user=”root”,  password=””)mycursor = mydb.cursor()mycursor.execute(“drop DATABASE mydatabase”);mycursor.execute(“CREATE DATABASE mydatabase”); # In[5]: # check if database exists # In[6]: import mysql.connectormydb = mysql.connector.connect(  host=”localhost”,  user=”root”,  password=””)mycursor = …

Continue reading