#Sensor: #Canada: #Job/Contract/Project: #Sensor, #Tracking, #Fusion, #Estimation, #Surveillance, #sensor network, #target #tracking, #security 2021-07-12

Date Posted:2021-07-12 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; 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. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

  1. aerospace-10005
  2. Communication Security Equipment (W6399-21CA06/A)
  3. armament-10027
  4. Signal Smoke Marine, Orange (W8486-217390/A)
  5. Communication Security Equipment (W6399-21CA06/A)
  6. communications-detection-and-fibre-optics-10031
  7. ITS Operational Security Services
  8. edp-and-office-equipment-maintenance-10035
  9. Applicant Tracking System
  10. engines-turbines-components-and-accessories-10008
  11. Communication Security Equipment (W6399-21CA06/A)
  12. fire-fighting-security-and-safety-equipment-10010
  13. SURVEILLANCE SYSTEM – Fisher Court – 401 Fourth Avenue W, Geraldton, 401R Fourth Avenue W, Geraldton & Collingwood Court, 610 Winnipeg Street, Schreiber
  14. SURVEILLANCE SYSTEM – 1908, 1930,1940 FREDERICA STREET
  15. Regional headquarters security platform upgrade
  16. RFQ for the Provision of Security Guard Services
  17. marine-10017
  18. Communication Security Equipment (W6399-21CA06/A)
  19. office-stationery-and-supplies-10021
  20. Communication Security Equipment (W6399-21CA06/A)
  21. scientific-instruments-10024
  22. Water Level Sensor Install and Maintenance
  23. information-processing-and-related-telecommunications-services-10049
  24. One (1) Information Technology Security Threat and Risk Assessment and Certification and Accreditation Analyst for the Financial Consumer Agency of Canada (FCAC). (20210477)
  25. maintenance-repair-modification-rebuilding-and-installation-of-goods-equipment-10054
  26. Traffic Signal Rebuild and Illumination upgrades – RR 41 Woodlawn Road at RR 50 Niagara Street, in the in the City of Welland
  27. professional-administrative-and-management-support-services-10040
  28. Content Delivery Network (CDN) Solution c/w Security for CBC/Radio-Canada
  29. research-and-development-r-d-10036
  30. ITS Operational Security Services
  31. special-studies-and-analysis-not-r-d-10047
  32. Water Level Sensor Install and Maintenance
  33. undefined-10055
  34. EPS/BLRS Web Surveillance Solution for Short-Term Rentals in the City of Ottawa
  35. Keywords Used:sensor,fusion,sensor network,tracking,target tracking,surveillance,self driving car,self-driving,estimation,security,signal processing,image processing,autonomouse vehicle,facial recognition,signal,recognition,sensor fusion

    economics Canadian Labor Market Bounces Back Strongly After Lockdowns

    Billion-dollar mistake: How inferior IT killed Target Canada

    https://www.zdnet.com/article/billion-dollar-failures-how-bad-decisions-and-poor-it-killed-target-canada/

    Canadian Labor Market Bounces Back Strongly After Lockdowns
    https://www.bloomberg.com/news/articles/2021-07-09/canadian-labor-market-bounces-back-strongly-after-lockdown

    Example use of case #Linux/Unix: Shell Programming – 001

    Example Output:
    10 * 1 = 10
    10 * 2 = 20
    10 * 3 = 30
    10 * 4 = 40
    10 * 5 = 50
    10 * 6 = 60
    10 * 7 = 70
    10 * 8 = 80
    10 * 9 = 90
    10 * 10 = 100

    ———————————-

    #!/bin/bash
    multi()
    {
    clear
    for ((i=1;i<=10;i++));
    do
    echo “$Y * $i = `expr $Y * $i`”
    done
    }

    echo “Enter your Number”
    read X

    case “$X” in

    1)

    Y=1
    multi
    ;;

    2)

    Y=2
    multi
    ;;

    3)

    Y=3
    multi
    ;;

    4)

    Y=4
    multi
    ;;

    5)

    Y=5
    multi
    ;;

    6)

    Y=6
    multi
    ;;

    7)

    Y=7
    multi
    ;;

    8)

    Y=8
    multi
    ;;

    9)

    Y=9
    multi
    ;;

    10)

    Y=10
    multi
    ;;

    esac
    exit

     


     

    Output

     

    7 * 1 = 7
    7 * 2 = 14
    7 * 3 = 21
    7 * 4 = 28
    7 * 5 = 35
    7 * 6 = 42
    7 * 7 = 49
    7 * 8 = 56
    7 * 9 = 63
    7 * 10 = 70 From: http://sitestree.com/?p=12187
    Categories:Linux/Unix: Shell Programming – 001
    Tags:
    Post Data:2018-04-16 18:33: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

    Use of For Loops and Functions in Shell Programming #Linux/Unix: Shell Programming – 001

    bash-3.2$ cat multiplication.sh
    #!/bin/bash

    # Example use of function/method declaration in Shell Programming
    # Example use of for loop

    #a function that will multiply 1 to 10 with 5
    multiplication()
    {
    x=5
    for i in {1..10}
    do
    echo $i
    echo “the multiplication result is:” $(($i*$x))
    done
    }

    echo “Print 1 to 10; also multiply each number with 5 and show the multiplication result”
    multiplication

    —————————–
    Output – ?????

    bash-3.2$ ./multiplication.sh
    Print 1 to 10; also multiply each number with 5 and show the multiplication result
    1
    the multiplication result is: 5
    2
    the multiplication result is: 10
    3
    the multiplication result is: 15
    4
    the multiplication result is: 20
    5
    the multiplication result is: 25
    6
    the multiplication result is: 30
    7
    the multiplication result is: 35
    8
    the multiplication result is: 40
    9
    the multiplication result is: 45
    10
    the multiplication result is: 50 From: http://sitestree.com/?p=12185
    Categories:Linux/Unix: Shell Programming – 001
    Tags:
    Post Data:2018-04-16 18:16: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

    Example use of case in KSH. Show Today’s Day Name #Linux/Unix: Shell Programming – 001

    bash-3.2$ cat ksh_case_example_1.sh
    #!/bin/ksh

    #show today’s day name
    DAY=`date +%a`

    #show value of $DAY
    echo $DAY

    #based on the value of the DAY variable show the day name in full format
    case “$DAY” in

    Mon)
    echo “Monday”
    ;;

    Tue)
    echo “Tuesday”
    ;;

    Wed)
    echo “Wednesday”
    ;;

    Thu)
    echo “Thursday”
    ;;

    Fri)
    echo “Friday”
    ;;

    Sat)
    echo “Saturday”
    ;;

    Sun)
    echo “Sunday”
    ;;

    esac

    —————

    Output – ?????

    bash-3.2$ ./ksh_case_example_1.sh
    Sun
    Sunday From: http://sitestree.com/?p=12183
    Categories:Linux/Unix: Shell Programming – 001
    Tags:
    Post Data:2018-04-16 18:14:45

    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

    Take Two values from the user and do arithmetic operations #Linux/Unix: Shell Programming – 001

    #!/usr/bin/bash
    clear
    echo “Enter First Number”
    read x

    echo “Enter Second Number”
    read y

    #does not work for /bin/sh
    (( z = $x + $y ))
    (( a = $x – $y ))
    (( b = $x * $y ))
    (( c = $x / $y ))

    #clear

    echo “Addition of 2 numbers is =” $z
    echo “Subtraction of 2 numbers is =” $a
    echo “Multiplication of 2 numbers is =” $b
    echo “Division of 2 numbers is =” $c

    —————————–

    Output – ?????

    Enter First Number
    20
    Enter Second Number
    5
    Addition of 2 numbers is = 25
    Subtraction of 2 numbers is = 15
    Multiplication of 2 numbers is = 100
    Division of 2 numbers is = 4 From: http://sitestree.com/?p=12181
    Categories:Linux/Unix: Shell Programming – 001
    Tags:
    Post Data:2018-04-16 18:13:03

    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

    Arithmetic Operations using two variables #Linux/Unix: Shell Programming – 001

    #!/bin/sh

    #will do addition, subtraction, multiplication, and division of two variables
    X=12
    Y=5

    #print the values of the variables
    echo “X value is: “$X
    echo “Y value is: “$Y

    #addition
    echo “X + Y” = `expr $X + $Y`

    #subtraction
    echo “Y – X” = `expr $Y – $X`

    #multiplication
    echo “X * Y” = `expr $X * $Y`

    #division
    echo “X / Y” = `expr $X / $Y”`

    ????? – Output

    bash-3.2$ ./arithmetics-operations-of-variables.sh
    X value is: 12
    Y value is: 5
    X + Y = 17
    Y – X = -7
    X * Y = 60
    X / Y = 2 From: http://sitestree.com/?p=12179
    Categories:Linux/Unix: Shell Programming – 001
    Tags:
    Post Data:2018-04-16 18:11:48

    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

    Examples of using variables in a Shell Program #Linux/Unix: Shell Programming – 001

    #!/bin/sh

    #assign value to a variable and print to the screen
    NAME=”Justetc”
    echo $NAME

    #Ask the user to enter a Name
    echo ##################################
    echo “enter name”

    #read command is used to take input from the user
    read X

    #print the value two times to the screen
    echo $X
    echo $X
    —————————
    ????? – Output

    bash-3.2$ ./variable_use.sh
    Justetc

    enter name
    Sayed Ahmed
    Sayed Ahmed
    Sayed Ahmed From: http://sitestree.com/?p=12177
    Categories:Linux/Unix: Shell Programming – 001
    Tags:
    Post Data:2018-04-16 18:10:44

    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

    A Basic Shell Program #Linux/Unix: Shell Programming – 001

    #!/bin/sh

    #if enabled – will spit out the script to the screen
    #set -v

    #clear the screen
    clear

    echo “SCRIPT BEGINS”

    #shows current login name
    echo “Hello $LOGNAME”

    #shows current date in the same line
    echo “Todays date is: c”
    date +%m/%d/%y

    #shows current time in the same line
    echo “and the current time is: c”
    date +%H:%M:%S%n

    #shows a list of the processes
    echo “Now a list of the processes in the current shell”
    ps

    echo “SCRIPT FINISHED!!”

    #example of how to use a variable
    NAME=”Justetc”
    echo $NAME
    ——————————————–
    Output – ????????? ?? ?????

    SCRIPT BEGINS
    Hello shell
    Todays date is: 04/15/18
    and the current time is: 14:46:43

    Now a list of the processes in the current shell
    PID TTY TIME CMD
    14522 pts/2 0:00 bash
    14590 pts/2 0:00 a_basic_
    14595 pts/2 0:00 ps
    14508 pts/2 0:00 sh
    SCRIPT FINISHED!!
    Justetc From: http://sitestree.com/?p=12175
    Categories:Linux/Unix: Shell Programming – 001
    Tags:
    Post Data:2018-04-16 18:09: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

    Repair laptop battery at home|| how to open laptop battery and rebuild after repairing #Misc

    Watch this for concepts. However, do not do as it is. Take some safety measures and precautions as well. Understanding the theory behind circuits will help.
    [youtube https://www.youtube.com/watch?v=Da4ilNuUCsg&w=853&h=480] From: http://sitestree.com/?p=12304
    Categories:Misc
    Tags:
    Post Data:2018-09-14 22:15:20

    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