Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

18
votes
2answers
16k views

html5 - canvas element - Multiple layers

Without any extension library, is it possible to have multiple layers in the same canvas element? So if I do a clearRect on the top layer, it will not erase the bottom one? Thanks.
18
votes
2answers
13k views

Cocos2d adding a background image to a layer?

I just finished reading some of the cocos2d documentation, and as far as I understand to add a background image to a layer you have to do something like: Sprite * bg = [Sprite ...
9
votes
8answers
622 views

Why is MVC so popular?

I was originally going to make this a longer question, but I feel like the shorter I make it, the better you'll understand what I mean. The MVC architectural pattern has 3 dependencies. The View ...
9
votes
9answers
352 views

What should I keep in mind in order to refactor huge code base?

I'm going to refactor certain parts in a huge code base (18000+ Java classes). Goal is to be able to extract lower layers as independent libraries to be reused in other projects that currently use ...
8
votes
1answer
412 views

Simulating an image floating effect using CoreMotion/DeviceMotion on the iPhone

I have a series of images within a ViewController. I am "floating" them by transforming their individual layers: img.layer.transform = CATransform3DMakeTranslation(0.0f, 0.0f, myZ); This gives the ...
6
votes
4answers
1k views

How to cover a 9-PATCH-PNG entirely?

I try to implement a hover effect (effect when button is pressed) through putting a semi transparent PNG file on top of the button background and the button icon. Unfortunatly the button background ...
5
votes
1answer
239 views

Should I pop after each binmode?

When using binmode, should I pop the layers from a possibly previous used binmode? #!/usr/bin/env perl use warnings; use 5.012; use autodie; open my $tty, '>:encoding(utf8)', '/dev/tty'; # ... ...
5
votes
2answers
347 views

How can I create a Layer on an Image?

How can I create a Layer on an Image, or Image on another Image? because it doesn't let me do that, only layer near the image.
5
votes
3answers
386 views

Neural Network Hidden Layers

Would someone be able to explain to me or point me to some resources of why (or situations where) more than one hidden layer would be necessary or useful in a neural network?
5
votes
4answers
5k views

C# Winform UI Componets Layer Order

C# | Winforms When we add any UI or container in winforms, the later added component comes over the earlier added components, we can say it is in a higher layer..how to change that layer order or ...
4
votes
2answers
571 views

how to darken a UIImageView

I need to darken a UIImageView when it gets touched, almost exactly like icons on the springboard (home screen). Should I be added UIView with a 0.5 alpha and black background. This seems clumsy. ...
4
votes
5answers
3k views

Presentation, Business and Data Layer

I just started programming in C# and was reading about dividing your application / website into the three different layers was the best practice but I am having a hard time understanding exactly how. ...
3
votes
2answers
141 views

java applet: is there a simple way to draw and erase in a two-layered 2D scene?

I have an applet which displays some data using circles and lines. As the data continually changes, the display is updated, which means that sometimes the circles and lines must be erased, so I just ...
3
votes
1answer
470 views

Applying transformed image layer to renderInContext:

Background I am using Erica Saduns Cookbook example from Chapter 8, Example 14 — Resize and Rotate to obviously resize and rotate a UIImageView. VIew hierarchy 1.) striped background view. ...
3
votes
1answer
458 views

how to resize and position Drawables inside a LayerDrawable in Android

I have a LayerDrawable, which should display 5 Bitmaps. 1 background and 4 Icons (which can be different for every LayerDrawable) like a Grid. Unfortunately these Icons don't have the same width than ...
3
votes
1answer
380 views

DDD: how the layers should be organized?

I’m very much new in software development. Personally I think layered architecture is a great way to reduce the complexities that arise in the process of software development in object oriented ...
3
votes
4answers
179 views

Buffer communication speed nightmare

I'm trying to use buffers to communicate between several 'layers' (threads) in my program and now that I have visual output of what's going on inside, I realize there's a devastating amount of time ...
3
votes
0answers
266 views

What is the correct way to use Unit of Work/Repositories within the business layer?

Having built a small application using the Unit of Work/Repository pattern, I am struggling to understand how to use this properly within my business layer. My application has a a data access layer ...
3
votes
1answer
395 views

Black screen during video playback in Android

I'm playing a video using android media player & also showing an animation on the top of the video using another layer. (The video file is present on the sdcard.) The animation is basically a ...
3
votes
2answers
144 views

Business object to multiple tables

I want to try custom code, this is for my uni project. What if I have Tables - UserCar, CarMake, and CarModel. UserCar - userId, carId, carMakeId, CarModelId CarMake - CarMakeId, MakeName CarModel ...
3
votes
3answers
3k views

Implementing a service layer in an MVC architecture

How would one typically implement a service layer in an MVC architecture? Is it one object that serves all requests to underlying business objects? Or is more like an object that serves different ...
3
votes
1answer
2k views

WPF Layer Control

I'm in need of a WPF layer control that does the following 1) Have multiple layers of content on top of each other. 2) Ability to turn layers on/off at design and runtime, ie we need a UI maybe ...
3
votes
3answers
583 views

Three Layered Web Application

Is it OK - best practise wise - to use the second layer to redirect the user? For example: public static void ForceLogin() { HttpCookie cookie = HttpContext.Current.Request.Cookies[cookieName]; ...
2
votes
1answer
66 views

Prism 4 WPF App - Solution Architecture with MVVM, Repositories and Unit of Work patterns implemented

I'm new to .Net and trying to learn things. I'm trying to develop a Prism4 WPF app with Visual Studio CSharp 2010 Express Edition, Prism v4, Unity as IoC, SQL Server CE as data store. I've ...
2
votes
2answers
95 views

CDI in layered architecture. How to inject service object using CDI annotations?

I am developing some application, which consists of three layers: Database access layer (JPA + Hibernate as provider) Business logic layer Presentation layer (JSF 2.0) Before I started I have read ...
2
votes
5answers
272 views

SetPixel is too slow. Is there a faster way to draw to bitmap?

I have a small paint program that I am working on. I am using SetPixel on a bitmap to do that drawing of lines. When the brush size gets large, like 25 pixels across there is a noticeable performance ...
2
votes
1answer
90 views

Organizing application in layers

I’m developing a part of an application, named A. The application I want to plug my DLL into, called application B is in vb 6, and my code is in vb.net. (Application B will in time be converted to ...
2
votes
0answers
55 views

c# 4.0 how to add layer to an image

I want to embed some images to another image. This should be done as layers so transparency everything will be kept. Images are png. How can i do that ? This is like using pngout and adding extra ...
2
votes
1answer
62 views

Better way to do MySQL Object layer

I am not a pro in MySQL, but want to do something like Object Layer above relational MySQL tables. I want to have very many "structures" with a fields of type "bigint", "longtext", "datetime", ...
2
votes
2answers
226 views

How to combine an array of png images like layers using C#?

I have an array of images named image_<somenumber>_trans.png All these images have transparent areas. The idea is that when put one on top each other they will form a nice looking image. But ...
2
votes
3answers
139 views

passing argument 1 of 'setBackgroundColor:' from incompatible pointer type

- (void)drawRect:(CGRect)rect { // Drawing code. // BackgroundColor CALayer *myLayer = [self layer]; [myLayer setBackgroundColor:[UIColor colorWithRed:0 green:0 blue:0 ...
2
votes
2answers
352 views

Python PSD layers?

I need to write a Python program for loading a PSD photoshop image, which has multiple layers and spit out png files (one for each layer). Can you do that in Python? I've tried PIL, but there doesn't ...
2
votes
2answers
269 views

Android layouts in Photoshop

is there a plugin for designing android layouts in photoshop? Creating android XML layouts is unnecessarily tedious (especially with having to type "android:" for every parameter, and typing out the ...
2
votes
0answers
212 views

When does a view (or layer) require offscreen rendering?

Hellothis weekend I started to watch the 2011 WWDC videos. I've found really interesting topics about iOS. My favorites were about performance and graphics, but I've found two of them apparently in ...
2
votes
1answer
80 views

What are DBAL, DAO, DAL, Model and DLL in PHP

Please someone, give me proper example of the all the layers inside a data tier. My head is rolling with all the stuff i am reading out of the internet. What are DBAL, DAO, DAL, Model and DLL? What ...
2
votes
1answer
656 views

Square shaped layout border with round inside edges

I’m attempting to create a layout border with corners that are square on the outside and round on the inside. I’ve gathered that I need to create an xml drawable definition composed of two shapes: one ...
2
votes
1answer
169 views

CABasicAnimation is not animating. Help?

Now before you get all antsy, this is Cocoa I'm talking about, not Cocoa-Touch. With that out of the way, lets begin. I have recently started programming for the Mac. Why? Because it's cool. You ...
2
votes
1answer
100 views

Multiple drawing layers in a single opengles 2.0 application

I am creating an application in opengl es 2.0. I have two drawings in my scene. One is a bar graph and the other is a sphere. My bargraph will be making various transitions like rotations and ...
2
votes
2answers
1k views

“Application executable is missing a required architecture armv6” on Application loader

When i run my layarapplication on my device it works, but when i want to upload it with application loader to appstore, it gives a message; "*application executable is missing a required architecture ...
2
votes
2answers
393 views

Using MEF in Service layer (WCF)

So far I found that MEF is going well with presentation layer with following benefits. a. DI (Dependency Injection) b. Third party extensibility (Note that all parties involved should use MEF or ...
2
votes
4answers
99 views

Stack divs with different heights

I want to stack divs with different heights but same width within a div container.. from top to bottom going right. Problem now is with divs that are short.. gives a ugly gap to the div above. I've ...
2
votes
1answer
205 views

Python read multilayer PSD?

Can you read a multilayered PSD image with Python? Ive tried PIL, but it only seems to access the first layer. Another problem is the result is black if the layer was set to "hidden" in the program.
2
votes
3answers
124 views

Should DAO's validate the input

since DAO layer is typically responsible for accessing data from DB given certain input (like a user_id etc), should it concern itself with checking the validity of its input? E.g. if there's a DAO ...
2
votes
1answer
543 views

Programming Geoserver 2.0.2 to add a new data store and layer without the UI

I have a directory of imagery that will be updated continually. From this imagery, I am making Image Pyramids using the Geotool's PyramidBuilder utility. I need to setup a cron job to automatically ...
2
votes
3answers
190 views

Questions about IoC

I am studying about high coupling between classes, specifically IoC. I would like to ask some questions: I am using Ninject; which layer should I put the dlls Ninject When I create a setup to send ...
2
votes
2answers
60 views

When should layers be implemented as separate units of deployment?

When designing an application, at what point should the various layers (such as Presentation, Business Logic, and Data Access) be separated into different assemblies?
2
votes
4answers
534 views

Multi-Shaped CSS Layers \ Non-rectangular CSS Layer

is it possible to make CSS Layers shaped like the following image... i know we can have images of this shape and with transparent backgrounds we can have Layers shaped like these... but no i want ...
2
votes
3answers
1k views

simple spring app - why use service layer?

i looked at the example on http://solitarygeek.com/java/developing-a-simple-java-application-with-spring/comment-page-1#comment-1639 because i'm just getting started with spring. And, i'm trying to ...
2
votes
3answers
1k views

Spring, Hibernate, Java EE in the 3 Tier architecture

I need to get a start as to where I put those technologies in the 3 Tier architecture: This is what I have... presentation layer: HTML, JSP app. layer: Java EE, Spring data access layer: Hibernate, ...
2
votes
4answers
2k views

can we give <div> within <li>

can we give div tag within un order list tag.............. it will be in this format <li><div>blablabla</div></li> Is it Possible

1 2 3 4 5 7