Project Schedule Development In this phase, project duration, project finish date, schedules of the activities are determined. Input: Activity ListActivity AttributesProject Schedule Network Diagrams Activity Duration Activity Resource Requirements Resource Calendars Tools: Critical Path Model (CPM) CPM is extensively used to determine the project duration. CPM method also helps to identify how much individual activities …
Category: Root
May 15
Initiate a Project #PMP – Project Management
Initiating Projects How a project starts? Projects are done for one of the following three reasons Business Requirements: Example: The government requires airline companies to implement safety-management systems. A company needs to find out the success of their ecommerce web-site. Opportunities:To take advantage of an opportunity like technology breakthrough. Example: many projects may be planned …
May 15
Review: Overview of Project Management #PMP – Project Management
Overview of Project Management [Source Internet] What is a project? A project is an activity that using plans and processes creates a product, a service, or a result. A product is a physical product like a TV, a service is like the Internet, a website; result [analytical model, proof of something] is the knowledge based …
May 15
Some Topics on Project Communication Management #PMP – Project Management
Some Topics on Project Communication Management For bigger projects communication also needs to be preplanned and executed effectively. Though based on circumstances the plan may be reviewed and changed. Overview Project communication can be very tricky and political Deals with Compiling, Sending, Storing, distributing and managing project record Handles four areas:What to communicate, to whom, …
May 14
Multimedia Training
Preview Mail ইলাস্ট্রেটরে তৈরি করুন টাইপোগ্রাফিক লোগো Author-Check- Article-or-Videoপূর্ববর্তী পোস্টে টাইপোগ্রাফি সম্পর্কে কিছুটা ধারনা পেয়েছেন এবং একটি হাউজিং কোম্পানির লোগো দেখেছেন। বলাই বাহুল্য সেটি ছিল একটি টাইপোগ্রাফিক লোগো। আজকের পোস্টে এই লোগোটি তৈরি করে দেখাবো। তার আগে লোগোটি এক নজর দেখে নিন আর যারা আগের পোস্ট মিস করেছেন তারা আগের পোস্ট পড়ে আসতে পারেন। না …
May 11
Magento 2, Update a Product Attribute with SQL
update catalog_product_entity_int set catalog_product_entity_int.value = 1 where (catalog_product_entity_int.attribute_id = 97) and catalog_product_entity_int.entity_id = ( select entity_id from ( SELECT product.entity_id as entity_id FROM bitnami_magento.catalog_product_entity product inner join catalog_product_entity_decimal price on price.entity_id = product.entity_id and (price.attribute_id in (78)) inner join catalog_product_entity_int status_t on (status_t.entity_id = product.entity_id) and (status_t.attribute_id=97) where (price.value > 5 and price.value <= 50) …
May 06
Technical and Vocational Institute Summary Report
Technical and Vocational Institute Summary Report Education level Management Institute Teacher Student Total Female Total Femal Total Female 01 – POLYTECHNIC INSTITUTE PRIVATE 357 12 4759 868 5946 1887 PUBLIC 57 3 1389 165 27173 15960 02 -TECHNICAL SCHOOL AND COLLEGE PRIVATE 84 5 1016 222 162 57 PUBLIC 37 0 440 65 1165 183 …
May 02
Index funds are the answer for most investors
https://www.bloomberg.com/news/articles/2021-05-02/warren-buffett-tech-shares-are-bargain-stock-picking-is-hard-buy-index-funds?srnd=premium-canada "Index funds are the answer for most investors. The fact that it’s so hard to predict what kind of tremendous change there will be in the world is a great argument for diversified index funds, Buffett said. The billionaire has advised the trustee of his will that when he passes, 90% of his bequest …
May 02
Bandits and #Reinforcement Learning Course
Best Multi-Armed Bandit Strategy? (feat: UCB Method) https://www.youtube.com/watch?v=FgmMK6RPU1c Reinforcement Learning: Complete Course: https://www.youtube.com/watch?v=4SLGEq_HZxk&list=PLnn6VZp3hqNvRrdnMOVtgV64F_O-61C1D From the Book by Sutton: http://incompleteideas.net/book/RLbook2018.pdf https://web.stanford.edu/class/psych209/Readings/SuttonBartoIPRLBook2ndEd.pdf Just did a google search, and I see that the algorithms from the book are implemented and provided at: https://github.com/LyWangPX/Reinforcement-Learning-2nd-Edition-by-Sutton-Exercise-Solutions Article: https://towardsdatascience.com/a-comparison-of-bandit-algorithms-24b4adfcabb https://towardsdatascience.com/a-comparison-of-bandit-algorithms-24b4adfcabb
May 01
Placement of buttons in a BoxLayout using rigid areas, struts, and glue #Programming Code Examples #Java/J2EE/J2ME #Layout Managers
############### InvisibleComponentTest.java Placement of buttons in a BoxLayout using rigid areas, struts, and glue ############### import java.awt.*; import javax.swing.*; import javax.swing.border.*; /** Example of using rigid areas, struts, and glue to * produce the effect of invisible components. * ****************** public class InvisibleComponentTest extends JPanel { Component spacer; public InvisibleComponentTest() { setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); // …
