RSS
 

Writing Reading Report For My Class

29 Nov

At this late night, I’m writing for my class assignment titled “Professional Reading Report.” This blogging is kind of like a break from the assignment.

I need to come back to complete it because I have another assignment due tomorrow by the class… I didn’t know I got them all due tomorrow.

Well, I’m new to blogging in English and not sure how I should write. I don’t usually read personal blogs in English. Omg, it’s harder than writing a paper for school :P

 
 

Meeting Business Intelligence

11 Nov

This is a huge area of study. I’m learning about Business Intelligence from this week to the end of this semester in my capstone class. The study of BI is about 15 years old, and it is still in active and hot. That’s not normal in this industry. I’m happy that I could be in the class learning about this fantastic topic. Just I’m thinking that I should’ve taken another class about business warehousing… That sounds really good :)

 
No Comments

Posted in Business

 

started learning Shell Scripting

17 Aug

Last semester when I was learning in SAP Basis class, I felt sorry for my scripting knowledge. It was miserably… terribly bad. I just copied and pasted the same command over and over again to add multiple users to our SUSE Linux… Ever since, I put “learn shell scripting” in my todo, and finally I started learning shell scripting.

I tried the following script, and realized how it’s useful!

1
2
3
4
5
6
7
#!/bin/bash
 
echo '$1:' $1;
echo '$2:' $2;
echo '$3:' $3;
echo '$0:' $0;
echo '$#:' $#;

I’ll learn some more when I get time to become more comfortable in writing scripts. It’s gonna change how I interact with command line interface as I learn.

 
No Comments

Posted in Shell