I have a web application written in asp.net mvc. I have in MyApp.Web assembly the list of views and and the content files(images, scripts, css, and so on). In MyApp.WebBase I have the rest of fonctionality(Controllers, domain(entities, repositories, services)). Now the question is the following: I want to give to third party html coder access only…
I'm trying to get the avTouch sample code app to run on the retina display. Has anyone done this?
In the CALevelMeter class, I've tried the following:
- (id)initWithCoder:(NSCoder *)coder {
if (self = [super initWithCoder:coder]) {
CGFloat f = self.contentScaleFactor;
if ([self respondsToSelector:@selector(contentScaleFactor)])
…
2 questions, i was doing nothing productive, and tried selecting the google home page (a left click drag and select whole page) on google.com
i see that beside the search box, on the left side, there is an empty space
i looked up the source code and there indeed was a <td width=25%> </td>
stupid as it may sound,…
I have a grouped UITableView with a custom UITableViewCell class and I am adding a custom background image to each cell. However, when I do this, the cell's separator is not visible.
If simply switch the table style to Plain instead of Grouped, the separator is showing up.
I need the grouped table - how do I make the separator show up?
…
In Observable's notifyObservers method, why does the coder use arrLocal = obs.toArray();?
Why does not coder iterate vector directly? Thanks
public void notifyObservers(Object arg) {
Object[] arrLocal;
synchronized (this) {
/* We don't want the Observer doing callbacks into
* arbitrary code while holding its own…
Hi,
Im new to Prolog and was looking for some assistance. What i am trying to do is basically get the some of the list of list, if that makes sense? lol
What i am trying to achieve is.... sum([ [1,2],[3,4],[5,6] ]). should return:
Number Of Lists: 3
List 1
3
List 2
7
List 3
11....etc
I can get the Number of Lists which is fairly…
Daily tech links for .net and related technologies - Mar 29-31, 2010 Web Development Querying the Future With Reactive Extensions - Phil Haack Creating an OData API for StackOverflow including XML and JSON in 30 minutes - Scott Hanselman MVC Automatic Menu - Nuri Halperin jqGrid for ASP.NET MVC - TriRand Team Foolproof Provides…
I've been a professional coder for a several years. The comments about my code have generally been the same: writes great code, well-tested, but could be faster.
So how do I become a faster coder, without sacrificing quality? For the sake of this question, I'm going to limit the scope to C#, since that's primarily what I code…
I recently finished creating my latest website, and since I am a designer, not a coder, I often find the need to seek the services of a freelance IT professional. There are several good sites out the... [Author: John Chilton - Computers and Internet - August 24, 2009]
There are many developers and coders out there who like to do code Kata’s to keep their coding ability up to scratch and to practice their skills. I think it is a good idea. While I like the concept, I find them dead boring and of minimal purpose. Yes, they serve to hone your skills but that’s about it. They are often quite…
What prefer a game developer company? A developer with experience in UDK engine ? or, a developer with projects made entirely in c++ with a graphics engine like Ogre3D?
I think that a coder can demonstrate better his abilities with games made in c++, because it requires a knowledge deeper in many fields. However, currently…
"A programmer, computer programmer or coder is someone who writes computer software" from Wikipedia
If you do frontend development using jQuery/CSS/HTML do you call yourself a programmer? If you develop PHP applications that deal with databases, do you call yourself a programmer?
Are you only a programmer if you write…
A l'occasion de ma critique de l'ouvrage JSP et Servlets efficaces : Production de sites dynamiques en Java, j'aimerai vous demander comment vous avez appris à coder des sites web en Java ?
Citation:
Ce livre s'adresse aux développeurs qui utilisent Java dans la production de sites et à ceux qui…
We have a small dev team (only 3 developers) and we recently got
a new team member. While he is a smart coder, his coding style is
completely different from ours. Our existing code base contains
mostly readable, clean and maintainable code, but the new team
member is quickly changing many files, introducing ugly…
I am a somewhat green developer; some work experience, last year of school.
As most of you, I am constantly working on an assortment of personal projects. Since my mind often has a somewhat drifting characteristic; I am not always able to keep the projects in check. After some time they all exhibit the moral…
i've been using ubuntu for ~2 months,
when i installed it on my computer (laptop) it never overheat
but a day, i don't know what happened, it over heated.. (70*C @ Idle)
I've tryed what ever i found on the net, and as well, i can't change the CPU freq o.O, i5 M460 @ 2.53 GHz..
i have benn trying, jupiter…
There are so many "punch line" websites like:
http://www.thatswhyyoufail.com
www.canrailsscale.com/
www.nooooooooooooooo.com/
but it's a mystery how they ever get so popular.
I have an idea for a punch line website too, but I want to make it BIG!
Does anyone have any tips for marketing these kinds of…
Bonjour a tous , cela faisait un moment que je n'avais pas posté
Depuis quelques temps , je remarque une évolution des comportements vis a vis de JS , de plus en plus d'utilisateurs viennent ici pour comprendre / modifier des scripts existant en fonction de leur besoins, et bien souvent ces scripts sont…
In refactoring code, I came across code that had comments. Looking closer at the comments, I could see that the code was clearly not doing what the comments said.
Without access to the coder nor documentation, and without clear direction regarding the code (i.e. defects as to the fact that the code is…
Can't get ubuntu 12.04 to set pixel resolution higher than 1360x768. Very new to linux liking it other than this lol. I have a dell xps 420 with a nvidia geforce 260 hooked up to my 55 inch tv through a dvi/hdmi adapter.The display program wont set the resolution above 1360x768.I have tried the two…
Very inexperienced coder here:
Does anyone know of an app (for iOS or Mac) that asks for my current activity every hour or so? I see tons of apps that let you log your activities, but none that use popups/notifications to actively ask you.
I found a script that looks promising (source), but I'm…
Ok. I have been banging my head against the wall for over a week now trying to get 3 monitors to work.
I have:
1 - Nvidia 8600 GT 512MB PCIEx16
1 - Nvidia GT 240 1GB PCIEx16
They are not running in SLI (obviously). I have tried to use everything from tutorials to a few templates, all the way…
I hadn’t done much (read: anything) with the C# generic HashSet until I recently needed to produce a distinct collection. As it turns out, HashSet<T> was the perfect tool.
As the following snippet demonstrates, this collection type offers a lot:
// Using HashSet<T>:
//…