#Canada: #IT Jobs:#Consultants, #Contractors, #Analysts, #Engineers, #Developers, #Technology Consultants, #IT-Consultants Opportunities2021-07-27

Apply yourself, or submit others as a candidate, Build a recruitment team to submit others as a candidate, submit RFP to be considered for projects in future, Try to become a vendor so that you are asked to submit consultants/resources in future

  1. edp-hardware-and-software-10034
  2. IT Onsite consulting services
  3. energy-10007
  4. ADM REM Station – Technical Consultant Engagement
  5. Source List (SL) for Environmental Consulting Services
  6. machinery-and-tools-10015
  7. Consultant – SDS – Energy Audit (3 Sites)
  8. miscellaneous-goods-10019
  9. Tourism Consultant for a Tourism Wellness Experience Development Program
  10. architect-and-engineering-services-10048
  11. RFP FOR PRELIMINARY DESIGN CONSULTANT SERVICES FOR Two (2) Portfolios I
  12. Consultant Services for Dry Pipe Sprinkler Replacement
  13. communications-photographic-mapping-printing-and-publication-services-10042
  14. RFAP for Surveying Consultant Services – Standing Offer
  15. ADM REM Station – Technical Consultant Engagement
  16. educational-and-training-services-10043
  17. One Pilot Instructor and one Combination Instructor Flight Engineer and Instructor Load Master (W0107-21XC39/A)
  18. Assessment Consulting Service for the Assured Income for the Severely Handicapped (AISH) Program for the Province of Alberta
  19. Anti-Racism & Anti-Discrimination Exploratory Working Group (AREWG) Consultant
  20. environmental-services-10050
  21. Consulting Services for Geotechnical Investigations for the Reconstruction of Phillipston Road.
  22. Water Treatment Plant – Assessment Consultant Services
  23. financial-and-related-services-10038
  24. LGD Model Building Consultant
  25. ADM REM Station – Technical Consultant Engagement
  26. health-and-social-services-10052
  27. CONSULTING SERVICES FOR EMPLOYEE BENEFITS FOR THE MUNICIPALITY OF NORTH GRENVILL
  28. information-processing-and-related-telecommunications-services-10049
  29. Consulting Services – Succeed and Stay Immigration Strategy – NB
  30. Web Re-Design
  31. professional-administrative-and-management-support-services-10040
  32. RFP for Theatre Consulting Services
  33. CONSULTING SERVICES TO CONDUCT BUILDING CONDITION ASSESSMENTS
  34. Consultant Services – Mill Courtland Community Centre Expansion Business Case
  35. quality-control-testing-inspection-and-technical-representative-services-10053
  36. RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
  37. research-and-development-r-d-10036
  38. CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
  39. special-studies-and-analysis-not-r-d-10047
  40. CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
  41. RFAP for Surveying Consultant Services – Standing Offer
  42. ADM REM Station – Technical Consultant Engagement
  43. transportation-travel-and-relocation-services-10044
  44. CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
  45. utilities-10041
  46. ADM REM Station – Technical Consultant Engagement
  47. undefined-10055
  48. RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
  49. CDN Networks #CDN: Content Delivery Network

    Nowadays, there are more and more CDN providers, but here is a quick list of the top 12:
    • Akamai. Akamai is known globally to speed up networks and connections. …
    • MaxCDN. MaxCDN was founded in 2009 and is based in Los Angeles, California. …
    • Incapsula. …
    • Rackspace. …
    • Cloudflare. …
    • Amazon’s AWS. …
    • EdgeCast/Verizon. …
    • Fastly.

    From: http://sitestree.com/?p=11323
    Categories:CDN: Content Delivery Network
    Tags:
    Post Data:2017-09-19 10:23:46

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Automating Digital Delivery with Paypal Payment Processing System #Classic ASP

    Brought from: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1283&title=Automating%20Digital%20Delivery%20with%20Paypal%20Payment%20Processing%20System

    the time-period: 2007 – 2008

    In the past, I implemented an automatic notification and digital product delivery system with Paypal Payment Processing System. The concept is, when a person buys products from your web-sites, he gets his products automatically as email attachments after you have confirmed the transaction. The most important part is – collecting payment data and buyer information from Paypal to ensure that the transaction is legitimate and the payment really went through. You can use either Paypal IPN or Paypal PDT to collect these data and email products on successful verification. Either will/should work. For me, PDT worked alright. Check the following web-pages/documents. Also, from PDT section, check the sample examples. For me the sample example with ASP/VBSCript worked alright.

    In the past, I have worked with MiraServ, and Moneris payment processing systems. You can find short-notes and video tutorials in this web-site on them. Just search through our web-sites.

    A relevant code in ASP is provided below. The code collects the payer’s information just after someone has paid. The code also checks, if the payment was successful, if so prints some details about the transaction and the payer

    The flow of actions (in terms of code and operations)

    • Create a paypal button, provide return URL for successful payment and canceled payment.
    • In your successful payment page, write down the following code
    • Your paypal account needs to be configured properly to make the following code work – consult the documents as listed above
    • You need to use the authentication code from your paypal account to/in the following code
    • The follwing code section
      authToken = "ytrtyrtr45654hgfhgfjhfsfdsfdsfds;ljlk" 'auth code for your paypal account
      	txToken = Request.Querystring("tx") 'as sent from paypal 
      
      query = "cmd=_notify-synch&tx=" & txToken & "&at=" & authToken
      
      	set objectHttp = Server.CreateObject("Microsoft.XMLHTTP")
      	objectHttp.open "POST", "http://www.paypal.com/cgi-bin/webscr", false
      	objectHttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
      	objectHttp.Send query
      

      submits to the paypal to grab transaction details. (remember, after payment the control is required to come to this page, then based on authentication code and tx-id, the code grabs detail transaction information)

    <% @LANGUAGE="VBScript" %>
    <%	
    	Dim query
    	Dim objectHttp
    	Dim strQuerystring
    	Dim i, result
    	Dim firstName, lastName, itemName, curGross, mcCurrency, email
    	Dim authToken, txToken
    	Dim strParts, intParts, aParts
    	Dim strResults, strKey, strValue
    	
    
    	authToken = "ytrtyrtr45654hgfhgfjhfsfdsfdsfds;ljlk" 'auth code for your paypal account
    	txToken = Request.Querystring("tx") 'as sent from paypal 
    
    	query = "cmd=_notify-synch&tx=" & txToken & "&at=" & authToken
    
    	set objectHttp = Server.CreateObject("Microsoft.XMLHTTP")
    	objectHttp.open "POST", "http://www.paypal.com/cgi-bin/webscr", false
    	objectHttp.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
    	objectHttp.Send query
    
    	strQuerystring = objectHttp.responseText
    
    	If Mid(strQuerystring,1,7) = "SUCCESS" Then
    		strQuerystring = Mid(strQuerystring,9)
    		strParts = Split(strQuerystring, vbLf)
    		intParts = UBound(strParts) - 1
    		ReDim strResults(intParts, 1)
    		For i = 0 To intParts
    			aParts = Split(strParts(i), "=")
    			strKey = aParts(0)
    			strValue = aParts(1)
    			strResults(i, 0) = strKey
    			strResults(i, 1) = strValue
    
    			Select Case strKey
    				Case "first_name"
    					firstName = strValue
    				Case "last_name"
    					lastName = strValue
    				Case "item_name"
    					itemName = strValue
    				Case "mc_gross"
    					curGross = strValue
    				Case "mc_currency"
    					mcCurrency = strValue
    				Case "payer_email"
    					email = strValue
    					email = Replace(email, "%40", "@")
    			End Select
    		Next
    
    		email = Replace(email, "%40", "@")
    		Response.Write("

    We have received your order

    ") Response.Write("Details
    ") Response.Write("
    • Name: " & firstName & " " & lastName & "
    • ") Response.Write("
    • Description: " & itemName & "
    • ") Response.Write("
    • Amount: " & mcCurrency & " " & curGross & "
    • ") Response.Write("
    • Email: " & email & "
    ") Response.Write("
    Home Page
    ") 'send email to customer Dim myObject Set myObject = Server.CreateObject("CDO.Message") 'set the To and From myObject.To = email myObject.From = "webmaster@justetc.net" myObject.Bcc = "sayed@justetc.net" myObject.Subject = "Please download your product" myObject.TextBody = "Dear Customer, Thank you for purchasing from us. Download from the link belownn" myObject.AddAttachment "http://www.justetc.net/test.pdf" myObject.Send() 'Set objects to "nothing" to free up the computer memory Set myObject = nothing 'send email to the seller Set myObject = Server.CreateObject("CDO.Message") 'set the To and From properties myObject.To = "webmaster@justetc.net" myObject.From = "webmaster@justetc.net" myObject.Bcc = "sayed@justetc.net" myObject.Subject = "You got one customer: Product emailed to the customer" myObject.TextBody = "Customer email address: " & email myObject.Send() 'Set your objects to "nothing" to free up the computer memory Set myObject = nothing Else 'log Response.Write("ERROR") End If %>

    From: http://sitestree.com/?p=3716
    Categories:Classic ASP
    Tags:
    Post Data:2016-07-16 10:05:06

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Code: Send Emails using ASP #Classic ASP

    <%
    	dim email
    	email = Request.Form("email") 'if you are collecting user emails from a form - POST method
    	'send email 
    	Dim myObject
    	Set myObject = Server.CreateObject("CDO.Message")
    
    	'set the To and From 
    	myObject.To = "webmaster@justetc.net"
    	myObject.From = "webmaster@justetc.net"
    	myObject.Bcc = "sayed@justetc.net"
    	
            myObject.Subject = "Email Sending Code"
    	myObject.TextBody = "The person with the email address " & email & " submitted the form"
    	myObject.Send()
    
    	'Set objects to "nothing" to free up the
    	'the computer memory 
    	Set myObject = nothing
    %>
    

    From: http://sitestree.com/?p=3714
    Categories:Classic ASP
    Tags:
    Post Data:2016-07-16 14:52:59

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Introduction to Capability Maturity Model Integration for Services (CMMI-SVC) #CMMI

    http://www.youtube.com/watch?v=FvkUUS-oAcU From: http://sitestree.com/?p=163
    Categories:CMMI
    Tags:CMMI, Business Process
    Post Data:2013-01-01 15:53:27

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Oracle WebCenter Sites Features (OWCS) #CMS

    • Easy-To-Use Content Authoring and Design Tools For Business Users
    • Sophisticated Customer Segment-Based Targeting and Predictive Targeting via Oracle Real-Time Decisions Integration

    • Granular Analytics for Optimizing Web Content, Promotions, and Offers

    • User-Generated Content and Personalized,Customizable Gadgets with Enterprise Moderation, Including Comments, Ratings, Reviews, and Blogs

    • Highly Scalable Web Content Management (WCM) Platform for Delivery of a High Volume, Global Web Presence

    • Access Content Stored Across the Enterprise and Integrate with Oracle’s CRM and E-Commerce Applications

    • Mobile Option Enables Centralized Business-User Management of Both Mobile and Traditional Websites with Delivery to Thousands of Mobile Device Types, including iPhone, iPad, BlackBerry, Android, and Many More

     

    Reference: https://www.oracle.com/middleware/webcenter/sites/features.html From: http://sitestree.com/?p=10965
    Categories:CMS
    Tags:
    Post Data:2017-07-30 15:06:34

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Web Content Management, Content Management System: OpenCMS, LifeRay, DNN, Kentico, WordPress, Drupal, SharePoint #CMS

    Content Management is an Integral Part for Most Businesses including Enterprises. Actually, enterprises need them more than the others. Government will always need CMS.

    Apparently, CMS market is Pretty Crowded:

    http://www.cmsmatrix.org/

    But I see WordPress has better ranking than OWCS : https://www.trustradius.com/compare-products/oracle-webcenter-vs-wordpress

    10 Reasons Why a CMS is Important to Your Business

    http://www.oshyn.com/blogs/2016/april/10-reasons-why-a-cms-is-important-to-your-business?page=NaN

    What is a CMS and why is it so important? https://www.alberon.co.uk/blog/what-is-a-cms-and-why-is-it-so-importan

    Some Big Names From The Big Players:

    Oracle WebCenter Sites : Oracle WebCenter Portal : Oracle WebCenter Content

    Adobe Experience Manager : AEM is a leader in the CMS

    MS Sharepoint

    SiteCore: .Net

    OpenText Teamsite

    IBM: Digital Experience Manager

    EMC: Document Review

    Alfresco

    Salsify

    IBM Notes


    Open Source:

    LifeRay : Java Based

    OpenCMS : Java Based

    DNN : .Net Based

    Kentico : .Net Based

    WordPress: PHP Based

    Drupal: PHP Based

    Why enterprise content management?

    Enterprise content management is the technology used to capture, manage, store, preserve, and deliver content and documents related to organizational processes. ECM tools and strategies allow the management of an organization’s unstructured information, wherever that information exists.

    Enterprise content management – Wikipedia

    https://en.wikipedia.org/wiki/Enterprise_content_management
    The Benefits of a Unified Enterprise Content Management Platform
    http://www.oracle.com/us/products/middleware/content-management/059406.pdf
    Ecommerce Content Management:
    Magento : PHP Based
    Cscart: PHP Based
    Oracle ATG WebCommerce
    SAP Hybris
    SAP Webshop
    Ektron for Marketing and Publishing
    Is WordPress an enterprise level CMS?
    http://www.ironpaper.com/webintel/articles/is-wordpress-an-enterprise-level-cms/
    Oracle WebCenter Sites Competitors and Alternatives
    https://www.trustradius.com/products/oracle-webcenter/competitors
    Stumbled Upon:
    Java Based FatWire CMS get a bad review
    https://www.quora.com/How-does-FatWire-compare-to-other-Web-Content-Management-Systems
    Sure, I did built CMS software such as: The backend CMS for DareFoods.ca. Also, wrote another Ecommerce CMS. These were written from Scratch (might have used frameworks such as Laravel). Could be used in the similar fashion the way WordPress, and Magento are used but for a very particular niche market. and then you might want to check if a very specific CMS for a specific Niche – will have some business potential. This is to start with then it can extend the features in the related market or once you get a customer – you can custom build solutions for the same customer.
    For example: You can build a CMS for Food Industry : Bangladesh, I believe has many many food companies. And also find out Business Use cases for them so that you can sell to them.

    From: http://sitestree.com/?p=10957
    Categories:CMS
    Tags:
    Post Data:2017-07-30 12:21:14

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Hubspo #CMS

    “HubSpot’s all-in-one inbound marketing software allows businesses to transform the way that they market and sell online. Our software includes everything marketers and sales teams need to attract, convert, and close customers.”

    https://www.hubspot.com/products/faq/hubspot-vs-wordpress-cms From: http://sitestree.com/?p=10442
    Categories:CMS
    Tags:
    Post Data:2017-03-14 20:51:11

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Open Source Content Management Systems #CMS

    Drupal, Joomla, Plone, and WordPress are some good examples. xCatalyst is another one. You can find more information on your CMS at (under this web-site):

    Check the following resources for more information on CMSes.

    • http://geeksandgod.com/forum/calendar-drupal
    • http://www.linux.com/feature/60948
    • http://www.alledia.com/blog/general-cms-issues/joomla-and-drupal-which-one-is-right-for-you/
    • http://wordpress.org/extend/plugins/events-calendar/
    • http://wordpress.org/extend/plugins/events-calendar/
    • http://codex.wordpress.org/Photoblogs_and_Galleries
    • http://www.joomlashack.com/tutorials/158-creating-a-blog-site-with-joomla
    • http://extensions.joomla.org/extensions/content-&-news/random-news
    • http://www.esxinc.com/images/ESX/Documents/xCatalyst-Modules-Summary.pdf

    From: http://sitestree.com/?p=3561
    Categories:CMS
    Tags:
    Post Data:2016-07-04 15:19:00

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada

    Add Calendar/Event Support in Drupal #CMS

    Required modules: Views, Date, Calendar, CCK (content), Text, Node Reference, Options Widgets. You can download the modules from Drupal web-site. For calendar, http://drupal.org/project/calendar. For date replace calendar with date in the previous url (http://drupal.org/project/calendar => date). For views, replace with views.

    How to install: unzip and upload to the modules folder in the Drupal installation. Afterward, from Site Building -> Modules under Administration (in Drupal), check these modules (and also check them on what these modules are dependent)

    How to work? Areas you need to play with to have customized calendars/event calendars for your site:

    • Administer->Site Building->Views
    • Site Configuration -> Date and Time
    • Administer -> Content Management -> Date Tools
    • You have to create calendar styles/customized calendars using the above options. Then you will see an option under create content to create calendars for your web-site.
    • using site building -> Blocks, you can place these calendars anywhere you want
    • You can also embed calendars in pages

    From: http://sitestree.com/?p=3559
    Categories:CMS
    Tags:
    Post Data:2016-07-05 15:29:55

    Shop Online: https://www.ShopForSoul.com/
    (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com
    In Bengali: http://Bangla.SaLearningSchool.com
    http://SitesTree.com
    8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
    Shop Online: https://www.ShopForSoul.com/
    Medium: https://medium.com/@SayedAhmedCanada