Category: FromSitesTree.com

Some Areas of Study in Business #Root #By Sayed Ahmed

Administrative Support Business Analysis Business Law Communication Consulting Skills Customer Service e-Learning Finance and Accounting Foundation Skills Human Resources Industry Foundations Knowledge Management Leadership Management Marketing Operations Personal Development Program/Portfolio Management Project Management Sales Strategic Planning Team Building Logistics Supply Chain Management From: http://sitestree.com/?p=3665 Categories:Root, By Sayed AhmedTags: Post Data:2016-09-15 14:19:26 Shop Online: https://www.ShopForSoul.com/ (Big …

Continue reading

Installing Apache Tomcat 6.0: Windows #Root #By Sayed Ahmed

Make sure you have installed J2SE 5 (both the jdk and the jre) or greater (for tomcat 6.0, j2se5 is required according to my experience) Set the JAVA_HOME environment variable to the path of the JDK Download Tomcat 6 from http://tomcat.apache.org/download-60.cgi Click on the downloaded setup.exe file Select Core+service+examples i.e. full install When the installer …

Continue reading

Deploying .Net Windows Applications #Root #By Sayed Ahmed

Ways to deployment: XCOPY, Automated setup application Use XCOPY only when there is no external dependencies other than .Net framework. And it is guaranteed that .Net framework is installed in all the target machines. Also, make sure the application directory contains all the files. Command example: XCOPY d:myApplication c:deployedApplication /s — /s indicates subdirectories will …

Continue reading

How to optimize query response time? #Root #By Sayed Ahmed

Check that only the required columns are selected [in select statements] Check that the right types of joins are used Check that if re-ordering the joins will help or not Check the indexes of the tables [is indexing done on the right columns] Check that in joins you used the indexed columns in the join …

Continue reading

Securing MySQL Database #Root #By Sayed Ahmed

Mainly deals with TestDb After installing mysql, we will need to remove test database and associated users and their permissions. We will need to use mysql database to remove associated users and permission. — DROP DATABASE test; — SELECT db.Host, db.Db, db.User, db.Select_priv -> FROM db WHERE (db.DB = “vworksDB”); From: http://sitestree.com/?p=3661 Categories:Root, By Sayed …

Continue reading

On Requirements Management and Tools #Root #By Sayed Ahmed

The Subject: Better Requirements Definition Management is Better for Business http://www.methodsandtools.com/archive/archive.php?id=107   All You Need to Know About Requirements Management http://www.elementool.com/blog/?p=457   Why do I need a Requirements Management tool? http://blog.visuresolutions.com/2012/02/why-do-i-need-requirements-management.html   Selected Topics in Software Engineering: Software Quality Verification and Forecasting http://www.iste.uni-stuttgart.de/rss/teaching/ws-20152016/s-sqvf.html     Tools: Top Requirements Management Software Products http://www.capterra.com/requirements-management-software/     List …

Continue reading

Creating Custom Tags in JSP #Root #By Sayed Ahmed

By Sayed, January 13th, 2008 [use large font in IE/Firefox] How to create custom tags in JSP? You can create custom tags in JSP. Steps: —– 1. You have to create a Java file that will define the operation of the custom tag 2. For the Java file, you have to extend javax.servlet.jsp.tagext.BodyTagSupport class 3. …

Continue reading

Matlab Overview: What is Matlab #Root #By Sayed Ahmed

Matlab is used for: Math and computation, Algorithm development, Data acquisition, Modeling, simulation, and prototyping, Data analysis, exploration, and visualization, Scientific and engineering graphics, Application development, including graphical user interface building. From: http://sitestree.com/?p=3647 Categories:Root, By Sayed AhmedTags: Post Data:2016-09-15 14:20:51 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 …

Continue reading

More CSS Layouts #Root #By Sayed Ahmed

Three Column layout with header and footer: The CSS html, body { margin: 0; padding: 0; } #header { width: 800px; float: left; } #maincontainer { width: 800px; float: left; } #nav { width: 200px; float: left; } #main { float: right; width: 600px; } #footer { width: 800px; float: left; } The XHTML <!DOCTYPE …

Continue reading

Should you learn Websphere? #Root #By Sayed Ahmed

Yes, you can. Why? IBM Websphere products are used by many reputed enterprises/companies as their software development platforms. Just to mention Websphere is really the name of a group of enterprise software development tools from IBM where Websphere application server is the central tool. The platform is J2EE centric. If you plan to build your …

Continue reading