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
Jul 11
#Canada: #IT Jobs:#Consultants, #Contractors, #Analysts, #Engineers, #Developers, #Technology Consultants, #IT-Consultants Opportunities2021-07-12
Jul 11
#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
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
Jul 11
economics Canadian Labor Market Bounces Back Strongly After Lockdowns
Billion-dollar mistake: How inferior 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
Jul 11
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
Jul 11
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
Jul 11
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
Jul 11
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
Jul 11
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
Jul 11
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
Jul 11
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
