Image Types to be used in Web-Sites #79

Mostly GIF or JPEG. PNG is also a good option (larger file size and no animation supported). Why? Widely supported by browsers. Image sizes are not large (good for data transfer through the Internet). GIF (<256 colors) when not many colors in the picture. JPG/JPEG logically is the best when too many colors in the image (to support wide variety of browsers). However, resizing/reducing size/editing and re-saving may degrade the quality of the image. Best approach, work in a raw file format such as BMP, save the file in JPG when it’s the final image that you will use in the web-site.

References:

From: http://sitestree.com/?p=5285
Categories:79
Tags:
Post Data:2010-05-02 22:44:07

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
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Transparent Background using CSS #79

The following CSS or similar can be used to put text/image on a transparent box. The background (background image if any) will be seen through the box

div.backgroundImg{  width: 500px;  height:500px;  background: url(test.jpg) repeat;}div.transparentBox{  width: 500px;  height: 500px;  margin: 30px 30px;  background-color: #ffffff;    filter:alpha(opacity=60);  opacity:0.6;}div.transparentBox p{  margin: 30px 40px;  font-weight: bold;  color: #000000;}

From: http://sitestree.com/?p=5284
Categories:79
Tags:
Post Data:2011-12-12 21:04:10

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
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

CSS Selectors: Reference #79

CSS Selector Examples and Notes (check each line carefully and notice differences with other (esp. immediate) lines):
(Reference: CSS: The Definitive Guide: 3rd Edition: by E. A. Mayer:)

  1. Basic Rules: The following css rules apply to the corresponding html/xml elements/tags (left of { ) as found anywhere in the scope (html/xml files) of these css rules
    html {color: black; }
    h1 {color: gray; }
    h2 {color: silver; }
    p {font: medium Helvetica; }
    QUOTE {color: gray; }
    BIB {color: red; }
  2. Grouping: Applies to all html/xml elements as mentioned before { with commas
    h2, p {color: gray; }
    body, table, th, td, h1, h2, h3, h4, p, pre, strong, em, b, i {color: gray; }
    h1, h2, h3, h4, h5, h6 {color: gray; background: white; padding: 0. 5em;}
    border: 1px solid black; font-family: Charcoal, sans-serif; }
    Remember: if you miss a semicolon (;), the rest (not the previous ones) of the css properties will be ignored
  3. Class and ID selectors: Apply to all html/xml elements as mentioned before { with commas
    p {font-weight: bold; } : Applies to any p
    p.warning {font-weight: normal; } : Apply to any p tags with class set to ‘warning’ : Example: <p class="warning" …
    *. warning {font-weight: bold; } : Apply to any html/xml elements with class attributes set to ‘warning’
    .warning {font-style: italic; }
    span. warning {font-weight: bold; }: only span tags with class attributes set to warning
    .warning.urgent {background: silver; }: Apply to elements having both values in class attributes. Example: <p class='warning urgent'
    p.warning.help {background: red; }: Example use: <p class="urgent warning help" ….
  4. ID selectors: Apply to elemens having the ID as provided in css class declaration. One document can have only one ID with the same value. Though CSS cannot idenntify that. Using the same ID for multiple elements is a bad practice (will have side-effects with JS/DOM).
    *#first-para {font-weight: bold; }: Apply to elements with ID attributes set to first-para:
    Example: <p id="lead-para" ….
    #lead-para {font-weight: bold; } : is also valid
  5. Attribute selectors: IE7 will support. < = IE6 will not support. Supported by Safari, Opera, and Gecko based browsers
    h1[class] {color: silver; } : Apply to any h1 elements with class properties set to anything
    planet[ moons] {font-weight: bold; } : Great for XML
    *[title] {font-weight: bold; } : Apply to any tags with title attributes
    a[href] [title]{font-weight:bold;} : Apply to any a elements with both href and title attributes
    a[href=”http: //www.justEtc.net”] {font-weight:bold;} : Apply to any a elements with href attributes set to http://www.justEtc.net
    p[ class~=”warning”] {font-weight: bold; }: Apply to any p elements with class attribute values contain ‘warning’
    img[ title~=”Figure”] {border: 1px solid gray; } : Apply to any img elements with title attribute values contain ‘Figure’ as a word
    [ foo^=”bar”] : begins with “bar”.
    [ foo$=”bar”] : ends with “bar”.
    [ foo*=”bar”]: having bar as a substring
    Particular attribute selectors: *[lang| =”en”] {color: white;} : Apply to any elements whose lang attributes are set to en or begin with en
  6. Selecting descendants
    h1 em {color: gray; } : Applies to any em elements at any depth but under h1
    ul ol ul em {color: gray; }: Any emphasized text under unordered list that is part of an ordered list that itself is under an unordered list
    h1 > strong {color: red; }: Strong immediately after h1 (not to strong at any depth below h1)
    h1 + p {margin-top: 0; } : to both h1 and p (as siblings in a document) that have a common parent
    html > body table + ul{margin-top: 1. 5em; } :
  7. Pseudo classes:
    a: visited {color: red; } : Any visited anchor tags
    a: link {} : any anchor tags
    a: hover {} : any anchor tags – on mouse over
    a: focus {} : any anchor tags – on focus
    a: active {} : any anchor tags – on active
    a#footer-copyright: visited{font-weight: bold; }: any visited anchor tag with id footer-copyright
    p: first-child {font-weight: bold; }
    a: visited: hover {color: maroon; }
    p: first-letter {color: red; }
    p: first-line {color: purple; }
    h2: before {content: “] ] “; color: silver; } : styling before h1 elements
    body: after {content: ” The End. “; }

From: http://sitestree.com/?p=5282
Categories:79
Tags:
Post Data:2013-01-11 18:25:33

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
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

Very Useful Resource for Search Engine Optimization #79

From: http://sitestree.com/?p=5172
Categories:79
Tags:
Post Data:2008-09-27 02:27:27

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
8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning)
Shop Online: https://www.ShopForSoul.com/
Medium: https://medium.com/@SayedAhmedCanada

#Engineering: #Canada: #Job/Contract/Project: Any #Engineering: #Computer, #Electrical, #Electronics, #Civil, #Chemical, #Mechanical, #Naval, #Biomedical, and misc Engineering

Date Posted:2021-08-05 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; submit RFP to be considered for projects in future; Try to become a vendor so that you are asked to submit consultants/resources in future. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

  1. air-conditioning-and-refrigeration-equipment-10016
  2. Supply And Installation Of Heating, Ventilation And Air Conditioning (Hvac) System Replacement, Electrical Upgrades
  3. communications-detection-and-fibre-optics-10031
  4. Electrical Upgrade
  5. electrical-and-electronics-10006
  6. SOUTHERN OPERATIONS MECHANICAL AND ELECTRICAL SERVICES ENVIRONMENT & PARKS
  7. Electrical hook up of Generator
  8. fabricated-materials-10009
  9. Electrical Upgrade
  10. fire-fighting-security-and-safety-equipment-10010
  11. Electrical Upgrade
  12. food-preparation-and-serving-equipment-10012
  13. Electrical Upgrade
  14. industrial-equipment-10014
  15. Electrical Upgrade
  16. textiles-and-apparel-10028
  17. Electrical Upgrade
  18. architect-and-engineering-services-10048
  19. Wareham Spillway Replacement – Engineer
  20. Engineering & Consulting Services for – MUA unit, AC and Humidification, Building Management Control system.
  21. Engineering Services, Sewer Separation and Watermain Replacement
  22. Prequalification Refresh For Subsurface Utility Engineering Investigation Services For Capital Works Projects In The Regional Municipality Of Peel
  23. Architectural and Engineering Services
  24. communications-photographic-mapping-printing-and-publication-services-10042
  25. Electrical Upgrade
  26. educational-and-training-services-10043
  27. One Pilot Instructor and one Combination Instructor Flight Engineer and Instructor Load Master (W0107-21XC39/A)
  28. environmental-services-10050
  29. SOUTHERN OPERATIONS MECHANICAL AND ELECTRICAL SERVICES ENVIRONMENT & PARKS
  30. Environmental Centre Civil Works for Drainage Improvements
  31. health-and-social-services-10052
  32. Electrical Upgrade
  33. lease-and-rental-of-equipment-10045
  34. SCADA Systems – Electrical Instrumentation
  35. maintenance-repair-modification-rebuilding-and-installation-of-goods-equipment-10054
  36. Supply And Installation Of Heating, Ventilation And Air Conditioning (Hvac) System Replacement, Electrical Upgrades
  37. SOUTHERN OPERATIONS MECHANICAL AND ELECTRICAL SERVICES ENVIRONMENT & PARKS
  38. Tender to Provide Electrical Works to a New Garage at the City of Timmins' Wastewater Treatment Plant
  39. natural-resources-services-10051
  40. Mechanical Harvesting of Dwarf Mistletoe Jack Pine within Narrow Hills Provincial Park
  41. Electrical Upgrade
  42. quality-control-testing-inspection-and-technical-representative-services-10053
  43. MECHANICAL AND INSPECTION SERVICES
  44. Request for Proposal for Engineering Services – Kinex Arena Lifecycle Assessment
  45. RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
  46. research-and-development-r-d-10036
  47. CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
  48. utilities-10041
  49. Electrical Upgrade
  50. Keywords Used:engineer,civil,mechanical,electrical,electronics,mechatronics,naval,biomedical,computer engineer,software engineer,civil engineer,biomedical,electrical engineer,electronics engineer,mechanical engineer,metallurgical,chemical engineer,industrial engineer,communications engineer,quality assurance engineer,Aerospace engineer,aeronautical engineer,Engineering manager,Agricultural Engineer,Automotive Engineer,Environmental Engineer,Geological Engineer,Marine Engineer,Petroleum Engineer,Acoustic Engineer,Acoustic Engineer,Aerospace Engineer,Agricultural Engineer,Applied Engineer,Architectural Engineer,Audio Engineer,Automotive Engineer,Biomedical Engineer,Chemical Engineer,Civil Engineer,Computer Engineer,Electrical Engineer,Environmental Engineer,Industrial Engineer,Marine Engineer,Materials Science Engineer,Mechanical Engineer,Mechatronic Engineer,Mining and Geological Engineer,Molecular Engineer,Nanoengineering,Nuclear Engineer,Petroleum Engineer,Software Engineer,Structural Engineer,Telecommunications Engineer,Thermal Engineer,Transport Engineer,Vehicle Engineer,engineering

    #Canada: #IT Jobs:#Consultants, #Contractors, #Analysts, #Engineers, #Developers, #Technology Consultants, #IT-Consultants Opportunities2021-08-05

    Apply yourself, or submit others as a candidate, Build a recruitment team to submit others as a candidate, submit RFP to be considered for projects in future, Try to become a vendor so that you are asked to submit consultants/resources in future

    1. energy-10007
    2. ADM REM Station – Technical Consultant Engagement
    3. Source List (SL) for Environmental Consulting Services
    4. architect-and-engineering-services-10048
    5. Consulting Services for 2022 Walking Infrastructure Program
    6. Wareham Spillway Replacement – Engineer
    7. Engineering & Consulting Services for – MUA unit, AC and Humidification, Building Management Control system.
    8. Silvera At Glamorgan: Westview Residences East – Prime Consultant RFP
    9. educational-and-training-services-10043
    10. One Pilot Instructor and one Combination Instructor Flight Engineer and Instructor Load Master (W0107-21XC39/A)
    11. Assessment Consulting Service for the Assured Income for the Severely Handicapped (AISH) Program for the Province of Alberta
    12. financial-and-related-services-10038
    13. ERP CONSULTING SERVICES
    14. WSIB Consulting and Case Management Support
    15. health-and-social-services-10052
    16. Consulting Opportunity: Registrant Support Coach
    17. information-processing-and-related-telecommunications-services-10049
    18. Consulting Services for Learning Management System (LMS) / Curriculum Management System (CMS)
    19. professional-administrative-and-management-support-services-10040
    20. ERP CONSULTING SERVICES
    21. Competency Framework Consulting Services
    22. National accessArts Centre – Capital Campaign Consultant
    23. quality-control-testing-inspection-and-technical-representative-services-10053
    24. RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
    25. research-and-development-r-d-10036
    26. CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
    27. special-studies-and-analysis-not-r-d-10047
    28. Professional Consulting Services
    29. undefined-10055
    30. ERP CONSULTING SERVICES
    31. National accessArts Centre – Capital Campaign Consultant
    32. #Sensor: #Canada: #Job/Contract/Project: #Sensor, #Tracking, #Fusion, #Estimation, #Surveillance, #sensor network, #target #tracking, #security 2021-08-05

      Date Posted:2021-08-05 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; submit RFP to be considered for projects in future; Try to become a vendor so that you are asked to submit consultants/resources in future. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

      1. armament-10027
      2. Signal Smoke Marine, Orange (W8486-217390/A)
      3. communications-detection-and-fibre-optics-10031
      4. VERMILION – Provincial Building – Security Card Access System
      5. Information Security Assessment
      6. Facility Security Assessment and Authorization (FSAA) Implementation
      7. fire-fighting-security-and-safety-equipment-10010
      8. Wastewater Treatment Plant (WWTP) Entrance Security – Design Services
      9. RFP – Security improvements – camera, access control, and alarm systems
      10. scientific-instruments-10024
      11. Vehicle-to-Everything (V2X) System Using Sensor Detection
      12. textiles-and-apparel-10028
      13. Facility Security Assessment and Authorization (FSAA) Implementation
      14. architect-and-engineering-services-10048
      15. Wastewater Treatment Plant (WWTP) Entrance Security – Design Services
      16. communications-photographic-mapping-printing-and-publication-services-10042
      17. Facility Security Assessment and Authorization (FSAA) Implementation
      18. custodial-operations-and-related-services-10037
      19. P57AD21469 – SECURITY GUARD SERVICES
      20. lease-and-rental-of-equipment-10045
      21. Information Security Assessment
      22. operation-of-government-owned-facilities-10039
      23. Security Guard Services for Off-Street Operations
      24. professional-administrative-and-management-support-services-10040
      25. P57AD21469 – SECURITY GUARD SERVICES
      26. Security Guard Services for Off-Street Operations
      27. research-and-development-r-d-10036
      28. Information Security Assessment
      29. R&D WORK IN SECURITY OF EMBEDDED SYSTEMS (W7701-227429/A)
      30. utilities-10041
      31. Facility Security Assessment and Authorization (FSAA) Implementation
      32. undefined-10055
      33. Close Protection Security
      34. Keywords Used:sensor,fusion,sensor network,tracking,target tracking,surveillance,self driving car,self-driving,estimation,security,signal processing,image processing,autonomouse vehicle,facial recognition,signal,recognition,sensor fusion

        #Sensor: #Canada: #Job/Contract/Project: #Sensor, #Tracking, #Fusion, #Estimation, #Surveillance, #sensor network, #target #tracking, #security 2021-08-04

        Date Posted:2021-08-04 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; submit RFP to be considered for projects in future; Try to become a vendor so that you are asked to submit consultants/resources in future. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

        1. armament-10027
        2. Signal Smoke Marine, Orange (W8486-217390/A)
        3. communications-detection-and-fibre-optics-10031
        4. VERMILION – Provincial Building – Security Card Access System
        5. Information Security Assessment
        6. Facility Security Assessment and Authorization (FSAA) Implementation
        7. fire-fighting-security-and-safety-equipment-10010
        8. Wastewater Treatment Plant (WWTP) Entrance Security – Design Services
        9. RFP – Security improvements – camera, access control, and alarm systems
        10. scientific-instruments-10024
        11. Vehicle-to-Everything (V2X) System Using Sensor Detection
        12. textiles-and-apparel-10028
        13. Facility Security Assessment and Authorization (FSAA) Implementation
        14. architect-and-engineering-services-10048
        15. Wastewater Treatment Plant (WWTP) Entrance Security – Design Services
        16. communications-photographic-mapping-printing-and-publication-services-10042
        17. Facility Security Assessment and Authorization (FSAA) Implementation
        18. custodial-operations-and-related-services-10037
        19. P57AD21469 – SECURITY GUARD SERVICES
        20. information-processing-and-related-telecommunications-services-10049
        21. Information Security Assessment
        22. lease-and-rental-of-equipment-10045
        23. Information Security Assessment
        24. operation-of-government-owned-facilities-10039
        25. Security Guard Services for Off-Street Operations
        26. professional-administrative-and-management-support-services-10040
        27. P57AD21469 – SECURITY GUARD SERVICES
        28. Security Guard Services for Off-Street Operations
        29. research-and-development-r-d-10036
        30. Information Security Assessment
        31. R&D WORK IN SECURITY OF EMBEDDED SYSTEMS (W7701-227429/A)
        32. utilities-10041
        33. Facility Security Assessment and Authorization (FSAA) Implementation
        34. undefined-10055
        35. Close Protection Security
        36. Keywords Used:sensor,fusion,sensor network,tracking,target tracking,surveillance,self driving car,self-driving,estimation,security,signal processing,image processing,autonomouse vehicle,facial recognition,signal,recognition,sensor fusion

          #Engineering: #Canada: #Job/Contract/Project: Any #Engineering: #Computer, #Electrical, #Electronics, #Civil, #Chemical, #Mechanical, #Naval, #Biomedical, and misc Engineering

          Date Posted:2021-08-04 .Apply yourself, or submit others as candidates; Build a recruitment team to submit others as candidates; submit RFP to be considered for projects in future; Try to become a vendor so that you are asked to submit consultants/resources in future. If these work for you. This list is posted in this blog everyday provided there are new projects under the criteria

          1. construction-services-10004
          2. Wareham Spillway Replacement – Engineer
        37. air-conditioning-and-refrigeration-equipment-10016
        38. Supply And Installation Of Heating, Ventilation And Air Conditioning (Hvac) System Replacement, Electrical Upgrades
        39. communications-detection-and-fibre-optics-10031
        40. Electrical Upgrade
        41. electrical-and-electronics-10006
        42. SOUTHERN OPERATIONS MECHANICAL AND ELECTRICAL SERVICES ENVIRONMENT & PARKS
        43. Electrical hook up of Generator
        44. Electrical Upgrade
        45. Classroom AV Equipment (supply only) For Faculty of Engineering
        46. fabricated-materials-10009
        47. Electrical Upgrade
        48. fire-fighting-security-and-safety-equipment-10010
        49. Electrical Upgrade
        50. food-preparation-and-serving-equipment-10012
        51. Electrical Upgrade
        52. industrial-equipment-10014
        53. Electrical Upgrade
        54. textiles-and-apparel-10028
        55. Electrical Upgrade
        56. architect-and-engineering-services-10048
        57. Wareham Spillway Replacement – Engineer
        58. Engineering & Consulting Services for – MUA unit, AC and Humidification, Building Management Control system.
        59. Engineering Services, Sewer Separation and Watermain Replacement
        60. Prequalification Refresh For Subsurface Utility Engineering Investigation Services For Capital Works Projects In The Regional Municipality Of Peel
        61. Architectural and Engineering Services
        62. communications-photographic-mapping-printing-and-publication-services-10042
        63. Electrical Upgrade
        64. educational-and-training-services-10043
        65. One Pilot Instructor and one Combination Instructor Flight Engineer and Instructor Load Master (W0107-21XC39/A)
        66. environmental-services-10050
        67. SOUTHERN OPERATIONS MECHANICAL AND ELECTRICAL SERVICES ENVIRONMENT & PARKS
        68. Environmental Centre Civil Works for Drainage Improvements
        69. health-and-social-services-10052
        70. Electrical Upgrade
        71. lease-and-rental-of-equipment-10045
        72. SCADA Systems – Electrical Instrumentation
        73. maintenance-repair-modification-rebuilding-and-installation-of-goods-equipment-10054
        74. Supply And Installation Of Heating, Ventilation And Air Conditioning (Hvac) System Replacement, Electrical Upgrades
        75. SOUTHERN OPERATIONS MECHANICAL AND ELECTRICAL SERVICES ENVIRONMENT & PARKS
        76. Tender to Provide Electrical Works to a New Garage at the City of Timmins' Wastewater Treatment Plant
        77. natural-resources-services-10051
        78. Mechanical Harvesting of Dwarf Mistletoe Jack Pine within Narrow Hills Provincial Park
        79. Electrical Upgrade
        80. quality-control-testing-inspection-and-technical-representative-services-10053
        81. MECHANICAL AND INSPECTION SERVICES
        82. Request for Proposal for Engineering Services – Kinex Arena Lifecycle Assessment
        83. RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
        84. research-and-development-r-d-10036
        85. CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
        86. utilities-10041
        87. Electrical Upgrade
        88. Keywords Used:engineer,civil,mechanical,electrical,electronics,mechatronics,naval,biomedical,computer engineer,software engineer,civil engineer,biomedical,electrical engineer,electronics engineer,mechanical engineer,metallurgical,chemical engineer,industrial engineer,communications engineer,quality assurance engineer,Aerospace engineer,aeronautical engineer,Engineering manager,Agricultural Engineer,Automotive Engineer,Environmental Engineer,Geological Engineer,Marine Engineer,Petroleum Engineer,Acoustic Engineer,Acoustic Engineer,Aerospace Engineer,Agricultural Engineer,Applied Engineer,Architectural Engineer,Audio Engineer,Automotive Engineer,Biomedical Engineer,Chemical Engineer,Civil Engineer,Computer Engineer,Electrical Engineer,Environmental Engineer,Industrial Engineer,Marine Engineer,Materials Science Engineer,Mechanical Engineer,Mechatronic Engineer,Mining and Geological Engineer,Molecular Engineer,Nanoengineering,Nuclear Engineer,Petroleum Engineer,Software Engineer,Structural Engineer,Telecommunications Engineer,Thermal Engineer,Transport Engineer,Vehicle Engineer,engineering

          #Canada: #IT Jobs:#Consultants, #Contractors, #Analysts, #Engineers, #Developers, #Technology Consultants, #IT-Consultants Opportunities2021-08-04

          Apply yourself, or submit others as a candidate, Build a recruitment team to submit others as a candidate, submit RFP to be considered for projects in future, Try to become a vendor so that you are asked to submit consultants/resources in future

          1. construction-services-10004
          2. Wareham Spillway Replacement – Engineer
        89. energy-10007
        90. ADM REM Station – Technical Consultant Engagement
        91. Source List (SL) for Environmental Consulting Services
        92. architect-and-engineering-services-10048
        93. Consulting Services for 2022 Walking Infrastructure Program
        94. Wareham Spillway Replacement – Engineer
        95. Engineering & Consulting Services for – MUA unit, AC and Humidification, Building Management Control system.
        96. Silvera At Glamorgan: Westview Residences East – Prime Consultant RFP
        97. communications-photographic-mapping-printing-and-publication-services-10042
        98. Strategic Marketing Consultant Services (DC-2021-CD-06)
        99. educational-and-training-services-10043
        100. One Pilot Instructor and one Combination Instructor Flight Engineer and Instructor Load Master (W0107-21XC39/A)
        101. Assessment Consulting Service for the Assured Income for the Severely Handicapped (AISH) Program for the Province of Alberta
        102. financial-and-related-services-10038
        103. ERP CONSULTING SERVICES
        104. WSIB Consulting and Case Management Support
        105. health-and-social-services-10052
        106. Consulting Opportunity: Registrant Support Coach
        107. information-processing-and-related-telecommunications-services-10049
        108. Consulting Services for Learning Management System (LMS) / Curriculum Management System (CMS)
        109. professional-administrative-and-management-support-services-10040
        110. ERP CONSULTING SERVICES
        111. Competency Framework Consulting Services
        112. National accessArts Centre – Capital Campaign Consultant
        113. Enterprise Training and Development Consulting
        114. quality-control-testing-inspection-and-technical-representative-services-10053
        115. RQQ-2021-WFOW-516 : Consultant Services for Electrical Rehabilitation Work
        116. research-and-development-r-d-10036
        117. CON0021860 – Engineering Consultant Services for Functional Planning Study – Twinning and Freeway Conversion Upgrading – Highway 3:04 from Km 27.0 (west of TWP RD 70) to Highway 3:06 Km 43.2 (East of Highway
        118. special-studies-and-analysis-not-r-d-10047
        119. Professional Consulting Services
        120. undefined-10055
        121. ERP CONSULTING SERVICES
        122. National accessArts Centre – Capital Campaign Consultant