-
Continue reading →: Technology Sales
Photo by fauxels Technology sales is the act of connecting customers with technology that can provide a solution to a specific problem or challenge1. Technology can include software, hardware, or services1. Technology salespeople identify consumer needs and show them how their products or services can meet them. They can sell…
-
Continue reading →: (Software Architect series) Communication in Microservices Architecture
Communication is one of the biggest challenges in Microservice architecture. However, we should try to reduce communication between the microservices. Because it has possibility of failure. It is better to have minimum number of communications between services. Nevertheless, dependencies between services is inevitable. That is why we should carefully determine…
-
Continue reading →: (Software Architect Series) Microservices Architecture
Microservices is an architecture that divides the big system become structured services that run separately and deployed independently. Those services communicate each other in a loosely couple relation. Each service can be in different server and has its own database. But in some cases, the services are located in the…
-
Continue reading →: (Java) Design Pattern part 2. Factory Pattern
Factory pattern is a part of creational pattern. In Factory Pattern, we do not create an object directly. But we determine type of the object in the factory class. This pattern implements interface in the base class where an object type is determine in factory class.
-
Continue reading →: (Java) Design Pattern part 1. What is design pattern?
What is design pattern? Design pattern is a general solutions for common case that happen in the programming world. But, we should adapt with with the actual condition. The Design pattern was initiated by Gang of Four (Erich Gamma, John Vlissides, Ralph Johnson, Richard Helm) in the book titled “Design Patterns: Elements of…
-
Continue reading →: Agile User Story & Task
What is user story in Agile? User story is a functionality requirement of a system that required by the user. A user story can be defined in two kind of sentences As a <User Role> I want <Functionality> so that <Business Value> In order to <Business value> as a <User…
-
Continue reading →: Agile Planning
How Agile plan the work? Agile works in iterations tp deliver user stories which already prioritized on the product backlog, based on the team capacity to decide how much scope they have to plan Point A Point defines how much a team can commit. A point usually refers to 8…
-
Continue reading →: Agile
Agile is a software development methodology which use short iteration process (about 1-4 weeks) to get frequent feedback for aligning business requirement changes. There are roles in Agile : Scrum Master Scrum master is the leader and facilitator who ensures/helps agile process can be implemented well. Functional Responsibilities : Lead…
-
Continue reading →: ASP.Net #if DEBUG always return true
Change project properties. In Build tab, change configuration into “Release” and uncheck “Define DEBUG constant”
-
ASP.net C# Reading Datetime value From Excel sheet
Published by
on
Continue reading →: ASP.net C# Reading Datetime value From Excel sheetTry this : string sDate = (xlRange.Cells[4, 3] as Excel.Range).Value2.ToString(); double date = double.Parse(sDate); var dateTime = DateTime.FromOADate(date).ToString(“MMMM dd, yyyy”); I hope it can help you 🙂
