A Overview on a Basic Git Workflow for beginners and a short outlook to what some approved workflow techniques. Also some Todos included if you want to learn some Basic steps.
This document discusses Git and version control. It begins with an introduction to Git, explaining that Git is a version control system that allows developers to work collaboratively by storing code and tracking changes. It then covers why Git is needed, the basic Git commands, common Git rules and best practices, and Git flow for managing branches.
Migrating python.org to buildbot 9 and python 3Craig Rodrigues
?
Craig Rodrigues presented on migrating Python.org's build system from Buildbot 8 to Buildbot 9 and from Python 2 to Python 3. Buildbot is open source build automation software used by Python.org to build and test Python (CPython). The migration involved porting Buildbot and its dependencies like Twisted to be compatible with Python 3, porting Python.org's Buildbot configuration, and working with an ops team to complete the migration. This updated Python.org's infrastructure to a newer, actively supported version of Buildbot that enables new features and works with both Python 2 and Python 3.
The jedi path is not easy, here is an example of how I had to fight against the dark side and become a groovy developer.
POC based on spring-boot, built with gradle, aimed to demonstrate WSDL versioning approach.
- Go was created in 2007 by Rob Pike and Robert Griesemer at Google to address issues with other languages like slow compilation times and complexity. It was open sourced in 2009.
- Over the past 10 years, Go has grown significantly in adoption and popularity. Key milestones included reaching 1 million users in 2017 and the introduction of Go modules in 2018.
- The Go community has also expanded, growing 76% year-over-year and becoming more inclusive. There are now over 2000 contributors and 28 annual Go conferences held worldwide.
This document provides an introduction to using Git and version control. It explains the basic concepts and workflow of Git, including initializing and committing to a local repository, pushing changes to a remote repository, and using branches for features and releases. It also discusses how to manage Drupal configuration changes using features in Git.
How many times have you ever heard the term "Full-Stack developer"? In most of the cases it means that you have to be fluent with a backend language, html, javascript, maybe Android or iOS... What if I told you that you can be a Full-Stack developer using only Groovy? In this talk I'll present the technological stack of Polaromatic, the application with I won the Learning Spring Boot contest, and you'll learn that it's possible to write the whole stack with Groovy: Backend, Javascript, HTML, Android, test, build tool,... Isn't that amazing?
The source code is available at https://github.com/lmivan/contest
This document provides an overview of Google Code-in (GCI) and resources on GitHub. It discusses how GitHub can be used for more than just software, including sharing data, writing, translations, and open company initiatives. It also summarizes GCI tips like choosing a project in advance, getting familiar with tools and communication practices, and practicing communicating without overly formal language. Finally, it introduces the loklak social media harvester project and some example tasks for GCI Challenge 2.
componentDidCatch and Error Boundaries in React v16+Rohan Nair
?
This document discusses componentDidCatch and error boundaries in React v16. It provides an introduction to the speaker and their background in React. The speaker then discusses React 16's new reconciliation algorithm and the addition of componentDidCatch for error handling. They provide further reading resources and announcements about job opportunities at OICR for React and backend developers.
This is event is all about GitHub & Hactoberfest. We talked about both of these from a beginner's perspective. One of very proficient speaker Arslan Khattak was onboard with us, having full expertise in JavaScript, PWA & GitHub. Recently announced as 3rd GitHub Campus Expert for Pakistan.
Students from different universities all over Pakistan learned how to participate in Hacktoberfest 2020.
This document provides an introduction to GitHub, including what it is, why it is used, and its key features. GitHub is a file storage service for developers to save source code and files. It is based on the version control system Git and allows users to collaborate on projects. Popular features of GitHub include Wikis, Gists for code snippets, GitHub Pages for hosting websites, and extensions that enhance the user experience. The document also discusses other similar services like BitBucket and GitLab, as well as version control systems like Mercurial and Subversion.
This document outlines a presentation on creating APIs from design to security. It discusses 10 key topics: 1) API design, 2) REST principles, 3) documentation, 4) versioning, 5) domain-driven design, 6) clean architecture, 7) databases, 8) CQRS pattern, 9) pagination, and 10) security. For each topic, it provides an overview and highlights important considerations like API contracts, REST maturity levels, Swagger/OpenAPI documentation, versioning techniques, bounded contexts, layered architectures, SQL vs NoSQL databases, CQRS responsibilities, and authentication/authorization standards.
A lecture I gave at the Holon Institute of Technology, at the end of Advanced Programming course (third year) - 13/6/2017.
Download for higher quality slides.
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)Pedro Moreira da Silva
?
Aimed at students of Universidade do Minho, in Portugal, this talk focused on answering the following questions:
? What's GitLab and how did it came to be?
? What's our tech stack?
? How does it enhance tech education around the world?
? What are the advantages of GitLab for students?
GitLab is a product that covers the entire software development lifecycle. We gave a demo and showed how easy is it for students to start using the tools, workflow, and best practices that they'll be using at their future job.
Event: SEIUM 2018 (https://www.facebook.com/events/276872629501903/)
Date: February 6, 2018
Location: Universidade do Minho, Braga, Portugal
Thanks to Filipa Lacerda, Andr└ Lu┴s, and Job van der Voort
This document summarizes a 30-minute workshop on Git version control system (VCS). It discusses the history and evolution of version control systems leading up to Git. Key points about Git are presented, including that it was created by Linus Torvalds to manage kernel patches and has over 9 million users on GitHub. The workshop then demonstrates basic Git commands and workflows for collaboration using features, Gitflow and forking models.
This document is a GIT tutorial that provides an overview of GIT's history and basics, usage workflows, setup and configuration, common commands, best practices, and additional learning resources. It describes how GIT is fast, distributed, secure, intuitive, open-source software used by many developers and projects. It also outlines key commands like init, add, commit, branch, merge, and log, and recommends configuring user information and aliasing commands for easier use. Tips are provided such as committing often with clear messages and asking for help when needed.
Introduction to GraphQL with ruby on Web tech topic 2016/12/08.
Learn about GraphQL with Ruby, how to use it, how to build it, and what you need to be careful (best practice).
Demo repo: https://github.com/masolin/graphql-demo-example
HTTP / 1, HTTP / 2 and HTTP / 3: Past, present and the future of APIsRoan Brasil Monteiro
?
The document provides an overview of the history and evolution of HTTP protocols, from versions 0.9 to 3. It discusses key aspects of HTTP/1.1 including resources, client-server architecture, status codes, and REST. HTTP/2 improvements like multiplexing and binary format are covered. Emerging technologies like GRPC, RSocket, and HTTP/3 which uses QUIC are also summarized. The future of application programming interfaces and network communication is moving towards lower latency protocols built on top of HTTP like HTTP/3 that leverage UDP.
This document discusses using Git hooks for deployment to staging and production environments. It provides examples of a simple scenario using a post-update hook to automatically deploy code on push to a single production server. It also outlines a more advanced setup using Git hooks to deploy to staging and production environments with different processes, including emails on staging deploys and manual gem updates for production.
The document discusses the importance of code analysis and style guidelines for maintaining consistent and readable code. It provides examples of inconsistencies that can arise without standards and recommends using tools like plone.recipe.codeanalysis to enforce guidelines. Style guides help reduce cognitive load on developers by standardizing formatting and structures.
This document discusses using Git hooks to automate tasks during the Git workflow. It provides examples of using pre-commit hooks to check for debugging code and validate commit messages include ticket numbers. prepare-commit-msg hooks can template commit messages with default text like ticket references. post-commit hooks may open a browser to log work time against a referenced ticket after a commit. Server-side hooks on push can trigger tasks like running tests. Overall the document explores leveraging Git hooks for tasks like validation, templating, integration and to enforce best practices when committing code changes.
Golang training pre-session: portfolio
Sharing our work and projects written in go.
Ayoub Bousselmi (github.com/abousselmi)
Sofiane Imadali (github.com/sofianinho)
Git is a version control system created by Linus Torvalds that allows developers to track changes to code. GitHub is a free online repository that hosts Git repositories and allows developers to share code and collaborate on projects remotely. GitHub also allows developers to showcase their work and share their code publicly, potentially helping with job applications by including a GitHub URL. Git uses snapshots of files, adding, committing, and pushing changes to track a project's evolution over time through simple commands like init, add, commit, push, clone, and branch.
The document introduces Git, an open source distributed version control system. It discusses how Git allows doing most operations locally, including committing changes, viewing history, and switching branches. It outlines some benefits of version control like tracking changes, collaboration and reverting mistakes. Finally it provides examples of basic Git commands and workflows for setting up and collaborating on projects.
How many times have you ever heard the term "Full-Stack developer"? In most of the cases it means that you have to be fluent with a backend language, html, javascript, maybe Android or iOS... What if I told you that you can be a Full-Stack developer using only Groovy? In this talk I'll present the technological stack of Polaromatic, the application with I won the Learning Spring Boot contest, and you'll learn that it's possible to write the whole stack with Groovy: Backend, Javascript, HTML, Android, test, build tool,... Isn't that amazing?
The source code is available at https://github.com/lmivan/contest
This document provides an overview of Google Code-in (GCI) and resources on GitHub. It discusses how GitHub can be used for more than just software, including sharing data, writing, translations, and open company initiatives. It also summarizes GCI tips like choosing a project in advance, getting familiar with tools and communication practices, and practicing communicating without overly formal language. Finally, it introduces the loklak social media harvester project and some example tasks for GCI Challenge 2.
componentDidCatch and Error Boundaries in React v16+Rohan Nair
?
This document discusses componentDidCatch and error boundaries in React v16. It provides an introduction to the speaker and their background in React. The speaker then discusses React 16's new reconciliation algorithm and the addition of componentDidCatch for error handling. They provide further reading resources and announcements about job opportunities at OICR for React and backend developers.
This is event is all about GitHub & Hactoberfest. We talked about both of these from a beginner's perspective. One of very proficient speaker Arslan Khattak was onboard with us, having full expertise in JavaScript, PWA & GitHub. Recently announced as 3rd GitHub Campus Expert for Pakistan.
Students from different universities all over Pakistan learned how to participate in Hacktoberfest 2020.
This document provides an introduction to GitHub, including what it is, why it is used, and its key features. GitHub is a file storage service for developers to save source code and files. It is based on the version control system Git and allows users to collaborate on projects. Popular features of GitHub include Wikis, Gists for code snippets, GitHub Pages for hosting websites, and extensions that enhance the user experience. The document also discusses other similar services like BitBucket and GitLab, as well as version control systems like Mercurial and Subversion.
This document outlines a presentation on creating APIs from design to security. It discusses 10 key topics: 1) API design, 2) REST principles, 3) documentation, 4) versioning, 5) domain-driven design, 6) clean architecture, 7) databases, 8) CQRS pattern, 9) pagination, and 10) security. For each topic, it provides an overview and highlights important considerations like API contracts, REST maturity levels, Swagger/OpenAPI documentation, versioning techniques, bounded contexts, layered architectures, SQL vs NoSQL databases, CQRS responsibilities, and authentication/authorization standards.
A lecture I gave at the Holon Institute of Technology, at the end of Advanced Programming course (third year) - 13/6/2017.
Download for higher quality slides.
GitLab: One Tool for Software Development (2018-02-06 @ SEIUM, Braga, Portugal)Pedro Moreira da Silva
?
Aimed at students of Universidade do Minho, in Portugal, this talk focused on answering the following questions:
? What's GitLab and how did it came to be?
? What's our tech stack?
? How does it enhance tech education around the world?
? What are the advantages of GitLab for students?
GitLab is a product that covers the entire software development lifecycle. We gave a demo and showed how easy is it for students to start using the tools, workflow, and best practices that they'll be using at their future job.
Event: SEIUM 2018 (https://www.facebook.com/events/276872629501903/)
Date: February 6, 2018
Location: Universidade do Minho, Braga, Portugal
Thanks to Filipa Lacerda, Andr└ Lu┴s, and Job van der Voort
This document summarizes a 30-minute workshop on Git version control system (VCS). It discusses the history and evolution of version control systems leading up to Git. Key points about Git are presented, including that it was created by Linus Torvalds to manage kernel patches and has over 9 million users on GitHub. The workshop then demonstrates basic Git commands and workflows for collaboration using features, Gitflow and forking models.
This document is a GIT tutorial that provides an overview of GIT's history and basics, usage workflows, setup and configuration, common commands, best practices, and additional learning resources. It describes how GIT is fast, distributed, secure, intuitive, open-source software used by many developers and projects. It also outlines key commands like init, add, commit, branch, merge, and log, and recommends configuring user information and aliasing commands for easier use. Tips are provided such as committing often with clear messages and asking for help when needed.
Introduction to GraphQL with ruby on Web tech topic 2016/12/08.
Learn about GraphQL with Ruby, how to use it, how to build it, and what you need to be careful (best practice).
Demo repo: https://github.com/masolin/graphql-demo-example
HTTP / 1, HTTP / 2 and HTTP / 3: Past, present and the future of APIsRoan Brasil Monteiro
?
The document provides an overview of the history and evolution of HTTP protocols, from versions 0.9 to 3. It discusses key aspects of HTTP/1.1 including resources, client-server architecture, status codes, and REST. HTTP/2 improvements like multiplexing and binary format are covered. Emerging technologies like GRPC, RSocket, and HTTP/3 which uses QUIC are also summarized. The future of application programming interfaces and network communication is moving towards lower latency protocols built on top of HTTP like HTTP/3 that leverage UDP.
This document discusses using Git hooks for deployment to staging and production environments. It provides examples of a simple scenario using a post-update hook to automatically deploy code on push to a single production server. It also outlines a more advanced setup using Git hooks to deploy to staging and production environments with different processes, including emails on staging deploys and manual gem updates for production.
The document discusses the importance of code analysis and style guidelines for maintaining consistent and readable code. It provides examples of inconsistencies that can arise without standards and recommends using tools like plone.recipe.codeanalysis to enforce guidelines. Style guides help reduce cognitive load on developers by standardizing formatting and structures.
This document discusses using Git hooks to automate tasks during the Git workflow. It provides examples of using pre-commit hooks to check for debugging code and validate commit messages include ticket numbers. prepare-commit-msg hooks can template commit messages with default text like ticket references. post-commit hooks may open a browser to log work time against a referenced ticket after a commit. Server-side hooks on push can trigger tasks like running tests. Overall the document explores leveraging Git hooks for tasks like validation, templating, integration and to enforce best practices when committing code changes.
Golang training pre-session: portfolio
Sharing our work and projects written in go.
Ayoub Bousselmi (github.com/abousselmi)
Sofiane Imadali (github.com/sofianinho)
Git is a version control system created by Linus Torvalds that allows developers to track changes to code. GitHub is a free online repository that hosts Git repositories and allows developers to share code and collaborate on projects remotely. GitHub also allows developers to showcase their work and share their code publicly, potentially helping with job applications by including a GitHub URL. Git uses snapshots of files, adding, committing, and pushing changes to track a project's evolution over time through simple commands like init, add, commit, push, clone, and branch.
The document introduces Git, an open source distributed version control system. It discusses how Git allows doing most operations locally, including committing changes, viewing history, and switching branches. It outlines some benefits of version control like tracking changes, collaboration and reverting mistakes. Finally it provides examples of basic Git commands and workflows for setting up and collaborating on projects.
The document provides instructions on how to use Git and GitHub for version control and collaboration. It begins with an example scenario that illustrates issues with sharing code between developers without proper version control. It then introduces Git as a version control system that allows tracking changes to code through branches and commits. The document walks through setting up GitHub accounts and repositories, making commits locally and pushing them to a remote repository, and collaborating through pull requests. It also demonstrates common Git commands like cloning, branching, adding/committing, and pushing.
Open up your platform with Open Source and GitHubScott Graham
?
The document provides information about open sourcing projects and using GitHub. It discusses the benefits of open sourcing including increased adoption, feedback, and community. It then outlines the steps to open source a project including picking something to open source, deciding where to host it (e.g. GitHub), setting up a GitHub repository, using Git concepts like branches, structuring the project, and cleaning up and pushing the code. The document concludes with recommendations like using private and public repositories, taking advantage of GitHub tools, and considering package managers.
Git and GitHub are tools that software engineers use to collaborate on code and track changes over time. While primarily for software development, GitHub can also be used as a project management tool for any team. Key terms used in GitHub include repositories (folders for projects), branches (versions of code), commits (changes to code), and pull requests (requests to merge changes). As a non-technical professional, understanding these basic GitHub concepts and being able to engage teams there will help facilitate communication and progress on shared work. The document recommends following specific repositories at the company to stay informed on relevant projects.
The Information Technology have led us into an era where the production, sharing and use of information are now part of everyday life and of which we are often unaware actors almost: it is now almost inevitable not leave a digital trail of many of the actions we do every day; for example, by digital content such as photos, videos, blog posts and everything that revolves around the social networks (Facebook and Twitter in particular). Added to this is that with the "internet of things", we see an increase in devices such as watches, bracelets, thermostats and many other items that are able to connect to the network and therefore generate large data streams. This explosion of data justifies the birth, in the world of the term Big Data: it indicates the data produced in large quantities, with remarkable speed and in different formats, which requires processing technologies and resources that go far beyond the conventional systems management and storage of data. It is immediately clear that, 1) models of data storage based on the relational model, and 2) processing systems based on stored procedures and computations on grids are not applicable in these contexts. As regards the point 1, the RDBMS, widely used for a great variety of applications, have some problems when the amount of data grows beyond certain limits. The scalability and cost of implementation are only a part of the disadvantages: very often, in fact, when there is opposite to the management of big data, also the variability, or the lack of a fixed structure, represents a significant problem. This has given a boost to the development of the NoSQL database. The website NoSQL Databases defines NoSQL databases such as "Next Generation Databases mostly addressing some of the points: being non-relational, distributed, open source and horizontally scalable." These databases are: distributed, open source, scalable horizontally, without a predetermined pattern (key-value, column-oriented, document-based and graph-based), easily replicable, devoid of the ACID and can handle large amounts of data. These databases are integrated or integrated with processing tools based on the MapReduce paradigm proposed by Google in 2009. MapReduce with the open source Hadoop framework represent the new model for distributed processing of large amounts of data that goes to supplant techniques based on stored procedures and computational grids (step 2). The relational model taught courses in basic database design, has many limitations compared to the demands posed by new applications based on Big Data and NoSQL databases that use to store data and MapReduce to process large amounts of data.
Course Website http://pbdmng.datatoknowledge.it/
Contact me to download the slides
Git is a free and open source distributed version control system that allows creating local repositories based on remote repositories. GitHub is a web-based hosting service for Git repositories that allows collaboration on open source projects. Visual Studio Code is an advanced code editor that integrates with Git and GitHub, allowing developers to work with source code and repositories locally or on remote servers.
We will learn how to create repository, pushing, cloning and creating branches. Additionally we will talk about various workflows that are used by teams while collaborating in a project.
Gerrit is a code review system that tightly integrates with Git. It provides a web-based user interface and API for reviewing changes, managing access control, and integrating with other tools like Jenkins. Key features include fast and easy code reviews, flexible integration options, and tools for managing projects, users, and access control. Gerrit supports code review workflows and allows configuring commit policies and change submission actions.
Git is a version control system that tracks changes to files and allows collaboration. It keeps track of the entire history of changes to a project. The basic terminology includes repository, which stores project changes in folders; commits, which record changes with unique IDs; and branches, which allow parallel development. GitHub is a remote repository hosting service that allows pushing local repositories to the cloud. The document outlines how to initialize a local Git repository, add and commit files, connect the repository to a remote GitHub one, and push changes to share them.
Server Development Workflow For PicCollageLin Jen-Shin
?
This document outlines the workflow for server development at PicCollage, including the software, services, and tools needed. The workflow involves cloning the Git repository, setting up the database, working on features in branches, submitting pull requests, merging and pushing code, and deploying to production. Utilities like checking logs and migrating databases are also mentioned.
This document discusses how to use GitHub to organize projects. It explains that GitHub is a distributed version control system and hosting service that allows users to track changes, collaborate on projects, and manage workflows. The document provides an overview of basic Git commands like add, commit, push, and pull and demonstrates uploading a local folder to a GitHub repository. It recommends GitHub as a way to solve common development pain points like organization and project management.
The document discusses why Git is a useful version control system. It notes that Git is fast, secure, distributed, and cross-platform. It works well for both large and small teams. The document outlines some common branch naming conventions like using "master" for production, "release/*" for releases, and "feature/*" for new features. It recommends starting with best practices and choosing whatever source control works for your team.
Presentation made by @remeniuk at the 7th meetup of Scala Enthusiasts Belarus (scala.by).
Screencast (video): http://video.yandex.by/users/vasil-remeniuk/view/1/
Other materials from that meetup: http://scala.by/meetups/2011/12/10/7.html
This document provides an overview of using Github to develop software stacks. It discusses using Git for version control, collaborating on code through Github, and integrating additional tools like Slack for communication, ZenHub for project management, and Travis CI for continuous integration. Git concepts are explained like versioning source code, combining work from multiple coders, and reverting mistakes. Basic Git commands are provided for local repositories, syncing with Github, and using branches. The benefits of Github and some limitations that other tools address are also outlined.
Beginner Workshop for Student Developers - Tratech-presentation.pdfGDSCKNUST
?
Version control allows tracking changes to code over time and collaboration between developers. Git is a version control tool while GitHub is a platform that integrates with Git. This document discusses setting up Git locally and linking a Git repository to a GitHub account for collaboration and backup of code. Key steps include installing Git, configuring user settings, initializing a Git repository for a project, adding and committing files, and pushing the local repository to GitHub to sync changes and make the code accessible to others.
This is a presentation give to the Vancouver Drupal users group about moving to GIT as a version control system for a small development team. The presentation details the workflow we settled on, and the git flow method for branch management. You can see a video of the presentation here - http://www.ustream.tv/recorded/13544036
Git is a version control system. The document discusses using Git to manage branches for features, releases, and hotfixes. It also summarizes containerization with Docker, including building Docker images from Dockerfiles, running containers, and using Docker Compose to run multi-container applications. Key commands covered include git checkout, git add, git commit, git push, docker build, docker run, and docker-compose up.
S. Y. G. N. M. CHILD HEALTH NURSING Leukemia in Children.pptxsachin7989
?
Leukemia is a type of cancer that affects the blood and bone marrow. It occurs when abnormal white blood cells accumulate in the bone marrow and interfere with the production of normal blood cells.
Types of Leukemia
1. Acute Lymphoblastic Leukemia (ALL): A type of leukemia that affects the lymphoid cells.
2. Acute Myeloid Leukemia (AML): A type of leukemia that affects the myeloid cells.
3. Chronic Lymphocytic Leukemia (CLL): A type of leukemia that affects the lymphoid cells and progresses slowly.
4. Chronic Myeloid Leukemia (CML): A type of leukemia that affects the myeloid cells and progresses slowly.
Symptoms of Leukemia
1. Fatigue
2. Weight loss
3. Pale skin
4. Bruising or bleeding easily
5. Bone or joint pain
6. Swollen lymph nodes
7. Loss of appetite
Treatment of Leukemia
1. Chemotherapy
2. Radiation therapy
3. Bone marrow transplant
4. Targeted therapy
Thalassemia
Thalassemia is a genetic disorder that affects the production of hemoglobin, a protein in red blood cells that carries oxygen to the body's tissues.
Types of Thalassemia
1. Alpha-Thalassemia: A type of thalassemia that affects the production of alpha-globin chains.
2. Beta-Thalassemia: A type of thalassemia that affects the production of beta-globin chains.
Symptoms of Thalassemia
1. Anemia
2. Fatigue
3. Pale skin
4. Shortness of breath
5. Enlarged spleen
6. Bone deformities
Treatment of Thalassemia
1. Blood transfusions
2. Iron chelation therapy
3. Bone marrow transplant
4. Gene therapy
2025 Women Leaders Program - Award WinningSonia McDonald
?
Empower & Lead: Women in Leadership
Dive into our award-winning and dynamic programs designed to boost your confidence and equip you with bold tools and strategies. Unleash your unique leadership potential and lead with flair!
Elevate Your Game with the Women Leaders Program
Step up to the challenge with Sonia McDonald¨s dynamic leadership program, perfectly blending neuroscience, personal, and professional development. With over three decades of expertise in leadership and HR, Sonia has designed a program that adapts to your busy lifestyle, offering both virtual and in-house options. Explore ten robust modules equipped with an all-encompassing toolkit, infused with cutting-edge neuroscience to enhance your understanding of leadership dynamics. Choose from engaging monthly group coaching or personalized 1:1 sessions with Sonia.
If you¨re ready for a transformative journey focused on growth, neuroscience-backed courage, leadership, and freedom, this is your call to action. Join us and start leading like never before!
Transform Your Leadership.
Transform Your Life.
Women are underrepresented in key decision-making roles across almost all industries in the Australian workforce, women comprise only:
19.4% of CEOs
32.5% of key management positions
33% of board members
18% of board chairs.
IT¨S TIME FOR CHANGE. JOIN THE PROGRAM TODAY.
Maximise Your Leadership Skills
Achieve the best results for yourself, your team, and for the business.
Develop & Grow Your Courage
Build courageous habits to live the life you choose.
Enhance Your Career Progression
Step in, stand up, lead and get your seat at the Table.
https://soniamcdonald.com.au/women-leaders-program/
Design approaches and ethical challenges in Artificial Intelligence tools for...Yannis
?
The recent technology of Generative Artificial Intelligence (GenAI) has undeniable advantages, especially with regard to improving the efficiency of all stakeholders in the education process.
At the same time, almost all responsible international organisations and experts in the field of education and educational technology point out a multitude of general ethical problems that need to be addressed. Many of these problems have already arisen in previous models of artificial intelligence or even in systems based on learning data, and several are appearing for the first time.
In this short contribution, we will briefly review some dimensions of ethical problems, both (a) the general ones related to trust, transparency, privacy, personal data security, accountability, environmental responsibility, bias, power imbalance, etc., and (b) the more directly related to teaching, learning, and education, such as students' critical thinking, the social role of education, the development of teachers' professional competences, etc.
In addition, the categorizations of possible service allocation to humans and AI tools, the human-centered approach to designing AI tools and learning data, as well as the more general design of ethics-aware applications and activities will be briefly presented. Finally, some short illustrative examples will be presented to set the basis for the debate in relation to ethical and other dilemmas.
This slides provide you the information regarding the sexually transmitted diseases as well as about the urinary tract infection. The presentation is based on the syllabus of Bachelor of Pharmacy semester 6 of subject name Pharmacology-III. The data is occupied from the high standard books and along with easy understanding of data.
Comparing RFQ Lines for the best price in Odoo 17Celine George
?
The Purchase module in Odoo 17 is a powerful tool designed to streamline the procurement process for businesses. It offers a wide range of features that help manage supplier relationships, track purchase orders, and ensure that procurement activities align with the company's needs.
Measles Outbreak!Southwestern US! This briefing reviews the current situation surrounding the measles outbreaks in Texas, New Mexico, Oklahoma, and Kansas.
The Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by the Yale School of Public Health faculty and graduate students in response to the 2010 Haiti Earthquake.
Each year, students enrolled in Environmental Health Science Course 581!Public Health Emergencies: Disaster Planning and Response produce the VMOC Briefs. These briefs compile diverse information sources!including status reports, maps, news articles, and web content!into a single, easily digestible document that can be widely shared and used interactively.
Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The ^unlocked" format enables other responders to share, copy, and adapt it seamlessly.
The students learn by doing, quickly discovering how and where to find critical?information and presenting?it in an easily understood manner.
Tollywood Quiz- 21st March 2025, Quiz Club NITWQuiz Club NITW
?
The most anticipated Tollywood Quiz, organised by the Quiz Club NITW, was held on March 21, 2025. The quiz set will take you on a nostalgic journey through iconic movies and their unforgettable songs and dialogues.
How to Configure Outgoing and Incoming mail servers in Odoo 18Celine George
?
Odoo 18 features a powerful email management system designed to streamline business communications directly within the platform. By setting up Outgoing Mail Servers, users can effortlessly send emails. Similarly, configuring Incoming Mail Servers enables Odoo to process incoming emails and generate records such as leads or helpdesk tickets.
Precise guide for GNM/RGNM, B.Sc. Nursing/Basic B.Sc. Nursing & M.Sc Nursing students ... Regarding pain and its management. Highly recommended for Third Semester B.Sc Nursing Students .
Also this document discusses pain management through both non-pharmacological and pharmacological approaches. It covers typical areas of referred pain, pain assessment techniques, non-drug therapies like recreation and different approaches for using analgesic medications.
We need to layer the technology onto existing workflows
Follow the teachers who inspire you because that instills passion Curiosity & Lifelong Learning.
You can benefit from generative AI even when its intelligence is worse-because of the potential for cost and time savings in low-cost-of-error environments.
Bot tutors are already yielding effective results on learning and mastery.
GenAI may increase the digital divide- its gains may accrue disproportionately to those who already have domain expertise.
GenAI can be used for Coding
Complex structures
Make the content
Manage the content
Solutions to complex numerical problems
Lesson plan
Assignment
Quiz
Question bank
Report & summary of content
Creating videos
Title of abstract & summaries and much more like...
Improving Grant Writing
Learning by Teaching Chatbots
GenAI as peer Learner
Data Analysis for Non-Coders
Student Course Preparation
To reduce Plagiarism
Legal Problems for classes
Understanding Student Learning in Real Time
Simulate a poor
Faculty co-pilot chatbot
Generate fresh Assessments
Data Analysis Partner
Summarize student questions in real-time
Assess depth of students' understanding
The skills to foster are Listening
Communicating
Approaching the problem & solving
Making Real Time Decisions
Logic
Refining Memories
Learning Cultures & Syntax (Foreign Language)
Chatbots & Agentic AI can never so what a professor can do.
The need of the hour is to teach Creativity
Emotions
Judgement
Psychology
Communication
Human Emotions
´´´´Through various content!
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesCeline George
?
Odoo offers several ways to apply the discounts on sales orders, providing flexibility for various scenarios. The discounts applied on the sales order lines are global discounts, fixed discounts, and discounts on all order lines. In this slide, we will learn how to grant discounts on the sale order line in Odoo 18.
URLS and routing in odoo 18 - Odoo 際際滷sCeline George
?
In Odoo 18, URLs and routing are key components of its web framework, used to handle HTTP requests. Understanding them is essential for customizing Odoo¨s behavior, creating new pages, and integrating with external systems.
10. Write some Code -> Save it
Change some Code
Delete some Code -> Save it
Oops I need some old code -> Revert it
Do new Stuff -> Save it
Eat some Pizza
13. I'm an egotistical bastard, and I name all my
projects after myself. First Linux, now git.
CLinus Torwalds
14. I'm an egotistical bastard, and I name all my
projects after myself. First Linux, now git.
CLinus Torwalds
an unpleasant or contemptible person.
git
15. What to know about Git
light, easy, robust
branches are gooood
collaboration is awsm
world leader in Software Versioning
Platforms like GitHub, BitBucket, Gitlab, ´
39. Phase 1
Create a Github Account
Download the Github App
Create a new Repository Locally
Add a Project and Push it to Github
Make some changes and Push again
40. Phase 2
Create a Branch
Make Changes ( 2 -3 commits ) to the Branch and
Publish it
Merge the Branch into Master
41. Phase 3
Invite another User to your Project
Checkout the other Project
Make Similar changes to the same file and let the owner
push second
Solve the Merge Conflict
Push and be happy