The document repeats the same line "Jyaasa : We Design, Build and Develop Products" 20 times without providing any other context or information. It does not have a clear topic or message that can be summarized in 3 sentences or less.
These are a sample of some of my best photographs and business card designs. For more about my work, please see my web site: www.cascadecreativeproductions.com
By Maarjte offers customized fashion services including color and body shape analysis, styling, wardrobe assessment, alterations, and designing and creating one-off garments. Some key services include color analysis to find shades that enhance one's natural beauty, styling to develop an individual style not based on trends, and designing custom wedding dresses, ball gowns, and business suits. The full couture experience integrates various services to design and produce a custom garment.
Incident management in Jira focuses on short-term solutions to unplanned interruptions in systems or services. The Jira Service Desk template includes an incident workflow that guides users to log, diagnose, and resolve incidents. This process involves service members reporting issues, the service desk logging and categorizing incidents, prioritizing response, escalating if needed, resolving the underlying problem, verifying the fix, and closing the incident. Postmortem reports and incident response reports provide documentation and analysis after significant incidents.
Extreme programming, founded by Kent Beck one of the original signatories of Agile Manifesto is a lightweight agile methodology of agile software development and engineering .
Microservices is an architectural style that structures an application as a collection of
loosely coupled services, which implement business capabilities.
The document discusses the facade pattern in Ruby on Rails applications. It describes the facade pattern as providing a unified interface to isolate complexity and hide subsystem interfaces. It then gives an example of using a facade pattern to simplify a chat room controller in Rails that was preparing a lot of data. A ChatRoomsFacade class is created that initializes the necessary data, allowing the controller to be simplified by just initializing the facade. The facade pattern hides complexity and provides a single interface, simplifying controllers in Rails especially for larger projects.
a type of digital currency in which encryption techniques are used to regulate the generation of units of currency and verify the transfer of funds, operating independently of a central bank.
Tor is free software that enables anonymous communication. It conceals a user's location and usage through a network of over 7,000 relays. Tor implements onion routing, which encrypts data including destination IP addresses and passes encrypted data through multiple relays, each decrypting a single layer to reveal only the next relay. This allows anonymously browsing the internet, protecting privacy and security such as from government surveillance disclosed by Edward Snowden.
What is collective code ownership in agile teams? what are its advantages? .What are the common pitfalls of it ?.
What would be the ways to implement into software development teams. If you would like to talk more on the topic feel free to email kapil@jyaasa.com
This document discusses using Pusher for push notifications. Pusher allows sending push notifications from a backend server to user interfaces like mobile and desktop apps. It avoids problems with polling by using websockets for real-time notifications. The document explains how to set up Pusher by creating an account and app, and integrating it into server-side code using various languages like Ruby, and client-side code using JavaScript or React Native.
The document outlines the 5 key stages in the design thinking process: empathize, define, ideate, prototype, and test. It describes each stage in detail. Empathize involves understanding users through observation and interviews. Define brings clarity to the problem based on user needs. Ideate focuses on generating many creative solutions through brainstorming. Prototype creates artifacts to test possibilities. Test gets feedback from users to refine solutions and further learn about the user. The overall process is presented as human-centered, iterative, and solution-focused.
This document discusses user stories, which are short descriptions of a desired new feature written from the perspective of users or customers. User stories should keep it simple and focus on who wants the feature, what they want to accomplish, and why. They are important because they provide precise yet spare information that is useful for planning and understandable to both technical and non-technical people.
A Design sprint is a time-constrained, five-phase process that uses design thinking to reduce the risk when bringing a new product, service or a feature to the market.
A data flow diagram (DFD) illustrates how data is processed by a system in terms of inputs and outputs. As its name indicates its focus is on the flow of information, where data comes from, where it goes and how it gets stored.
Objectives and Key Results (OKR) is a popular technique for setting and communicating goals and results in organizations. Its main goal is to connect company, team and personal objectives to measurable results, making people move together in right direction.
The document discusses using Vue.js to reduce complexity in web development. It introduces some key concepts in Vue.js like data binding with v-model, conditional rendering with v-if, listing data with v-for, handling events with v-on, and conditional rendering with v-if and v-show. It also provides examples of how to install Vue.js via npm, bower or CDN, and basic usage with el, data, methods. Towards the end, it mentions running a demo customer management app using Vue and Rails.
The document discusses Active Record attributes in Rails 5. It explains that Active Record's detected attribute types can be overridden with the attribute method. The attribute method can also define a default value and specify if an attribute is an array or range. Attributes do not require a matching database column. Examples demonstrate overriding an attribute type from decimal to integer, setting default values, and defining array attributes.
The document discusses various types of associations in Rails including belongs_to, has_one, has_many, has_many :through, has_one :through, has_and_belongs_to_many, and polymorphic associations. It provides examples of how to declare each association type in the model and how to set up the corresponding database migrations. It also covers choosing between different association types and using self-joins for models that associate with themselves.
The document discusses visual hierarchy and layout patterns in web design. It describes the F-pattern and Z-pattern layouts. The F-pattern follows the shape of the letter F as users first scan horizontally across the top of the page from left to right. The Z-pattern aims to anticipate the user's needs by presenting key information like branding, calls-to-action, and structure up front. Both patterns aim to create a natural reading flow that guides users efficiently through content.
The command pattern is a behavioral design pattern in which an object is used to encapsulate all information needed to perform an action or trigger an event at a later time.
The template method pattern is a behavioral design pattern that defines the program skeleton of an algorithm in an operation, deferring some steps to subclasses.
As the name suggests, the chain of responsibility pattern creates a chain of receiver objects for a request. This pattern decouples sender and receiver of a request based on type of request. This pattern comes under behavioral patterns.
React is a UI library developed at Facebook to facilitate the creation of interactive, stateful & reusable UI components. It is used at Facebook in production, and Instagram.com is written entirely in React.
Design Pattern: Factory Pattern
In Factory pattern, we create object without exposing the creation logic to the client and refer to newly created object using a common interface.
Blog Article: http://jyaasa.com/blog/factory-design-pattern-in-ruby/
a type of digital currency in which encryption techniques are used to regulate the generation of units of currency and verify the transfer of funds, operating independently of a central bank.
Tor is free software that enables anonymous communication. It conceals a user's location and usage through a network of over 7,000 relays. Tor implements onion routing, which encrypts data including destination IP addresses and passes encrypted data through multiple relays, each decrypting a single layer to reveal only the next relay. This allows anonymously browsing the internet, protecting privacy and security such as from government surveillance disclosed by Edward Snowden.
What is collective code ownership in agile teams? what are its advantages? .What are the common pitfalls of it ?.
What would be the ways to implement into software development teams. If you would like to talk more on the topic feel free to email kapil@jyaasa.com
This document discusses using Pusher for push notifications. Pusher allows sending push notifications from a backend server to user interfaces like mobile and desktop apps. It avoids problems with polling by using websockets for real-time notifications. The document explains how to set up Pusher by creating an account and app, and integrating it into server-side code using various languages like Ruby, and client-side code using JavaScript or React Native.
The document outlines the 5 key stages in the design thinking process: empathize, define, ideate, prototype, and test. It describes each stage in detail. Empathize involves understanding users through observation and interviews. Define brings clarity to the problem based on user needs. Ideate focuses on generating many creative solutions through brainstorming. Prototype creates artifacts to test possibilities. Test gets feedback from users to refine solutions and further learn about the user. The overall process is presented as human-centered, iterative, and solution-focused.
This document discusses user stories, which are short descriptions of a desired new feature written from the perspective of users or customers. User stories should keep it simple and focus on who wants the feature, what they want to accomplish, and why. They are important because they provide precise yet spare information that is useful for planning and understandable to both technical and non-technical people.
A Design sprint is a time-constrained, five-phase process that uses design thinking to reduce the risk when bringing a new product, service or a feature to the market.
A data flow diagram (DFD) illustrates how data is processed by a system in terms of inputs and outputs. As its name indicates its focus is on the flow of information, where data comes from, where it goes and how it gets stored.
Objectives and Key Results (OKR) is a popular technique for setting and communicating goals and results in organizations. Its main goal is to connect company, team and personal objectives to measurable results, making people move together in right direction.
The document discusses using Vue.js to reduce complexity in web development. It introduces some key concepts in Vue.js like data binding with v-model, conditional rendering with v-if, listing data with v-for, handling events with v-on, and conditional rendering with v-if and v-show. It also provides examples of how to install Vue.js via npm, bower or CDN, and basic usage with el, data, methods. Towards the end, it mentions running a demo customer management app using Vue and Rails.
The document discusses Active Record attributes in Rails 5. It explains that Active Record's detected attribute types can be overridden with the attribute method. The attribute method can also define a default value and specify if an attribute is an array or range. Attributes do not require a matching database column. Examples demonstrate overriding an attribute type from decimal to integer, setting default values, and defining array attributes.
The document discusses various types of associations in Rails including belongs_to, has_one, has_many, has_many :through, has_one :through, has_and_belongs_to_many, and polymorphic associations. It provides examples of how to declare each association type in the model and how to set up the corresponding database migrations. It also covers choosing between different association types and using self-joins for models that associate with themselves.
The document discusses visual hierarchy and layout patterns in web design. It describes the F-pattern and Z-pattern layouts. The F-pattern follows the shape of the letter F as users first scan horizontally across the top of the page from left to right. The Z-pattern aims to anticipate the user's needs by presenting key information like branding, calls-to-action, and structure up front. Both patterns aim to create a natural reading flow that guides users efficiently through content.
The command pattern is a behavioral design pattern in which an object is used to encapsulate all information needed to perform an action or trigger an event at a later time.
The template method pattern is a behavioral design pattern that defines the program skeleton of an algorithm in an operation, deferring some steps to subclasses.
As the name suggests, the chain of responsibility pattern creates a chain of receiver objects for a request. This pattern decouples sender and receiver of a request based on type of request. This pattern comes under behavioral patterns.
React is a UI library developed at Facebook to facilitate the creation of interactive, stateful & reusable UI components. It is used at Facebook in production, and Instagram.com is written entirely in React.
Design Pattern: Factory Pattern
In Factory pattern, we create object without exposing the creation logic to the client and refer to newly created object using a common interface.
Blog Article: http://jyaasa.com/blog/factory-design-pattern-in-ruby/
Indian Soil Classification System in Geotechnical EngineeringRajani Vyawahare
Ìý
This PowerPoint presentation provides a comprehensive overview of the Indian Soil Classification System, widely used in geotechnical engineering for identifying and categorizing soils based on their properties. It covers essential aspects such as particle size distribution, sieve analysis, and Atterberg consistency limits, which play a crucial role in determining soil behavior for construction and foundation design. The presentation explains the classification of soil based on particle size, including gravel, sand, silt, and clay, and details the sieve analysis experiment used to determine grain size distribution. Additionally, it explores the Atterberg consistency limits, such as the liquid limit, plastic limit, and shrinkage limit, along with a plasticity chart to assess soil plasticity and its impact on engineering applications. Furthermore, it discusses the Indian Standard Soil Classification (IS 1498:1970) and its significance in construction, along with a comparison to the Unified Soil Classification System (USCS). With detailed explanations, graphs, charts, and practical applications, this presentation serves as a valuable resource for students, civil engineers, and researchers in the field of geotechnical engineering.
Optimization of Cumulative Energy, Exergy Consumption and Environmental Life ...J. Agricultural Machinery
Ìý
Optimal use of resources, including energy, is one of the most important principles in modern and sustainable agricultural systems. Exergy analysis and life cycle assessment were used to study the efficient use of inputs, energy consumption reduction, and various environmental effects in the corn production system in Lorestan province, Iran. The required data were collected from farmers in Lorestan province using random sampling. The Cobb-Douglas equation and data envelopment analysis were utilized for modeling and optimizing cumulative energy and exergy consumption (CEnC and CExC) and devising strategies to mitigate the environmental impacts of corn production. The Cobb-Douglas equation results revealed that electricity, diesel fuel, and N-fertilizer were the major contributors to CExC in the corn production system. According to the Data Envelopment Analysis (DEA) results, the average efficiency of all farms in terms of CExC was 94.7% in the CCR model and 97.8% in the BCC model. Furthermore, the results indicated that there was excessive consumption of inputs, particularly potassium and phosphate fertilizers. By adopting more suitable methods based on DEA of efficient farmers, it was possible to save 6.47, 10.42, 7.40, 13.32, 31.29, 3.25, and 6.78% in the exergy consumption of diesel fuel, electricity, machinery, chemical fertilizers, biocides, seeds, and irrigation, respectively.
Lecture -3 Cold water supply system.pptxrabiaatif2
Ìý
The presentation on Cold Water Supply explored the fundamental principles of water distribution in buildings. It covered sources of cold water, including municipal supply, wells, and rainwater harvesting. Key components such as storage tanks, pipes, valves, and pumps were discussed for efficient water delivery. Various distribution systems, including direct and indirect supply methods, were analyzed for residential and commercial applications. The presentation emphasized water quality, pressure regulation, and contamination prevention. Common issues like pipe corrosion, leaks, and pressure drops were addressed along with maintenance strategies. Diagrams and case studies illustrated system layouts and best practices for optimal performance.