static void Main(string[] args)
{
string file = "C:\\Users\\ANLALK\\Desktop\\ApplicationTesterResultComponentSummary.xml";
XmlDocument doc = new XmlDocument();
doc.Load(file);
XmlNodeList errorElements = doc.SelectNodes("APPLICATION_TESTER/COMPONENT");
StreamWriter writetext = new StreamWriter("C:\\write.txt");
// Line("writing in text file");
foreach (XmlNode error in errorElements)
{
writetext.Write(error.SelectSingleNode("COMPONENT_NAME").InnerText + ",");
}
writetext.Close();
Console.ReadKey();
}
My Blog
Thursday, August 6, 2015
Writing Acknowledgements in third person
ALL THE FOLLOWING WERE TAKEN FROM VARIOUS SITES AND NONE WERE WRITEN BY ME,
Purpose of acknowledgements page is to show appreciation to those who contributed in conducting research / other tasks and duties related to the thesis writing.
Therefore when writing acknowledgements page you should carefully consider everyone who helped during research process and show appreciation in the order of relevance. In this regard it is suitable to show appreciation in brief manner instead of using strong emotional phrases. In this part of your work it is normal to use personal pronouns like “I, my, me” while in the rest of the paper this articulation is not recommended. Even when acknowledging family members and friends make sure of using the wording of a relatively formal register.
Please find below the list of the persons you should acknowledged:
- Supervisors (main and second)
- Academic staff in your department
- Technical staff
- Academic staff
- Colleagues
- Institutions and organization
- Companies
- Family and friends
Note however that different projects require different resources and therefore you should adjust your list of acknowledged persons.
------
- Those who provided scientific guidance,
- Those who shared unpublished results
- Persons that provided you facilities / equipment
- Persons which have participated in the discussions
- Technicians, lab assistants
- Students
- Funding agency, grant number, institution
------
1. Allah SWT
2. The Prophet Muhammad SAW
3. Parents
(in numbered way)
1. The Dean,
2. The Head of Department,
3. The Secretary of Department,
4. The Supervisors,
5. The lecturers,
6. The head or the leader where the research took place,
7. The head of the library,
8. Husband/Wife (if any),
9. Brothers/Sisters (if any),
10. Sons/Daughters (if any),
11. Fiance/Fiancee (if any),
12. Best Friends including those who helped in finishing the thesis,
13. Friends including classmates.
NB:
Some faculties sometimes have their own formats in writing thesis acknowledgement. My suggestion and writing in this posting is an alternative way. Hope today's posting will be useful for all of us. Amien.
------
In one paragraph:
Wednesday, July 29, 2015
How to test video files using ffmpeg
1 Download FFmpeg
2 Extract the files using 7-Zip
3 Set the Environment variable. Open cmd and type ffplay -version to verify.
4 Download my test video files.
test1.mp4 = 5 second video
test2.mp4 = 0 bytes video
test3.mp3 = corrupted video file
[corrupt your own files]
* Set the report name.
SET FFREPORT=file=ffreport.log
5 Test the video file.
cd C:\Users\ANLALK\Videos
SET FFREPORT=file=ffreport.log
ffplay -autoexit -report C:\Users\ANLALK\Videos\test3.mp4
6 Either read the console output or the report.
2 Extract the files using 7-Zip
3 Set the Environment variable. Open cmd and type ffplay -version to verify.
4 Download my test video files.
test1.mp4 = 5 second video
test2.mp4 = 0 bytes video
test3.mp3 = corrupted video file
[corrupt your own files]
* Set the report name.
SET FFREPORT=file=ffreport.log
5 Test the video file.
cd C:\Users\ANLALK\Videos
SET FFREPORT=file=ffreport.log
ffplay -autoexit -report C:\Users\ANLALK\Videos\test3.mp4
6 Either read the console output or the report.
Subscribe to:
Posts (Atom)