Proxy Pattern

Huge Sell on Popular Electronics

Proxy Pattern:

“Proxy is a structural design pattern that lets you provide a substitute or placeholder for another object. A proxy controls access to the original object, allowing you to perform something either before or after the request gets through to the original object.

A credit card is a proxy for a bank account, which is a proxy for a bundle of cash. Both implement the same interface: they can be used for making a payment. A consumer feels great because there’s no need to carry loads of cash around. A shop owner is also happy since the income from a transaction gets added electronically to the shop’s bank account without the risk of losing the deposit or getting robbed on the way to the bank.

Click on the images to see them clearly.

In the above UML class diagram, the Proxy class implements the Subject interface so that it can act as substitute for Subject objects. It maintains a reference (realSubject) to the substituted object (RealSubject) so that it can forward requests to it (realSubject.operation()).

UML Class Diagram

https://refactoring.guru/design-patterns/proxy

https://en.wikipedia.org/wiki/Proxy_pattern

Java: Facade Design Pattern

Huge Sell on Popular Electronics

Façade Pattern

“Facade is a structural design pattern that provides a simplified interface to a library, a framework, or any other complex set of classes.”

“When you call a shop to place a phone order, an operator is your facade to all services and departments of the shop. The operator provides you with a simple voice interface to the ordering system, payment gateways, and various delivery services.”

For a clear view, click on the images (images are from Wikipedia)

Ref: https://refactoring.guru/design-patterns/facade

https://en.wikipedia.org/wiki/Facade_pattern

Java : Decorator Design pattern

Huge Sell on Popular Electronics

Decorator Design pattern:

Decorator is a structural design pattern that lets you attach new behaviors to objects by placing these objects inside special wrapper objects that contain the behaviors.

Example:

Assume: A notifier class/object can send only email messages. But the application at a later time may want to use text/SMS, FB, or similar messages. With decorator pattern: decorate the Notifier class with other behaviours such as send SMS, send fb message, send twitter message (i.e. may create additional classes/objects (create link to original notifier class with interfaces/inheritance and aggregations/compositions) ). Then the client can use the original notifier class/object but dynamically point to the other classes/objects and use the corresponding sendMessage() method/behaviour for SMS, Text, FB, Twitter or similar messaging/notification.

Note: Inheritance/subclasses can be a choice but they have limitations. Aggregations/Compositions/interfaces will be used for the purpose of Decorator pattern.

Note: “When does a simple wrapper become the real decorator? As I mentioned, the wrapper implements the same interface as the wrapped object. That’s why from the client’s perspective these objects are identical.

Ref: https://refactoring.guru/design-patterns/decorator

https://en.wikipedia.org/wiki/Decorator_pattern

Java Structural Design Patterns

Huge Sell on Popular Electronics

Adapter Design Patterns

Ref: A good read: https://refactoring.guru/design-patterns/adapter

Ref: Wikipedia

Ref: https://www.visual-paradigm.com/guide/uml-unified-modeling-language/uml-aggregation-vs-composition/

MicroK8s Commands in Ubuntu

Huge Sell on Popular Electronics

MicroK8s Commands in Ubuntu
(- - use double hyphen)

Install
sudo snap install microk8s - -classic
sudo snap install microk8s - -classic - -channel=1.25/stable

Allow Through: Firwall
sudo ufw allow in on cni0 && sudo ufw allow out on cni0
sudo ufw default allow routed

Enable Add Ons
microk8s enable dns
microk8s enable dashboard
microk8s enable storage

You can disable when you need
microk8s disable dns
microk8s disable dashboard
microk8s disable storage

Kubernetes Dashboard
microk8s kubectl get all - -all-namespaces

Retrieve Token
token=$(microk8s kubectl -n kube-system get secret | grep default-token | cut -d " " -f1)
microk8s kubectl -n kube-system describe secret $token

Host your service in Kubernetes
microk8s kubectl create deployment microbot - -image=dontrebootme/microbot:v1
microk8s kubectl scale deployment microbot - -replicas=2

Create service
microk8s kubectl expose deployment microbot - -type=NodePort - -port=80 - -name=microbot-service

Check cluster after a few minutes
microk8s kubectl get all - -all-namespaces

Misc Commands
microk8s status
microk8s enable
microk8s disable
microk8s kubectl
microk8s config
microk8s istioctl
microk8s inspect
microk8s reset
microk8s stop
microk8s start

Ref: https://ubuntu.com/tutorials/install-a-local-kubernetes-with-microk8s#1-overview

Misc. Kubectl/MicroK8s Commands and Output

Huge Sell on Popular Electronics

Application Deployment

Huge Sell on Popular Electronics

Sample MySQL Configurations (application.properties)

Huge Sell on Popular Electronics

Docker File

Huge Sell on Popular Electronics

Java (basic) Interview Questions and Answers

Huge Sell on Popular Electronics

Oracle Advanced SQL Clauses

Huge Sell on Popular Electronics

Group By

group by attr1, attr2

group by ROLLUP(attr1, attr2)

group by CUBE(attr1, attr2)

Rank, Dense_RANK, ROW_number:

RANK() OVER (ORDER BY PRICE) as "PR",
ROW_NUMBER() OVER (ORDER BY PRICE) as "PR"
DENSE_RANK() OVER (ORDER BY C DESC NULLS LAST) as "R"
DENSE_RANK() OVER (PARTITION by C ORDER BY P) as "PR"
RANK() OVER (ORDER BY P) as "PR"
avg(C) OVER() AS "AC"
MIN(Y) KEEP (DENSE_RANK FIRST ORDER BY Y) as "FirstItem"
MIN(Y) KEEP (DENSE_RANK LAST ORDER BY Y) as "LASTItem"

Hierarchical Query:

START WITH employee_id = 102
CONNECT BY FOLLOWING m_id = e_id;

Keep First or Last Row

KEEP (DENSE_RANK FIRST ORDER BY …)
KEEP (DENSE_RANK LAST ORDER BY …)

PARTITION BY on RANK/Dense_Rank

RANK()
RANK() OVER
RANK() OVER PARTITION BY
DENSE RANK() OVER
DENSE RANK() OVER PARTITION BY
PARTITION BY …. ORDER BY
ROW_NUMBER() OVER (ORDER By …)
ROWS BETWEEN Unbounded Preceding and CURRENT ROW
RANGE BETWEEN INTERVAL 5 DAY PRECEDING AND INTERVAL '5' DAY Following
ROWS BETWENN 1 PRECEDING and 1 FOLLOWING
DENSE RANK() OVER (PARTITION BY .....)
DENSE RANK() OVER (PARTITION BY .....ORDER BY ...)

Oracle Advanced SQL Clauses

Huge Sell on Popular Electronics

Group By

Lombak, Getter Setter Example

Huge Sell on Popular Electronics

Ref: https://projectlombok.org/features/GetterSetter

import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;

public class GetterSetterExample {
/**
* Age of the person. Water is wet.
*
* @param age New value for this person's age. Sky is blue.
* @return The current value of this person's age. Circles are round.
*/
@Getter @Setter private int age = 10;

/**
* Name of the person.
* -- SETTER --
* Changes the name of this person.
*
* @param name The new value.
*/
@Setter(AccessLevel.PROTECTED) private String name;

@Override public String toString() {
return String.format("%s (age: %d)", name, age);
}
}



"Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more."

Investing Wisely

Huge Sell on Popular Electronics

Be a Database Professional

Huge Sell on Popular Electronics

Be a Database Professional

https://youtu.be/Ipljzg2AjKg

https://youtu.be/Ipljzg2AjKg

Database Design in Pictures

Huge Sell on Popular Electronics

Database Design in Pictures

https://www.youtube.com/watch?v=LpCFCkCxVSk&pp=ygUac2FsZWFybmluZ3NjaG9vbCBzaXRlc3RyZWU%3D

Watch on Youtube


Learn Some Data Flow Diagram (DFD)

Huge Sell on Popular Electronics

Learn Some Data Flow Diagram (DFD)

https://www.youtube.com/watch?v=FROyc00v9Sw&pp=ygUac2FsZWFybmluZ3NjaG9vbCBzaXRlc3RyZWU%3D

SQL Server: Dynamic SQL, Stored Procedure, Cursor, SQL Injection, and similar

Huge Sell on Popular Electronics

SQL Server: Dynamic SQL, Stored Procedure, Cursor, SQL Injection, and similar

https://youtu.be/uje72uNAT6I?list=PLUA7SYgJYDFoharKbJxz2Hxw6xQITXvBn

introduction to WebAPI and a demo application on Web API

Huge Sell on Popular Electronics

Introduction to soa and apache axis

Huge Sell on Popular Electronics

Introduction to project management using dot project 3

Huge Sell on Popular Electronics

Introduction to project management using dot project 2

Huge Sell on Popular Electronics

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2024-03-24

Huge Sell on Popular Electronics

  1. Commvault Enterprise Subscription Services Renewal
  2. Supply & Delivery of Lenovo Laptops and Desktops
  3. Microsoft Direct Enterprise Agreement Renewal
  4. Juniper Vendor of Record
  5. Mirantis Docker Enterprise Maintenance Renewal
  6. Workday Implementation Partner Stage 1
  7. 24-AML-19 VR Projection System NPP
  8. Request for Tender #3307 SAS Institute (Canada) Inc Analytics Pro Licensing
  9. IT Equipment Leasing Services
  10. Request for Tender #3292 Netskope License and Support Renewal
  11. Request for Information #3288 Bodily Injury Insurance Claims Management Solution
  12. RFP-2023-ITIN-481: Computer Aided Dispatch/Automatic Vehicle Location System
  13. PHSA 9622 ITQ Software Licencing and Preventative Maintenance of GuardRFID and VGH Sonitor Systems at FHA and VCHA
  14. ON-0002179 - Project Portfolio Management Tool
  15. 24-1561 HAWCS Downlink Upgrade
  16. Accounting Software Upgrade
  17. I.T. Technology Hardware and Software
  18. DdP: 1 x Appian Architect, Senior Analyst
  19. Project: tender_19362 - Service Center RFP
  20. Yukon Government Traffic Data Management System (TDMS)
  21. Notice of Proposed Procurement
  22. Electronic & Physical Document / Records Management Solution for Niagara Regional Police Services
  23. District of Kitimat Facility Security Camera Project
  24. Digital ConsignO Software (24-025)
  25. Test Management Tool

introduction to mac operating systems (Disk Operations, Management, and Maintenance)

Huge Sell on Popular Electronics

Introduction to Laravel View

Huge Sell on Popular Electronics

Introduction to ISOTOPE; Magical layout with ISOTOPE

Huge Sell on Popular Electronics

introduction to HL 7

Huge Sell on Popular Electronics

introduction to game design ppt

Huge Sell on Popular Electronics

introduction to enterprise architect

Huge Sell on Popular Electronics

introduction to enterprise architect

Huge Sell on Popular Electronics

Introduction to Drupal based Web site Development

Huge Sell on Popular Electronics

introduction to DNN architecture

Huge Sell on Popular Electronics

Introduction to Cloud Computing (Bangla/Bengali)

Huge Sell on Popular Electronics

Introduction to cloud computing

Huge Sell on Popular Electronics

introduction to c

Huge Sell on Popular Electronics

Introduction to 7zip and compression in Linux

Huge Sell on Popular Electronics

Introducing the performance and resource monitoring tool, and how that relates to SQL Server

Huge Sell on Popular Electronics

internationalization in jsf

Huge Sell on Popular Electronics

Intelligent Track Management, Safety First

Huge Sell on Popular Electronics

Intelligent Track Management, Safety First

Huge Sell on Popular Electronics

Integrated Course Design

Huge Sell on Popular Electronics

installing pear and phpunit

Huge Sell on Popular Electronics

Installing Java platform with Net Beans

Huge Sell on Popular Electronics

install tortoise svn svn commands experiment

Huge Sell on Popular Electronics

Install stuff for Azure MVC and ASP Net

Huge Sell on Popular Electronics

Install MySQL 5 DBMS on Windows Platform

Huge Sell on Popular Electronics

install kentico CMS in localhost

Huge Sell on Popular Electronics

install drupal on AWS lightsail

Huge Sell on Popular Electronics

Install Drupal on AWS EC2

Huge Sell on Popular Electronics

Install Drupal 7.31 i.e the latest version. Install from a hosting control panel (cpanel)

Huge Sell on Popular Electronics

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-09-17

Huge Sell on Popular Electronics

  1. Lighting Upgrades at Facility - Interior & Exterior
  2. Interior & Exterior Lighting Upgrades
  3. Lighting Upgrades at Facility - Exterior & Interior
  4. Interior & Exterior Lighting Upgrades at Facility
  5. Provision of Veeam Maintenance
  6. Replace Gen Set and Auto Transfer Switch
  7. Provision of IBM Tape System Maintenance
  8. Development of an Indigenous Relations Strategy
  9. Implementation of Payroll Software Enhancements
  10. RFP – PRE-QUALIFICATION FOR END USER COMPUTING
  11. Water Treatment & Legionella Services for PWGSC – RP1 - Ontario
  12. Washroom/Shower Room Refits - 1st floor
  13. RSA Authentication Server Renewal for 1-Year
  14. BI/Analytics and Contact Management Tool, Implementation, Training and Support
  15. Council Chambers Conferencing System Replacement
  16. Convert Boardroom to Media Room
  17. Virtual Card Solution
  18. Digital Online Fund Application and Case Management System
  19. Chestermere - Lift Station 3 and 12 Rehabilitation - Engineering Design Services
  20. SUPPORT SERVICES – ORACLE PEOPLESOFT (HCM, CRM, FSCM, Portal, HYPERION) APPLICATIONS
  21. REQUEST FOR INFORMATION NO 4 - DEFENCEX
  22. TASK-BASED INFORMATICS PROFESSIONAL SERVICES (TBIPS) - IT Resources to build modern applications based on PowerPlatform (P2400125)
  23. AHU Type 2 Filter Replacement
  24. Lean Forward - Accessibility Improvements - CT
  25. QEC RFT 203097 Integrify Intranet Development 3-year Term

install anaconda navigator on MacOS

Huge Sell on Popular Electronics

Install anaconda navigator jupyter notebook hello world python

Huge Sell on Popular Electronics

Install a PHP MySQL Project from GitHUB

Huge Sell on Popular Electronics

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-08-27

Huge Sell on Popular Electronics

  1. Project: tender_18662 - DRUPAL UPGRADES AND WEB MAINTENANCE PACKAGE
  2. Palo Alto Equipment 2023
  3. Supply and Delivery of 3 HPE Simplivity 380 Gen10 G Nodes
  4. Supply and Delivery of Support Renewal for 4 HPE Proliant DL560 Gen10 Servers
  5. HPE Servers
  6. Campus One Card
  7. FileCloud (or equivalent) for CNSC
  8. F5 Big IP Support for RCMP
  9. VXRAIL Maintenance and Support
  10. SBIPS (Solution-based Informatics)
  11. TBIPS (Task-based Informatics)
  12. Mobile Healthy Play Kiosk - NSGC
  13. Request for Proposal #3226 Taxi Telematics Pilot
  14. Project: tender_18656 - HMMS03982 - End User Computing and Related Technologies
  15. Information Communication and Technology Services
  16. On-Premises File Servers Migration to Cloud Solution
  17. Medical Alarm and Monitoring Services for WorkSafeBC Injured Workers
  18. RFP for Computerized Maintenance Management System
  19. NOI 221 - Curriculum and Catalog Management
  20. NOI 220 - Faculty Information System
  21. Integrated Learning, Teaching, Assessment & Management Platform for TMU
  22. Web Mapping Solution / Platform
  23. Firewall Replacement
  24. Supply & Delivery of Refurbished Personal Computer Desktops
  25. Dell Laptops & Docking Stations

Insert Image into Powerpoint using Csharp and OpenXML

Huge Sell on Popular Electronics

Insert Data in Tabular Format to Powerpoint using C Sharp

Huge Sell on Popular Electronics

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-08-13

Huge Sell on Popular Electronics

  1. Technology to Identify Contamination in Residential Waste Streams
  2. Project: tender_18571 - PRE- NOTIFICATION - HOSPITAL INFORMATION SYSTEM RFP FOR SUNNYBROOK HEALTH SCIENCES CENTRE
  3. ENTRUST SSL
  4. Veeam Backup and Restore Software and Maintenance
  5. Supply and Delivery of Microphones at FirstOntario Arts Centre
  6. LIBRARY SELF-CHECKOUT KIOSK
  7. SCHOOL ZONE RADAR SPEED SIGNS
  8. Voice Logger for AFRRCS
  9. A Situational Judgement Test (SJT) for use in Family Medicine (FM) Residency Selection
  10. Application Services for Alberta King's Printer and Executive Council - AMSA
  11. Digital Permitting Solution
  12. TBIPS – Help Desk Specialists - Level 2 (SIS)
  13. Application/Software Architect and Programmers/Analysts
  14. NextSeq 2000 Sequencing System
  15. Development of an EDI Tool Kit and Training Resources for Hiring and Retention
  16. Licenses, Technical Support and Maintenance Services for Instrument ManagerTM
  17. Project: tender_18514 - OPP- 1661 NG9-1-1 Telephony Solution Support and Services for Ontario Provincial Police
  18. Academic Electronic Resources, ProQuest LLC
  19. Insurance Program Partner
  20. 2BH3147110A - Request for Quotation for KVMs, Remote Controls and Cables for the Department of National Defence
  21. Markido Engage ACAN Renewal
  22. Supply and Delivery of a Digital Asset Management System
  23. Pension Administration System and Related Services
  24. R25SK23413 - Asbestos Inventory Database Solution
  25. Contract Lifecycle Management Solution

Information and Communication Technology (Bangla/Bengali)

Huge Sell on Popular Electronics

In English: Course Introduction: Effective Teaching Skills

Huge Sell on Popular Electronics

Step 2 Review Report a DSL Automate Initial and Exploratory Analysis for Data analytics projects

Huge Sell on Popular Electronics

Step 1 A DSL to Automate Initial and Exploratory Analysis for data analytics project

Huge Sell on Popular Electronics

PHP Topics to Learn

Huge Sell on Popular Electronics

Identifiers https://docstore.mik.ua/orelly/webprog/php/ch02_01.htm#:~:text=An%20identifier%20is%20simply%20a,ASCII%200x7F%20and%20ASCII%200xFF. PHP Data Types https://www.odinschool.com/learning-hub/php/datatypes Type Hinting https://www.honeybadger.io/blog/php-type-hinting/#:~:text=Type%2Dhinting%20means%20explicitly%20stating,to%20write%20more%20robust%20code. PDO and MySQL https://www.w3schools.com/php/php_mysql_connect.asp PHP OOP https://www.w3schools.com/php/php_oop_what_is.asp abstract classes https://www.w3schools.com/php/php_oop_classes_abstract.asp Abstract vs Interface https://www.w3schools.com/php/php_oop_interfaces.asp#:~:text=PHP%20%2D%20Interfaces%20vs.%20Abstract%20Classes&text=Interfaces%20cannot%20have%20properties%2C%20while,abstract%20keyword%20is%20not%20necessary , methods, interfaces, and inheritance Pillars of OOP The Four pillars of OOPs, abstraction, encapsulation, inheritance, and polymorphism, are integral to understanding and using OOP
Four Pillars of OOPs (Object Oriented Programming) | In-Depth | Data Trained.
Four Pillars with Examples: https://www.geeksforgeeks.org/four-main-object-oriented-programming-concepts-of-java/ Magic Method https://www.php.net/manual/en/language.oop5.magic.php https://www.geeksforgeeks.org/what-are-magic-methods-and-how-to-use-them-in-php/ Overloading and Magic Methods https://www.geeksforgeeks.org/overloading-in-php/

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-07-30

Huge Sell on Popular Electronics

  1. Digital Evidence Management System
  2. Request for Information for the non-exclusive provision to obtain information for the City of Toronto about the availability of functionality of taxi digital meters and related solutions
  3. Managed Print Services Request for Proposal
  4. Check Point Quantum 6200 Appliance with Support
  5. Sponsorship, Donation & Employee Engagement Platform
  6. RFSQ #23.0080 Data Management and Business Intelligence Consulting and Contracting Services
  7. Print Management Solution
  8. Corporate Fleet: Half-ton Pickup Trucks (Off-Lot) - NB
  9. SharePoint Online Administration Tool
  10. Supply and install of AV Refit equipment at Council Chambers
  11. Accounts Payable Digitization and Modernization
  12. AV Projectors and Carts
  13. In Terminal Asset Tracking System
  14. Desktops and Monitors
  15. RFP for Desktop Computer Systems and Laptops - BDC
  16. RFP 2022-014 Vulnerability Management Solution
  17. Maintenance and Renewal of IBM COGNOS Software
  18. Building Inspection Software
  19. NOI - PMWeb Software & Support
  20. Media Monitoring and News Clipping Service
  21. AMI Dashboard
  22. Supply Arrangement for Video Conference Goods and Services
  23. Sony Cameras and Related Goods
  24. Municipal Accounting Software
  25. CRIMINAL/CIVILIAN LIVESCAN AND MUGSHOT SOLUTION - NB

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-07-30

Huge Sell on Popular Electronics

  1. Virtual Chief Information Security Officer (vCISO) Services
  2. ORION RFQ #2334-001 DIA IP Transit
  3. Request for Information for the non-exclusive provision to obtain information for the City of Toronto about the availability of functionality of taxi digital meters and related solutions
  4. RED HAT SUBSCRIPTION
  5. Sponsorship, Donation & Employee Engagement Platform
  6. RFSQ #23.0080 Data Management and Business Intelligence Consulting and Contracting Services
  7. Municipal Development Plan
  8. Hard Surfaces Replacement and Repairs
  9. GOC1961142-CT Interior Lighting Upgrade - Construction Phase
  10. Enterprise Business Architect Digital Modernization
  11. NBCC2024-008 ADMISSIONS PLATFORM - NB
  12. Maintenance and Renewal of IBM COGNOS Software
  13. Equity, Diversity and Inclusion Materials Design & Webpages Production
  14. Accessibility Modifications
  15. Project: tender_18246 - Thermal and Magnetic Survey of Active and Legacy Oil and Gas Wells in Southwestern Ontario
  16. Key Trades Rotation for the NCR
  17. Media Monitoring and News Clipping Service
  18. AMI Dashboard
  19. IT Managed Services Request for Proposal
  20. RFP for Privacy Assessments and Security Assessments
  21. RFSQ #23.0062 Geographic Information System (GIS) Consulting and Contracting Services
  22. Forensic Services
  23. Computer Assisted Mass Appraisal (CAMA) Solution
  24. REQUEST FOR PROPOSAL- VIRTUAL ASSISTANT
  25. Website Content Management System and Application Support

In English, Laravel Concepts

Huge Sell on Popular Electronics

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-07-23

Huge Sell on Popular Electronics

  1. Install Protective Elevator Machine Guards
  2. Request for Proposals For Lung Cancer Screening Solutions: (1) Patient Registry
  3. RFP 2023-17255 ROM_Website_Redesign
  4. Full Stack Development Services
  5. RFP for Technology Systems Consulting Services
  6. NPP - Notice of Proposed Procurement
  7. Prime Consulting Engineering Services – Video Surveillance Technology Project
  8. Technical Project Management Services
  9. Room 2H17 Upgrade
  10. Provision of IBM Spectrum Protect Annual Software Subscription & Support Renewal
  11. Project: tender_18347 - Land Use Planning Information Network (LPIN) Modernization
  12. Virtual Call Centre Software Replacement
  13. PacifiCan Victoria Fit-up
  14. Integrated Systems Testing
  15. 2023-0037 - RI - Request for Information - Managed Security
  16. Advance Contract Award Notice - Modular Construction Management
  17. Waterproof Chiller Room Floor - Construction Phase
  18. Mechanical HVAC Upgrades
  19. Modify Air Curtains and Add Acoustic Treatment in Workspaces
  20. Repair & Regrade including Resurfacing Parking Lot
  21. RFI - ELECTIONS ONTARIO - for an ELECTRONIC POLL BOOK SOLUTION EO-230714-01
  22. Web Development and Transformation
  23. Video Interview Platform
  24. Computer Telephony Integration System
  25. Hybrid audio-visual system: Council Chambers

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-07-23

Huge Sell on Popular Electronics

  1. SRFP848- Motion Capture System
  2. Red Hat Subscription
  3. ITQ2023-07-31 for Tableau Subscription Licenses Renewal
  4. ITQ for Desktop Computers Refresh for Operations
  5. VMware Carbon Black Cloud Subscription Renewal
  6. System and Services Provider of SOLACOM NG911 Solution
  7. F5 Equipment Purchase Renewal
  8. DR Project - SCADA DMZ Upgrade
  9. Food and Beverage Point of Sale Solution
  10. ISS AVEVA HMI SCADA Renewal
  11. Water Treatment Plant SCADA Upgrade
  12. Project: tender_18347 - Land Use Planning Information Network (LPIN) Modernization
  13. Project: tender_18308 - Table-Top Forestry Heavy Equipment Simulator
  14. Project: tender_18448 - Request for Bids for Internet Provider and Denial of Service (DoS) Protection Services
  15. Security Risk Management Software Solution
  16. Gigamon Network Terminal Access Point (TAP) License and Support Services
  17. Supply of Adult Dog Simulator
  18. RFQ 2024-02-NN Adobe Creative Cloud VIP K-12 District Named User License
  19. PHSA 12062 Equipment and Software Upgrade
  20. PHSA 12058 Hardware and Software upgrade for Transfusion Medicine Fridge
  21. IT Hardware Refresh services
  22. Municipal Regulatory and Business Rules Digital Compliance Solution
  23. RFI 13159 - Human Resources and/or Finance System
  24. Supply, Delivery and Maintenance of Two (2) High Performance Storage Arrays
  25. NetScout Maintenance Renewal

In English, Backbone.Js By Example

Huge Sell on Popular Electronics

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-07-16

Huge Sell on Popular Electronics

  1. RFI - ELECTIONS ONTARIO - for an ELECTRONIC POLL BOOK SOLUTION EO-230714-01
  2. Web Development and Transformation
  3. Video Interview Platform
  4. Computer Telephony Integration System
  5. Hybrid audio-visual system: Council Chambers
  6. Notice of Anticipated Procurement Opportunity-
  7. REQUEST FOR PROPOSAL- Marketing Automation Tool
  8. Groupe Filgo-Sonic - fourniture de bornes de recharge rapide et services -
  9. NPP - Provision of Information Technology Security Services
  10. Management Consulting Resources
  11. IT Professional Services for SAP and ESRI/Bentley/Infor
  12. Gateway to the Arctic 360-degree Consultant and Theatre Upgrade Solution
  13. APN - Consultant Services for Threat Risk Assessment
  14. SOL418948 - Line Painting at Surrey Tax Centre (GOC02106)
  15. RFQ - Fibre Lines Supply and Installation 23-06-04
  16. Integrated Library System (ILS)
  17. PRE-QUALIFICATION FOR IT RESOURCE AUGMENTATION (2023-2024)
  18. Emergency Mass Notification Response Soluion
  19. Supply/Install A/C Unit in Room 217
  20. Outsourced management of the contracted resources
  21. Operator - Global Atmosphere Watch Observatory in Alert, Nunavut
  22. RISO Construction Inspection Services, PEI
  23. Travaux d'accessibilité et sécurité salle mécanique
  24. NVIDIA Server
  25. Replace Shingled Roof

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-07-16

Huge Sell on Popular Electronics

  1. RFI - ELECTIONS ONTARIO - for an ELECTRONIC POLL BOOK SOLUTION EO-230714-01
  2. RFPI#955782 - Replacement of Nuclear Materials Accounting System
  3. Suncorp Valuations - Request for Proposal for Appraisal Software Modernization
  4. SUPPLY AND DELIVERY OF GOANYWHERE RENEWAL (DOVERCOURT).
  5. Accounts Payable Automation Software
  6. LIBRARY SERVICES PLATFORM
  7. Notice of Anticipated Procurement Opportunity-
  8. RFP - 1200 Chromebooks
  9. RFP-2023-ITCO-432 : Telecom Expense Management System Solution
  10. Used Dell Data Domain Backup Storage Array
  11. Enterprise Software Reseller
  12. Cisco Network Switch Modules
  13. Redis Subscription Renewal
  14. Corporate Analytics Solution
  15. 775400
  16. 2023010207 Online Assessment System
  17. Actuarial Visualization and Analysis Software License Renewal Notice of Award
  18. Nutanix Licenses Renewal
  19. Gateway to the Arctic 360-degree Consultant and Theatre Upgrade Solution
  20. Various Technological Equipment
  21. Project: tender_18256 - Collaborative Document Management System
  22. - Asset and Work Management Software
  23. Time Tracking Software
  24. Tender for the Purchase of One (1) Colour Multi-Function Printer (Timmins Fire Department)
  25. Renewal of Support Services and Maintenance of Geoservices Petrophysical Analysis SW

in English (start at around 54 seconds) introduction to isotope : Magical web layouts with ISOTOPE

Huge Sell on Popular Electronics

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-07-09

Huge Sell on Popular Electronics

  1. Travaux d'accessibilité et sécurité salle mécanique
  2. NVIDIA Server
  3. Replace Shingled Roof
  4. Vessel Satellite Services
  5. Digital Services Project
  6. Correctifs pour conformité séparations coupe-feu, suite à l'étude GOC582553
  7. NRFP Event Ticket Provider
  8. and Services Agent: Twp Rd 554 from Hwy 2 to Hwy 44
  9. Interpretation Services
  10. Acquisition, implementation sol. management, taking and supervision on-line Exam
  11. Cisco Enterprise Agreement – Flex EA and Smartnet
  12. FCS/ITS Commvault Maintenance and License Renewals
  13. PacifiCan Prince George Fit-up - Notice of Proposed Procurement (NPP)
  14. RFP0649 Hyperconverged Infrastructure Solution
  15. RFP 2023-14 Internet Service Provider
  16. Call for Proposals B5 - Innovative Solutions Canada - Testing Stream
  17. Call for Proposals B6 - Innovative Solutions Canada - Testing Stream
  18. F5 Support Services
  19. Replace Equipment Running on HCFC-22
  20. RFP-2023-PVMD-444:Consulting Support for Transit Advisory,Support for AFCS & SIS
  21. Contract Services Analysis of Regional Fiscal Capacity of SAB and Urban Neighbors
  22. Voice Recording System for MS Teams
  23. EBOOK Database for Applied Research
  24. W3915-230036 TBIPS System Administrator and Technical Architect
  25. INVITATION TO QUALIFY-COUNTRY ISLAND FIELD CABINS EB144-240191

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-07-09

Huge Sell on Popular Electronics

  1. Maximo EAM License Transition and Configuration Services
  2. Project: tender_18420 - Feedback on Solution License Management
  3. M365 Licenses
  4. 11041 IT Network Hardware and Software
  5. Supply and Deploy Digital Signage Solution and Audio/Video Hardware for Civic Facilities
  6. Corporate Training
  7. HPE Synergy G10
  8. NetApp SolidFire Storage Node
  9. Cisco Enterprise Agreement – Flex EA and Smartnet
  10. Vendor Management Software (VMS) Solution
  11. Microsoft Surface Hub 2S
  12. Supply and Delivery of Firewall - Network Segregation
  13. Program Management Solutions Software
  14. Request for Proposal #3191 Sponsorship Management Platform
  15. Supply and Delivery of Six (6) New and Unused Slope Monitoring Stations to the Government of Yukon
  16. IBM spectrum scale data access edition per terabyte or equivalent
  17. Call for Proposals B5 - Innovative Solutions Canada - Testing Stream
  18. Call for Proposals B6 - Innovative Solutions Canada - Testing Stream
  19. Snow Blower Spare Parts
  20. Voice Recording System for MS Teams
  21. COU Data Improvement Project
  22. F5 Support Services
  23. Electronic Health Record Solution
  24. ISOA for Chromebooks
  25. 11304 Computer Aided Dispatch (CAD) System Fire Department

In Bengali, PHPStorm Debug Configuration for PHP and Laravel applications

Huge Sell on Popular Electronics

In Bengali, Overview of a Laravel Project

Huge Sell on Popular Electronics

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-07-02

Huge Sell on Popular Electronics

  1. SUPPLY AND DELIVERY OF FLEXERA SOFTWARE SUBSCRIPTION RENEWAL
  2. Standing Offer - McAfee Licensing Renewal
  3. Manage Engine Service Desk Cloud License Enterprise Upgrade
  4. F5 VELOS Blades and Transceivers
  5. Syllabus Management Software as a Service
  6. Dell EMC SAN Expansion Equipment
  7. SW-91324 Airtable RFQ
  8. Calendar Software and Curriculum Management Solution
  9. Cisco Wireless Access Points
  10. Provision of Scoreboard for Pineridge S.S.
  11. Installation of Epson Projectors and Whiteboards to various schools in the Yukon
  12. Project: tender_18404 - RFP2023-22 Clinical System Quality Review
  13. RFP 05-18-2023 “SOFTWARE SUPPLY CHAIN SECURITY SOLUTION”
  14. Dell Laptops Gjoa Haven
  15. Conference Projector and Accessories
  16. Supply and Delivery of Branch Firewall Equipment and Related Software Licensing and Support Services
  17. Request for Proposals For Municipal Administration Systems and ERP Integration
  18. 23NPP-SR004 Cellular Modems
  19. Dell Connectrix Switch
  20. 5A251-225271 Oil and Gas Integrated Mapping and Database Software
  21. EB144-240236A D200 Aluminum Grinding - Dust Collection System Upgrades - CFB Halifax Dockyard, Nova Scotia
  22. G9292-242480B Barcode Scanners
  23. Technology Architect
  24. VMware NSX Licenses and VMware vSphere Support and Subscription Renewal
  25. RFI PHSA 11714 Desk Booking Application System

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-07-02

Huge Sell on Popular Electronics

  1. NOTICE OF PLANNED PROCUREMENT AND EXPRESSION OF INTEREST FOR THE PROVISION OF REAL ESTATE AND FACILITIES MANAGEMENT SERVICES
  2. Pivotal and Content Manager Upgrade Services
  3. Contain or Abate Plastered Areas
  4. SVC Signage
  5. Fabricate and Install Emergency Access Signage
  6. CCaaS-1 RFP under Stream 2: Contact Centre as a Service (CCaaS) Supply Arrangement (SA)
  7. Visitor Resource Management
  8. Email Security and Cyber Security Awareness Services
  9. Facilitating a Strategic Planning Meeting
  10. Fire Dispatch Services
  11. Request for Proposals For Municipal Administration Systems and ERP Integration
  12. REQUEST FOR PROPOSAL (RFP) for LEED CERTIFICATION AND SUSTAINABILITY CONSULTING SERVICES for CALGARY – FOOTHILLS MEDICAL CENTRE Cyclotron and Radiopharmacy Facility
  13. DFO Hail Management System
  14. EB144-240236A D200 Aluminum Grinding - Dust Collection System Upgrades - CFB Halifax Dockyard, Nova Scotia
  15. Technology Architect
  16. Business Transformation Advisory Services
  17. Quality Automation Tosca Developer
  18. Digital Mondernization Program Director
  19. Interior Upgrades
  20. Supply of Service Management – Service Now Professional Services
  21. Avis de Projet de Marché pour Remplacement de la distribution électrique
  22. Phase 2 CBSA - Bloomfield - NB-POE Redevelopment
  23. OPS/Supply and Installation of Two (2) Tape Libraries for Ottawa Police Service
  24. Request for Proposals for a Collections Management System
  25. Quality Automation Tosca Developer

MS SQL Server Dynamic SQl, T-SQL

Huge Sell on Popular Electronics

MS SQL Server
Dynamic SQl, T-SQL

  • Mostly:

  • Dynamic SQL

  • Stored Procedure

  • Trigger

  • Cursor

  • Function

  • Sayed Ahmed

What are the Most Important
Most Used

  • Design ERD

  • Convert ERD to database

  • Normalization

  • Indexing

  • SQL

  • Stored Procedure

  • Dynamic SQL

  • These will come, not too frequent

  • Function, User Defined Data Types, Temporary Table

  • Trigger, Cursor

  • SSRS, SSIS, SSAS

  • ML in SQL Server (in advanced level)

  • May not be important initially

Today

  • More on

  • Dynamic SQL

  • Stored Procedure

  • Cursor

Basics of Stored Procedure

From Northwind Database

Dynamic SQL

  • DECLARE    @table NVARCHAR(128), @sql NVARCHAR(MAX);

  • SET @table = N'Products'

  • SET @sql = N'SELECT * FROM ' + @table;

  • EXEC sp_executesql @sql;

Convert the previous to a stored procedure

Using dynamic SQL to query from any table    of Northwind Database

Write a stored Procedure for it
table name as the parameter

Create or ALTER      Procedure    [dbo].[usp_query] ( @table NVARCHAR(128))
AS
BEGIN

Some Topics to Know and Understand to prepare for a DBMS related Job Interview

Huge Sell on Popular Electronics

Some Topics to Know and Understand
to prepare
for a DBMS related Job Interview

ACID

Database Normalization

  • 1NF: No repeating groups possible for a cell, PK identified, dependencies mapped

  • 2NF: No Partial Dependence. Non key attributes must have to depend on the full key

  • 3NF: No transitive dependency. non key attributes must have to depend on the primary key, not on any other attributes. if there is another candidate key, still that is in 3NF

  • BCNF: 3NF satisfied but multiple candidate key exist then BCNF required

  • 4NF: Multivalued Dependency exist. Need to remove that.

  • 5NF: Do not have Join dependency

4NF: Normalization

Normalization

Read Misc.: PL/SQL, T-SQL

Cursors, Triggers, Functions, Stored Procedures

Oracle Misc.

Oracle Admin and Policies

Misc. Oracle

MongoDB Misc.


Sayed Ahmed
Professor, Software Engineer, Data Scientist, and ML EngineerPart-time Professor and Course Facilitator at Colleges in Ontario, Canada
Extensive experience in Software Development and Engineering
Significant experience in Teaching.
Taught in Universities, Colleges, and Training Institutes
Master of Engineering (MEng.) in Electrical and Computer Engineering (McMaster University) (Changed Ph.D. Studies to MEng)
MSc in Data Science and Analytics (TMU/Ryerson)
MSc in Computer Science (U of Manitoba)
BSc. Engineering in Computer Science and Engineering (BUET).
(Session: 1994-95 to 1996-97 Class: 1996 to 2001)

Linkedin: https://ca.linkedin.com/in/sayedjustetc

Putin Slams Russian mercenary revolt as ‘treason’: Weekend Reads

Huge Sell on Popular Electronics

Best of Bloomberg Opinion This Week

Five Takeaways From Paris Summit to Fix Global Climate Finance

Best of Bloomberg Explainers This Week

The TechCrunch Exchange – Keeping tabs on dry powder and university spinouts

Huge Sell on Popular Electronics

Newest Jobs from Crunchboard

IBM nears $5 billion deal for software provider Apptio, Wall Street Journal reports

Huge Sell on Popular Electronics

Tweet Share

IBM nears $5 billion deal for software provider Apptio, Wall Street Journal reports

YouTube is testing an online-games offering, Wall Street Journal reports

Amazon raises investment in India to $26 billion by 2030

EU, Meta agree to July stress test on EU online content rules

Japan's JSR says it is considering being bought by state-backed JIC

imp?s=863086&li=&e=sayedum@gmail.com&p=31893149&stpe=static
imp?s=872197&li=&e=sayedum@gmail.com&p=31893149&stpe=static
imp?s=831895&li=&e=sayedum@gmail.com&p=31893149&stpe=default

Hermes wins permanent ban on 'MetaBirkin' NFT sales in US lawsuit

SolarWinds executives receive Wells notice from US SEC

US House panel critical of Twitter probe to question FTC chair at July 13 hearing

US lawmaker to re-introduce bipartisan bill to get EV industry into biofuel program

SpaceX tender offer values company at about $150 billion - Bloomberg News

Week in Review – OceanGate fires a whistleblower, hackers threaten to leak Reddit data, and Marvel embraces AI art

Huge Sell on Popular Electronics

OceanGate fired a whistleblower:

Hackers threaten to leak Reddit data:

Reddit protests continue:

Google Pixel Tablet review:

Microsoft gets serious about quantum:

WhatsApp gets automatic silencing:

Marvel’s AI art controversy:

Board members quit Byju’s:

Europe’s and Israel’s unicorns:

Coinbase, the next super app:

AI infiltrates crowdsourced work:

Read more stories on TechCrunch.com

Newest Jobs from Crunchboard

Livewire v3, Laravel Tailwind Merge, Cross-Origin Resource Sharing, and more! – №467

Huge Sell on Popular Electronics

Your Laravel week in review ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏


Laravel News

Livewire v3, Laravel Tailwind Merge, Cross-Origin Resource Sharing, and more! - №467

Week 467


Livewire v3 will be launched July 20th

Caleb Porzio just announced that Laravel Livewire v3 will officially be released on July 20th, at Laracon US!

Read more

Sponsor




Diving into Cross-Origin Resource Sharing

Learn how to harness the power of Laravel CORS in this tutorial. Discover what it is and unlock its potential for seamless cross-origin resource sharing.

Read more


Laravel Tailwind Merge

Laravel Tailwind Merge is a package that automatically resolves Tailwind CSS class conflicts in Laravel Blade files.

Read more


Lemon Squeezy for Laravel 1.0 is Here

The Lemon Squeezy for Laravel package released v1.0. Learn about this exciting package to make subscription billing, payments, and license keys a breeze!

Read more


🔥 Download the Response of an HTTP Request in Laravel

Marcel Pociot shared a tip on using the Laravel HTTP client method sink() to write a response to a file

Read more


JetBrains announced a bundle for Laravel developers: PhpStorm + Laravel Idea plugin

JetBrains, the company behind PhpStorm, has exciting news for Laravel developers. They have introduced a special bundle offer that includes PhpStorm and the Laravel Idea plugin at a 50% discount.

Read more

Laravel Jobs


The official Laravel job board connecting the best jobs with top talent.


View all

Now hiring


Senior Product Engineer - Laravel
Remote / European TZs

Laravel Frontend Developer (React Experience)
Remote (EU preferred)

Full Stack Laravel Engineer w/ VueJS Experience - USA ONLY
Remote, USA ONLY

Full-stack developer (Laravel, Vue)
Austria / Remote (Europe only)

Laravel Developer (with optional frontend)
Remote

Backend Developer
Remote, Europe only

Software Developer
Atlanta, GA or Remote- US Based

Senior Laravel Developer
Remote - Working Hours in USA Eastern Time Zone


Post a job on LaraJobs and it'll be featured here next week.

Community Links
Laraflash
github‍.com

How to Add Google reCAPTCHA v3 to Your Laravel Form
laracoding‍.com

You might be sending random people your users' data
prinsfrank‍.nl

Event-driven architectures creates resilient and fail-tolerant software
josepostiga‍.com

Laravel Users Table: Change Primary Key ID to UUID - in 3 Steps
laraveldaily‍.com

https://github.com/rmunate/LaravelHelpers
github‍.com

How To Bulk Insert Using Laravel Eloquent (With Timestamps)
laracoding‍.com

How to Get Raw SQL Query From Laravel Query Builder or Model
laracoding‍.com

🧩 Parse large JSONs from any source in a memory-efficient way
github‍.com

Bytepoint - Optimize uploaded images on the fly in Laravel
github‍.com

VPhoneInput: international phone number input for Vuetify 3
npmjs‍.com

Introducing laravel-backup-restore
stefanzweifel‍.dev

Migrate passwords from a legacy PHP application to Laravel
leopoletto‍.com

Ignition - the default Laravel error page - now offers AI solutions out of the box
flareapp‍.io

Laravel File Uploads: Save Filename in DB with Folder and URL?
laraveldaily‍.com

Avoid global variables in JavaScript
advanced-inertia‍.com

Laravel, React, and Inertia-SSR on Fly.io
fly‍.io

Hydrator released v3 ✅
github‍.com

Looking at the PHP Code to Make Your Data Chat-able with Laravel, OpenAI API
alnutile‍.medium‍.com

"Expression #1 of SELECT list is not in GROUP BY": Two Fixes in Laravel
laraveldaily‍.com

Iterate files and directories in PHP – Fast tips
inspector‍.dev

Use ray()->trace() to figure out where a call came from
myray‍.app

Save Time and Effort with This Custom Command for Laravel Project Installation
jose‍.jimenez‍.dev

Visualising Laravel and Horizon metrics using Prometheus and Grafana
freek‍.dev

Laravel MockAPI
github‍.com

Laravel Eloquent spatial package
github‍.com

Containerizing Laravel Application using Docker
hibit‍.dev

Short-lived database transactions
josepostiga‍.com

Add your link

The Archives

Last Month

Laravel Precognition Updates are Here
Laravel Precognition was overhauled and ships with a fresh perspective on predicting the outcome of a future HTTP request. ...

Use 1Password to Authenticate with Forge and Vapor Securely
To authenticate with Laravel Forge and Laravel Vapor CLIs, you can use 1Password and take advantage of the community shell ...

Observability vs monitoring
Is observability the same as monitoring? What is the difference between observation and monitoring? What is the right tool for ...

Feature Tests powered by database seeders
David Hemphill at Laracon AU talking about how to use feature tests with database seeders. ...

Laravel Octane Adds Support for Roadrunner v3
The Laravel team release Octane v2 with support for Roadrunner v3! ...

Last Year

Skip Webpack when Testing
Learn how to skip Webpack during your tests or your CI pipeline ...

Validate Your App on the Frontend With Laravel Dry Run Requests
The Laravel Dry Requests connects server-side validation with the frontend form UX. ...

Laravel Pint
The long awaited hype train is finally over, Laravels latest open source CLI app has been released and we got ...

Laravel 9.18 Released
The Laravel team released 9.18 jam-packed with amazing features and improvements. Let's look at the standout new features now available ...

Getting started with Laravel Scout and Meilisearch
We have all needed to add some sort of search to our applications before, this tutorial will walk you through ...

Running PHPStan on max with Laravel
Over the last few years static analysis in PHP, and more specifically Laravel, has become more and more popular. Follow ...

Two Years Ago

Laravel 8.48 Released
The Laravel team released 8.47 with an on-demand filesystem disk, the ability to prune failed queue jobs, and the latest ...

Laravel Google Fonts Package
Laravel Google Fonts is a package by Spatie to manage self-hosted Google Fonts in Laravel apps. ...

PHPInsights v2 is Here
PHPInsights just released v2 with the ability to automatically fix proposed insights, PHP 8 support, faster analysis, and more! ...

Shipping Docker - Learn how to use Docker in development, testing, and production.
Shipping Docker is a comprehensive course in the many uses of Docker. From playing to developing, testing to deploying, it ...

5 Tips for the Laravel Service Container
5 Things to Consider When Dealing with the Service Container in Laravel ...

Tailwind CSS 2.2 is Now Here With a New CLI and JIT Features
Tailwind v2.2 was just released with a brand-new Tailwind CLI tool, a ton of new features using the JIT engine, ...

Midsoft Solutions Inc is hiring for Sr. Software Developer – Java. 19+ more java jobs in Toronto, ON.

Huge Sell on Popular Electronics

Senior Data Integration Developer
Scotiabank - Toronto, ON
5 hours ago - Sponsored
Principal Data Engineer - CID&A
Scotiabank - Toronto, ON
2 days ago - Sponsored
Senior Software Developer
Scotiabank - Toronto, ON
4 days ago - Sponsored
Sr. Software Developer – Java
Midsoft Solutions Inc - North York, ON
20 hours ago
Software Developer
Bluewaves Mobility Innovation Inc - North York, ON
16 hours ago
Senior Software -Senior Java Developer
Arthur Grand Technologies Inc - Toronto, ON
14 hours ago
Sr. Java Developer - Hybrid - Toronto
ydc pro Inc - Toronto, ON
17 hours ago
Software Developer - Java/WebSphere ( 1 Year Contract)
Cyber-Infomax Solutions Inc. - North York, ON
13 hours ago
Developer
Computershare - Toronto, ON
23 hours ago
Sr. Software Developer - Full Stack
Midsoft Solutions Inc - Toronto, ON
20 hours ago
Software Engineer in Test I (Hybrid- Toronto)
Emburse - Toronto, ON
15 hours ago
Senior Data Integration Developer
Scotiabank - Toronto, ON
5 hours ago
Data Engineer
Softchoice - Toronto, ON
13 hours ago
Java Full Stack Developer - Government / Ministry Projects - $80-90 p/h
CorGTA Inc. - Toronto, ON
7 days ago - Sponsored
Core Java Back End Developer
Procom - Toronto, ON
3 days ago - Sponsored
Full Stack Java Developer
Procom - Toronto, ON
20 hours ago - Sponsored
Software Engineer III (Hybrid - Toronto)
Emburse - Toronto, ON
15 hours ago
Software Developer - Senior
Arthur Grand Technologies Inc - Toronto, ON
20 hours ago
Senior Software Engineer
Ripple - Toronto, ON
14 hours ago
Senior Software Engineer
Ripple Labs Inc. - Toronto, ON
10 hours ago
Principal Software Engineer - Ad Tech
Zynga - Toronto, ON
16 hours ago
Senior Software Engineer
Curinos - Toronto, ON
12 hours ago
Senior Engineer, Technology & Data Delivery
CPP Investments - Toronto, ON
12 hours ago
Senior Software Engineer in Test I (Hybrid-Toronto)
Emburse - Toronto, ON
15 hours ago
Java Cloud Engineer || Toronto, ON || Long Term Contract
Atlantis IT group - Toronto, ON
14 hours ago
Senior Java Developer - FI Trade Processing - Hybrid
Citi - Toronto, ON
8 hours ago
Sr. Java/.NET Developer (w/ Angular) - $135,000 - Toronto, ON
CorGTA Inc. - Toronto, ON
7 days ago - Sponsored
Java Engineer
ISG Search Inc - Toronto, ON
6 days ago - Sponsored
Java Developer, SpringBoot Framework
Procom - Toronto, ON
3 days ago - Sponsored

“instructor“: 5 opportunities

Huge Sell on Popular Electronics

Web Design Instructor and other roles are available
͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏

CDI College
Web Design Instructor
CDI College · Pointe-Claire, QC (On-site)
KAMRAN ESPILI 2 connections
NorQuest College
Business Instructor
NorQuest College · Edmonton, AB (On-site)
Toronto Metropolitan University 2 school alumni
premium icon +30% headcount growth over 2 years
NPC College of Arts and Design
3D Modeling Instructor for Concept Design
NPC College of Arts and Design · Richmond, BC (On-site)
radar icon Actively recruiting
Easy Apply Easy Apply
University of Calgary
Sessional Instructor - BTMA 331 LEC 02 & LEC 03, Fall 2023, Haskayne School of Business
University of Calgary · Calgary, AB (On-site)
radar icon Actively recruiting
NPC College of Arts and Design
Concept Design/digital painting Instructor
NPC College of Arts and Design · Richmond, BC (On-site)
radar icon Actively recruiting
Easy Apply Easy Apply
See all jobs

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-06-25

Huge Sell on Popular Electronics

  1. Translation and Revision Services
  2. Project: tender_18387 - Kawartha Region Alarm System Monitoring Services
  3. Digitalization of Course Content
  4. RFP for SharePoint Implementation Contractor Services
  5. Radio Systems Assessment – Fire Department
  6. BCI-RFP-2023-06-22 - Audio Visual Services
  7. Repair Roof Soffit
  8. TS/TSCP/Transit Services Security and Maintenance Services
  9. Infrastructure Real Estate Asset Inventory & Management (iTrack Solution)
  10. Managed Information Technology Service Provider
  11. Connected TV Video Ad Serving
  12. Parking Lot S Repairs
  13. General Network Equipment
  14. DT-DH-0016-MB Request for Proposals For Diagnostic Imaging (DI) Billing Solution
  15. RFSQ #23.0079 Web Application and Development Consulting and Contracting Services
  16. Development of IT Strategy and Transformational Roadmap
  17. Key Trades VOR - Ontario Region
  18. RFSQ - 05-09-2023 REQUEST FOR SUPPLIER PRE-QUALIFICATION (“RFSQ”) PROGRAM
  19. Digital Migration Services Implementation
  20. Emergency and Fire Dispatch Services
  21. Defensive Driving eLearning Course Development
  22. Provision for Trelix McAfee Intrusion Detection System and IPS Maintenance
  23. INTEGRATED WORKPLACE MANAGEMENT SYSTEMS (IWMS) (RFP) # 2023-436
  24. CRA Next Gen
  25. Managed Hosting and Application Services for PATMAP

In Bengali, Laravel Artisan CLI Overview

Huge Sell on Popular Electronics

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-06-25

Huge Sell on Popular Electronics

  1. Enterprise Resource Planning; Software and Implementation Services
  2. Phoenix Parts for Network Vault IED Cabinets
  3. RFP for SharePoint Implementation Contractor Services
  4. 11363 Passenger Information System - YLW
  5. RFP 05-10-2023 Financial Planning and Analysis (FP&A) Software Replacement Solution
  6. Workplace Experience Application
  7. RFQ - Ekahau Wifi Analyzers
  8. Cisco Webex Video Int for MST Teams
  9. Infrastructure Real Estate Asset Inventory & Management (iTrack Solution)
  10. Supply of Printers, Multi-Function Devices and Related Services
  11. SUPPLY AND DELIVERY OF GOANYWHERE RENEWAL.
  12. Endpoint Detection and Response Solution
  13. Project: tender_18339 - Pre-Notice Photo Comparison Technology (PCT) Replacement
  14. Project: tender_18290 - RFI for Fraud Management Solution
  15. Research Data Storage Solution
  16. Online Learning Platform
  17. SNB - HPE Synergy Compute Hardware- - NB
  18. DT-DH-0016-MB Request for Proposals For Diagnostic Imaging (DI) Billing Solution
  19. Elections Canada Fit Up
  20. SUPPLY AND DELIVERY OF RIGHT CLICK TOOLS SUBSCRIPTION RENEWAL
  21. Pulse Secure Virtual Private Network
  22. Modular Tape Library
  23. HP LAPTOP UPGRADE
  24. Veeam Software and Maintenance
  25. Project: tender_18376 - 2-WAY RADIO SYSTEM UPGRADE AT ROYAL VICTORIA REGIONAL HEALTH CENTRE

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-06-18

Huge Sell on Popular Electronics

  1. CNP LED Upgrade
  2. 23P-008 Learning Management System
  3. Autonomous Wayfinding Solution
  4. Dynamics CRM upgrade and reimplementation.
  5. Information Management Technology Consulting Services
  6. Managed Service Provider for Contingent Resource Program
  7. Ft Vermillion AOC – ACM Abatement and Material Tear Out
  8. S3 Object Storage
  9. COUNCIL CHAMBER AUDIO VISUAL SYSTEM REFRESH
  10. NOI: PMWeb Annual Support & Maintenance
  11. CBCPOO3458 Windsor Security
  12. Modernisation des monte-charges #5 et #6 - Demande de préqualification
  13. AMSA Statement of Work for SharePoint Platform and Project Server Application Services
  14. SQ-2022-CCPC-142: Ontario Line Don Valley Crossings Construction Works
  15. Request for Proposal for Website Development, Design, Implementation and Training
  16. Provision of Access Control Cards – HID iClass
  17. Accessibility Lift Replacement
  18. Remote Interpreter Services
  19. Turnkey Backup & Recovery Solution
  20. - Supply, Delivery and Installation of Roadside Passenger Information Display System
  21. P25PZ23385 - Hot site (Offsite) Mainframe Disaster Recovery Services
  22. Supply and Delivery of HPE DL360 GEN10 Server and Alletra 5010 Storage
  23. WEBSITE DEVELOPMENT MARKETING, COMMUNICATIONS & CONSULTING PROPOSALS
  24. Fit Up Winnipeg Record Centre - Notice of Proposed Procurement (NPP)
  25. Rendre accessibles et conformes plusieurs volets coupe-feu Complexe Guy-Favreau

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-06-18

Huge Sell on Popular Electronics

  1. Data on Retail Pharmacies
  2. 23P-008 Learning Management System
  3. PHSA 10652 - Anesthesia Information Management System
  4. Ivanti - UAL Equipment
  5. TWO (2) 3D PRINTERS
  6. Storage Area Network (SAN)
  7. External Identity
  8. Installation of Flooring at the Fredericton Public Library. - NB
  9. S3 Object Storage
  10. EOI23 279 - Electronic Plan Review
  11. COUNCIL CHAMBER AUDIO VISUAL SYSTEM REFRESH
  12. Supply and Delivery of Citrix Virtual Apps and Desktop On-Premise Licenses
  13. Para-Transit/On-Demand Scheduling Software RFP
  14. AMSA Statement of Work for SharePoint Platform and Project Server Application Services
  15. IT Enterprise Storage
  16. General Handyperson Services
  17. Handyman Services
  18. - Purchase of Cisco hardware, Cisco software licenses/subscription, and direct Cisco support (SMARTnet) from Cisco-Certified Gold Partners
  19. Intel471 - Cyber Threat Intelligence licenses
  20. Infoblox Maintenance Renewal
  21. Turnkey Backup & Recovery Solution
  22. Replacement of Copier/Printer Fleet
  23. Registration and Reception Centre Program (RRCP) Application
  24. Supply and Delivery of HPE DL360 GEN10 Server and Alletra 5010 Storage
  25. Software Quality Assurance and Testing Services

In Bengali Language: Write code in angular, different code writing concepts in AngularJS

Huge Sell on Popular Electronics

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-06-11

Huge Sell on Popular Electronics

  1. Request for Tender #3219 SDS e-Business Support & Maintenance
  2. SUPPLY AND DELIVERY OF DIGI CONNECTPORT TS 16
  3. RSA Token Refresh Project 2023
  4. METROLINX VENDOR ENGAGEMENT FOR THE ONTARIO LINE DON VALLEY CROSSINGS PROJECT
  5. INTEGRATED WORKPLACE MANAGEMENT SYSTEMS (IWMS) (RFP) # 2023-436
  6. Digital Court Notification Solutions
  7. Consultation and Design of an Orientation Platform
  8. Support & Replacement for Internet Feeds
  9. Amélioration de l'Aréna S.A. Dionne - Bar - NB
  10. Digital Forms Management Solution
  11. NRFP 12052023-BL Intrusion Detection System Upgrade and Installation, Security System Maintenance
  12. Air Quality Monitors
  13. RFI-2022-SSDV-107 : Expression of Interest for Secure Access Control System
  14. 3421 Service and Resource Center (SARC) Boardroom Hardware Update
  15. Microcomputer replacements - Panasonic Toughbook Hardware Refreshment
  16. Asset Replacement Modelling System (ARMS)
  17. Microsoft Dynamics 365 Licenses
  18. Supply and Delivery of MATRICE 350 Drone System
  19. Computer-Assisted Translation (CAT) & Project Management Software
  20. Fortinet Subscription
  21. Cisco Smartnet Renewal
  22. Supply and Delivery of HPE Servers and Storage Equipment
  23. Social Media Management Platform
  24. Cisco Firewalls
  25. Mulberry Park Multi-Purpose Outdoor Facility - Dashboard

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-06-11

Huge Sell on Popular Electronics

  1. Microsoft Teams Room Installation Services
  2. Courtyard Storm Drainage and Surface Upgrades
  3. RFSO FOR PROFESSIONAL SERVICES IN SMART BUILDING TECHNOLOGIES
  4. ENMAX 23-2978 RFP for System Development and Implementation Service Providers
  5. Wildfire General Predictive Services
  6. METROLINX VENDOR ENGAGEMENT FOR THE ONTARIO LINE DON VALLEY CROSSINGS PROJECT
  7. Wireline Services NOI
  8. MSOA - Media Monitoring
  9. INTEGRATED WORKPLACE MANAGEMENT SYSTEMS (IWMS) (RFP) # 2023-436
  10. LiDAR Data Capture for City of Medicine Hat
  11. Geospatial Database & Programming Contractor: Processing of AIS Shipping Data
  12. Video Management System - Community Housing
  13. Digital Forms Management Solution
  14. Support and Maintenance of Primary Assessment & Care Application
  15. RFI-2022-SSDV-107 : Expression of Interest for Secure Access Control System
  16. Mise à niveau de la guérite - Sept-Îles
  17. To supply and deliver new patio furniture
  18. Fabricate and Install Emergency Access Signage
  19. Procurement Technology
  20. Microsoft Dynamics 365 Licenses
  21. Advance Notice - 1011767 - S/4HANA Implementation Partner
  22. Repairs to Exterior Concrete Block Wall - Tender Ready
  23. M365 Backup Solution
  24. Parking Lot S Repairs
  25. Main Stats 2610 Room Fit-Up

In Bengali Language: What is Cloud Computing

Huge Sell on Popular Electronics

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-06-04

Huge Sell on Popular Electronics

  1. Computer Assisted Mass Appraisal (CAMA) Solution
  2. CNS: Exterior Concrete Lifecycle Extension and Construction of Canopy over Parka
  3. REQUEST FOR PROPOSALS – JIRA PARTNER
  4. RFI Saskatchewan K12 Shared Cybersecurity
  5. Integrated Results Information System (IRIS)
  6. REQUEST FOR QUOTATIONS – JIRA RESELLER
  7. Building Cladding Improvements
  8. Database Development Services - Microsoft 365 Implementation
  9. Centralized Solution for Emergency Vehicle Preemption Pilot at Traffic Signals
  10. Replace Above Ground Storage Tank and Piping - Construction Phase
  11. IT Support Partner
  12. Generator Testing Load Banks
  13. Door Widening
  14. 939252 EPark Parking Application Platform
  15. Automated Vote Counting System
  16. RFP 23-019 - MECP Modernization of Property Information (MPI)
  17. Palo Alto Firewall Replacement
  18. Main Statistic Building Roof Improvements
  19. Described Video Services
  20. Primary Care Survey Data Collection and Analysis - NB
  21. IT & Innovation Professional Service Providers
  22. ERP System and Implementation Services
  23. Information Technology Integrated Services
  24. RFP for Mechanical Services for the Grande Cache Recreation Centre
  25. 23P-004 - Website redesign, rebuild, maintenance and support

Canada: EDP Hardware and Software Bid on the Merx Canadian Projects for the day – updated : 2023-06-04

Huge Sell on Popular Electronics

  1. Digital Learning Resource Tool
  2. RFP-2022-SPST-415 : Competence Management System
  3. Talent Management System
  4. NPP-2023-03 Microsoft Licensing
  5. Database Development Services - Microsoft 365 Implementation
  6. Point of sale (PoS) and Online Payment Solutions
  7. Digital Identity Solution
  8. Video Distribution Software
  9. Software, XIQ Pilot Licensing and Support
  10. IT Support Partner
  11. 11362 Virtual Taxi Queue Software - YLW
  12. RFQ 05-13-2023 Server Evergreen FY24 Replacement Assets
  13. Commercial Off the Shelf Software
  14. RFSQ02.2023 - Data and Analytics Solution
  15. 939252 EPark Parking Application Platform
  16. ServiceNow Support Services
  17. Palo Alto Firewall Replacement
  18. SolarWinds Upgrade License and Maintenance
  19. Ice Plant Refrigeration Systems – Service Contract
  20. Professional Development of Approval Workflows in Flowable
  21. Project: tender_18202 - Four (4) Drones with Camera and Light Detection and Ranging payloads
  22. Web-based Application and Permitting Software, RFQ 58-2023
  23. 2023-001-NIC RFP MARINE NAVIGATION INSTRUCTIONAL SIMULATOR PROGRAM
  24. Microsoft Teams Meeting Room Equipment & Services
  25. 11358 Artificial Intelligence Solutions Software - YLW

In Bengali language: version control with Bitbucket and Git and Sourcetree

Huge Sell on Popular Electronics

#Canada: #IT and #Engineering: Bid on the Merx Canadian Projects for the day – updated : 2023-05-28

Huge Sell on Popular Electronics

  1. FSOC & Special I Renovations
  2. RFP-2023-LCLP-422: PRESTO Digital Channels (“DC”)
  3. 2023010106 Network Visibility and Security Platform Tool
  4. BARRACUDA SPAM FIREWALL RENEWAL
  5. SUPPLIER REGISTRATION AND PUBLIC POSTING OF PROCUREMENT OPPORTUNITIES
  6. Réfection rampes et dalles de stationnement au Complexe Guy-Favreau
  7. Automatic Gate System
  8. Provision of Adobe Creative Cloud VIP Annual Subscription Renewal
  9. Microsoft Dynamics 365 Licenses
  10. Avolin Pivotal Consulting Services
  11. RFI2023-06-16 Cloud-Based Digital Asset Management
  12. Navision Support Services
  13. 2023 BMC Remedy License renewal
  14. Prime Consultant Request for Proposal
  15. Police Information Check Services
  16. Entrust Limited Digital Certificates
  17. Employee Engagement Survey and Consulting Services
  18. For the Supply of One (1) Mobile GPS Survey Rover & Data Collection System
  19. SAP HANA Hardware Upgrade
  20. NOI - EnerGov Assist
  21. Remplacement des refroidisseurs et installation d'un humidificateur
  22. Employee Engagement Survey and Consulting Services
  23. Environmental Services, Quality Audit Solution
  24. Installation and Monthly Service and Support of DRaaS - Dark Fibre at Fire Hall 3
  25. Citrix Maintenance and Support Renewal

Machine Learning, Big Data, Data Science, Analytics, Cloud, Security, AI, Robotics, Database, BI, Development: Software, Web, Mobile