G. Leelakrishnan is seeking assignments in design and detail engineering in instrumentation. He has a Bachelor's degree in Instrumentation and Control Engineering from R.V.S College of Engineering. He has over 3 years of experience as an Instrumentation Engineer at Vetri Engineers in Coimbatore, India. Some of his responsibilities include design and documentation, developing vendor sources, and coordinating with clients and subcontractors on projects in oil and gas and water treatment. He is proficient in various engineering software and has participated in industrial automation and VLSI design workshops.
The document provides an overview of fit-PC Industrial PCs product line, including high-level descriptions and features of several products: IPC2, an Intel Core-based system with display and expansion ports; Intense PC, an Intel Core processor system with mini-PCIe slots; Fit-PC4, an AMD processor system with DDR memory and Ethernet ports; and fitlet-B/i/X, low-power AMD systems with video outputs and storage options. Target markets for the products include industrial automation, medical, and commercial applications.
SCL Event - Egil Moller Nielsen & Chee Yew Wong - Innovative Delivery Solutio...Global Business Intel
?
An innovative solution called Penguin Pick-Up is proposed to address the high last-mile delivery costs that cause online shoppers to abandon purchases. Penguin Pick-Up allows customers to pick up online orders from retail locations for free, addressing shoppers' concerns about delivery charges. Since starting, Penguin Pick-Up has seen exponential growth. A survey found that over half of customers buy online monthly and many continue shopping in the store after pickup. The model saves retailers over 70% per package on distribution costs compared to home delivery. An expansion called Penguin Fresh could also allow online ordering of groceries for pickup.
CIO Event - Bid Winning: How can technology in your business assist your next...Global Business Intel
?
The document discusses how technology can assist Abellio's bidding process in public transport contracts across Europe. It emphasizes the importance of enhancing passenger experience through innovative digital initiatives and a strategic bidding approach. Overall, it presents bidding as a continuous journey that requires defining a unique process and enjoying the experience.
Social Media Marketing and Your Targeted AudienceMoshiur Monty
?
Social media marketing is crucial as it connects businesses with a large audience, with 81% of B2B companies active on social platforms. Significant statistics include that 850 million users are on Facebook and 93% of business buyers are advocates of social media. The evolving landscape emphasizes peer recommendations and new marketing strategies, indicating that social media is essential for modern marketing approaches.
Mike Shaw discusses how IT can help businesses facing digital disruption. He outlines how digital disruptors operate using minimum viable products, public experimentation, and continuous innovation. Disruptors use mobile/wearable apps, data science in products, and hybrid/fluid apps. Shaw argues IT needs a "two-speed" model with reliable core IT and more agile fluid IT. Fluid IT focuses on continuous innovation, hybrid apps, data science/big data, and engaging customer experiences across devices. Core and fluid IT must cooperate in areas like service brokering, APIs, continuous delivery, and protecting all data and apps.
1. The document describes how a custom Java applet integrates with Oracle Forms to provide recipe/formula/routing design functionality. It discusses communication between the applet and Forms, the structure of the applet code, debugging techniques, and setup instructions.
2. The applet code is divided into common, client, and server packages. The client code runs in a browser and communicates with server code via data managers. Server code interacts with the database through JDBC and PL/SQL packages.
3. Debugging involves using print statements in the client code and log files in the server code. The applet is set up by configuring the JDeveloper IDE and importing required Forms
14. 条件判断
- if
? bash的条件判断分为if语句 和 case语句:
1, if
if语句可以有如下格式:
if ... then ... fi
if ... then ... else ... fi
if ... then ... elif .... else ... fi
另外在每一个条件分支均可以嵌套if语句, 示例:
count=99
if [ $count -eq 100 ]; then
echo "Count is 100"
else
if [ $count -gt 100 ]; then
echo "Count is greater than 100"
else
echo "Count is less than 100"
fi
fi
15. 条件判断
- case
? case语句用于作多路分支判断, 格式如下:
case variable in
pattern1)
statements
;;
pattern2)
statements
;;
esac
需要注意两点:
1, variable与各个分支指定的字符串进行模式匹配; 如果分
支指定的是*)那么一定可以匹配成功.
2, 如果在某个分支匹配成功, 之后的分支不会被执行;
示例: demo9.sh
16. 循环
- for
? bash支持4中循环语法: for/while/until/select, 这里介
绍常用的for/while循环.
1, for
for循环的语法格式如下:
for variable in word_list
do
statements
done
示例:
for file in `ls`
do
echo $file
done
17. 循环
- while
2, while
while循环使用如下格式:
while ...
do
statements
done
示例:
declare -i a=1
while [ $a -ne 10 ]; do
echo $a
a=a+1
done
示例: demo10.sh
20. 文件globbing
? bash在解析用户输入的命令时, 如果输入的参数中带有*或者?字
符, 会对该参数进行文件名展开(file globbing); 如果存在匹配该模
式的文件则展开为所有这些匹配的文件名, 如果不存在使用原来
的字符串, 示例:
ls a* # No such file or directory
touch aa ab
ls a* # aa ab
? *&?
* 表示仸意多个字符
? 表示一个字符
注意: 如果需要在字符串中使用*, 则需要使用进行转义, 比如: ls
a*
? bash只会对未使用引号(包括单引号/双引号)的参数进行扩展, 如
果使用了引号则扩展不会发生. 示例: ls “a*”
? 示例: demo13.sh