Tagged Questions
The code-sample tag has no wiki summary.
19
votes
15answers
3k views
Sample Code for R?
Does anyone know a good online resource for example of R code?
The programs do not have to be written for illustrative purposes, I am really just looking for some places where a bunch of R code has ...
15
votes
2answers
295 views
What is the explanation of this java code?
I have the following code :
public class Main {
public void method(Object o)
{
System.out.println("Object Version");
}
public void method(String s)
{
...
8
votes
2answers
3k views
Mapping enum with fluent nhibernate
I am following the http://wiki.fluentnhibernate.org/Getting%5Fstarted tutorial to create my first NHibernate project with Fluent NHibernate
I have 2 tables
1) Account with fields
Id
...
7
votes
8answers
268 views
How this looping works in c#
Recently, in a book i read this code. Can you define the means of this code and how this code works.
int i = 0;
for (; i != 10; )
{
Console.WriteLine(i);
i++;
}
6
votes
1answer
1k views
Why does the WebViewDemo die?
I copied this WebViewDemo demo verbatim from the official Google site.
Yet, the moment I click on that little Android image, the application dies (instead of making raise its hand):
03-09 ...
6
votes
4answers
5k views
How to duplicate an SDK-sample project into workspace?
My goal is to duplicate the NotePad sample project such that if I tinker with the source files in order to learn through experimentation, the original sample files will not be affected. The rational ...
5
votes
2answers
230 views
N-tier web application sample with Ninject?
I am trying to learn how to use dependency injection and Ninject. I've been reading blog posts on the topic and Mark Seeman's book "Dependency Injection in .NET". While I have a general understanding ...
5
votes
3answers
286 views
Simple (small) and good erlang opensource project to learn from?
I'm looking for a simple (small) opensource project in erlang, from which I can learn.
I've already found a promising looking one: http://github.com/mochi/mochiweb
Can you guys suggest more? ...
5
votes
4answers
2k views
Hash tables VS associative arrays [PHP]
Recently I have read about hash-tables in a very famous book "Introduction to Algorithms". I haven't used them in any real applications yet, but wanted to. But don't know how to start.
Can anyone ...
4
votes
2answers
273 views
Asp.net Mvc sample application with N layers
i m looking for sample asp.net mvc application of medium size (preferably a blog engine) built using layered architecture and DI (preferably Ninject) so i can compare my coding practices with the ...
4
votes
7answers
626 views
Singleton in java
I just got to read the following code somewhere :
public class SingletonObjectDemo {
private static SingletonObjectDemo singletonObject;
// Note that the constructor is private
private ...
4
votes
2answers
280 views
Code example, what can I write to impress employer?
I'm not a very creative guy. Often employers ask me to write some code and send it with CV. I know it's mainly to check how my code looks like but I also think that it is important what it is. Do you ...
4
votes
7answers
222 views
Licensing Small Programs
I'm a soon to be grad and I'm just starting to work on my personal website. I wrote a couple of small apps that that I would like to use as code samples for potentional employers. I might allow the ...
4
votes
3answers
1k views
How can I validate US Social Security Number?
Anyone out there know how to improve this function? I'm not worried about shortening the code, I'm sure this could be done with better regex, I am more concerned about correct logic. I have had a ...
3
votes
2answers
218 views
Is there a leak in the Scroll View Suite sample code by Apple?
I need help with the code from Apple's ScrollViewSuite; specifically I'm looking at the ThumbImageView class, which doesn't have a dealloc method defined. I see in the .h that the property for ...
3
votes
2answers
148 views
iPhone - Bad code on Apple sample code?
I've looked at the Apple "PageControl" sample project (See here) and I see this function in the code :
- (void)loadScrollViewWithPage:(int)page
{
if (page < 0)
return;
if (page ...
3
votes
2answers
638 views
Advise/Code samples on how to make an application “Cluster Aware”
I've browsed the web for resources regarding how to make an application/web application "Cluster Aware" using the Failover Cluster API. I found a lot of technical articles but none written from the ...
3
votes
1answer
378 views
Licensing for MSDN code samples
I am preparing several in-depth code samples for prospective employers. Within the sample I have included references to several open source projects, Moq and StructureMap.
For some of the ...
3
votes
5answers
8k views
Java: Max/min value in an array?
It's trivial to write a function to determine the min/max value in an array, such as:
/**
*
* @param chars
* @return the max value in the array of chars
*/
private static int maxValue(char[] ...
3
votes
3answers
2k views
Custom Silverlight splash screen
Has anyone created a custom Silverlight Splash screen to replace the blue balls circular progress?
Does anyone have a sample or the best way to do this?
3
votes
5answers
1k views
Looking for code samples for generative art
Generative art means pieces of art which are generated by computers. To get an idea, here is a YouTube video.
Now, I'm not looking for nice pictures or cool blog posts but for actual code samples ...
3
votes
1answer
1k views
Can you help with a Delphi code sample for fingerprint recognition?
Do you know where can I find a Delphi code sample for fingerprint recognition from an image file.
2
votes
1answer
445 views
New Rules to validate US social security number(SSN)
I need to validate US SSN number. Currently I have below rules:
Should be 9 digits long.
Not allowed are SSNs with all zeros in any digit group (000-xx-####, ###-00-####, ###-xx-0000).
Not ...
2
votes
1answer
366 views
Apple's iAd sample code throwing errors
i am trying to incorporate iAd's into my app and in the process i'v gone through Apple's sample code.This is the link to the sample code. I have downloaded the sample code from apple's developer ...
2
votes
1answer
995 views
Looking for demos, sample code and tutorial about JSON.NET
I am looking for demos, sample code and tutorial about JSON.NET.
I would prefer demonstrations ready to use.
2
votes
2answers
339 views
iPhone - Apple default sample code missing some vars?
In XCode 4, when you create a new View-base-application project, here is the .h of the AppDelegate :
#import <UIKit/UIKit.h>
@class TestAppleProjectViewController;
@interface ...
2
votes
1answer
548 views
How to add Javascript ad in my Android application
I want to show a Javascipt ad* on top of my Android application. Please help me with sample code. No help found on internet. Similar type of question asked in here too.
*Javascript Ad example:
...
2
votes
1answer
390 views
How to use git bisect?
I have read some articles saying that git bisect is awesome, however I'm not native speaker and I can't understand why it's awesome.
Could you please demonstrate on some code sample what is so ...
2
votes
6answers
5k views
PHP website complete (sample) source code
I'm new to PHP, and it appears that the way I learn new languages the fastest is to study a well developed complete program/website changing stuff seeing what happens and consulting books.
There are ...
2
votes
7answers
201 views
jQuery programming style?
I was recently asked to fix something on a site which I haven't worked on before. I haven't really worked with jQuery that much, but I figured I'd take a look and see if I could fix it.
I've managed ...
2
votes
3answers
772 views
string multiplication
I am trying to multiply two strings like we normally would do but iam getting the wrong answer.Any help will be appreciated:
public class stringmultiplication {
public static void main(String[] ...
2
votes
4answers
105 views
arrayListOutOfBoundsException… Please Help?
This is my class Debugger. Can anyone try and run it and see whens wrong? Ive spent hours on it already. :(
public class Debugger {
private String codeToDebug = "";
public Debugger(String code) {
...
2
votes
3answers
140 views
java + increasing performance and scalability
below is the a code snippet, which returns the object of a class. now the object is basially comparing to some parameter in loop.
my concern is what if there are thousands of objects in loop, in that ...
2
votes
4answers
1k views
Sorting CSV in Python
I assumed sorting a CSV file on multiple text/numeric fields using Python would be a problem that was already solved. But I can't find any example code anywhere, except for specific code focusing on ...
2
votes
6answers
742 views
C++ map question
I have an integral position-based algorithm. (That is, the output of the algorithm is based on a curvilinear position, and each result is influenced by the values of the previous results).
To avoid ...
2
votes
1answer
3k views
Looking for a simple MEF code sample
I'm looking for a simple code sample showing how to use Microsoft Managed Extensibility Framework (MEF).
I really like the code at ...
1
vote
0answers
49 views
How do I change viewcontroller with segmented control in iOS SDK4.2 (storyboard)? need sample code
I found this great sample code about 'Switching Views with a UISegmentedControl'.
http://redartisan.com/blog?page=2
(sample code link : http://github.com/crafterm/SegmentedControlRevisited)
but ...
1
vote
0answers
43 views
Open source sample website using amazon S3 [closed]
Is there any sample open source websites using S3 so that I can learn from?
1
vote
1answer
47 views
Three-Tier RIA Application - looking a sample application to learn from
I want to lean the subject architecture in c#
I think learning from real simple application will be best
Do u know where can i download one from?
Thanks
1
vote
4answers
138 views
what do I need to start writing in machine language? [closed]
I want to start learning the machine language, you know the 0010011 type language. What program if any, can I use to write in machine language? please, I know you guys are going to tell me that ...
1
vote
1answer
60 views
Apple's sample code in my commercial app? [closed]
I know that you can use parts of the Apple's sample code in my own application.
But if my application is for commercial purposes, I can also use these codes.
1
vote
2answers
56 views
Again about self and instance variables in Objective-C
In some books, Apple's code samples and internet resources I noted direct accessing to ivar instead of using synthesized accessors. It seems to me that it's very often for UILabel, UITextFiled and ...
1
vote
1answer
87 views
Any ASP.NET MVC sample using DI, AOP, POCO, UoW, Mocks, and Unit Tests
Can somebody point me to a ASP.NET MVC 2 sample with following features (most of them):
Dependency Inversion using any DI framework
Repository pattern & Unit of Work pattern
Entity Framework 4.1 ...
1
vote
1answer
394 views
Android + GL ES 2.0 multi-colored code sample?
Years ago I learned a bit of OpenGL (version 2.0). The basic examples were all very easy. One could draw a colored triangle with a few batch commands (such as glVertex[...]).
Now I get to know, that ...
1
vote
2answers
221 views
How do I get Eclipse to recognize R and the resources in Android's Lunar Lander?
I'm trying to create the Lunar Lander example for Android in Eclipse, but some of the code is not compiling. Anywhere in the code that references "R." is giving me errors. At first it was saying ...
1
vote
0answers
186 views
Android: Get an mp3 file and display it in the higher/lower voice
Here is the code so far
it just display the normal song.
package com.training.MediaPlay;
import java.io.IOException;
import com.training.MediaPlayer.R;
import android.app.Activity;
import ...
1
vote
1answer
534 views
Sample .NET code for a SAML Identity Provider
I'd like to use SAML to allow authenticated users of a website to login to other federated sites. In single sign-on parlance, that means my site needs to become an Identity Provider.
Can anyone point ...
1
vote
2answers
317 views
TFS2010 api Sample Program
We are moving from VSS to TFS2010 and I need to convert a program that does the checkout and update of items. Does anyone know of a good example of how to use the TFS2010 API to find and item and ...
1
vote
2answers
186 views
How to use ThreadException?
I tried using
http://msdn.microsoft.com/en-us/library/system.windows.forms.application.threadexception.aspx#Y399
but when I do this
throw new ArgumentNullException("playlist is empty");
I get ...
1
vote
2answers
409 views
Animating back to the original position with jQuery
I want to animate the image which is clicked by the user to the top left 100x100 then I want it to return to its original position where the animation started but with this piece of code it keeps ...