Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
8answers
728 views

How to separate data validation from my simple domain objects (POCOs)?

This question is language agnostic but I am a C# guy so I use the term POCO to mean an object that only preforms data storage, usually using getter and setter fields. I just reworked my Domain Model ...
3
votes
4answers
127 views

How is ENFORCED the separation of concerns in ASP.NET MVC?

I have been studying, playing with and working with ASP.NET MVC since Preview 1 in 2007 (december). I have been a fan of it since 2008 and I support it all the way. However I keep hearing and reading ...
2
votes
2answers
189 views

What is a good way to show the relationship between loosely coupled classes and interfaces?

I have introduced the SOLID principles to my team and they understand and are excited about using the principles. S - SRP - Single Responsibility Principle O - OCP - Open/Closed Principle L - LSP - ...
1
vote
2answers
109 views

What is the difference between Service-Oriented Computing and Service-Oriented Architecture?

I've found this: The Service-Oriented Computing (SOC) paradigm refers to the set of concepts, principles, and methods that represent computing in Service-Oriented Architecture (SOA) in ...
1
vote
1answer
100 views

Linux Toolchain for TI CCXXXX SoC Chips

I am trying to do a project using TI CC2510 wireless SoC chips, but I want to use Linux to load my C code onto the devices. I don't want to buy Windows just for my development purposes. Does anyone ...
1
vote
4answers
218 views

Dynamic height header in SEO optimized SOC (Source Ordered Content) layout using only CSS, no Javascript?

I want do do a layout that is search engine and speed-browser friendly with content first in source code. Usually this looks like this: <body> <div id="content" style="margin-top: ...
0
votes
1answer
84 views

SoC or Monolithic code?

Separation of concerns (SoC) suggests to break down your application into specific units of functionality in such a way that each unit only addresses the need of one concern. I have one practice ...
0
votes
1answer
207 views

Is it possible to disable ECHO when using socket for telnet?

Can I stop server from echo every command i send to it? This is part of my code: Socket s = ConnectSocket(server, port); if (s == null) return ("Connection failed"); int bytes = 0; string ...
0
votes
1answer
153 views

example extending LEON SOC with custom peripheral, AMBA AHB slave

Has anyone here extended LEON3 softcore with custom hw? I'm looking for basic example how to add custom peripheral to AMBA AHB bus More a tutorial, less RTFM :)