Showing posts with label prototype. Show all posts
Showing posts with label prototype. Show all posts

Sunday, April 18, 2021

Adobe XD - UI, UX , Product- Wireframe, Mockup, Prototype






Product Designer >  UX  Designer > UI  Designer

UI Designer - means Designing wireframes, UI (Fonts, Icons, Color) and handing it to developers

UX Designer - UX means Designing wireframes, UI (Fonts, Icons, Color) and Navigation Pathways and Actually Testing them from End user pov

Product Designer - Highlevel View, Budgets, Timelines, Client Approval + UI/UX role



Wireframes, Mockup, Prototype
Wireframes : 1 Color, 1 Font Size, Monochromatic - Usually Black and White - Skeleton Design - Sketches etc [https://www.wireframe.cc]
Mockup : All Screens with Higher Fidelity - Real colors, Real Fonts, Icons , Images etc. but no functionality, You basically cannot click anywhere
Prototype : All Things in a mockup + Functionality (Clickable Links navigating between screens)

Fidelity
Fidelity means level of detail - Color, Fonts, Icon, Logo, Images, Sizes in design

https://www.w3schools.com/tags/tag_canvas.asp
The <canvas> tag is used to draw graphics, on the fly, via scripting (usually JavaScript).


Thursday, January 28, 2021

Bean Create Dynamically in Spring with Params ?

package org.springframework.beans.factory.config;
public interface BeanDefinition extends AttributeAccessor, BeanMetadataElement {
	String SCOPE_SINGLETON = ConfigurableBeanFactory.SCOPE_SINGLETON;
	String SCOPE_PROTOTYPE = ConfigurableBeanFactory.SCOPE_PROTOTYPE;
}

Beans can be "prototype" - Bean generated afresh at each call
or It can be "singleton" - One Bean for all Calls




How to pass parameters dynamically to Spring beans @Bean
@Configuration
public class ApplicationConfiguration {
  @Bean
  @Scope("prototype") //As we want to create several beans with different args, right?


Azure - Pipeline - Add Approver for Stage

https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass