0
votes
0answers
2 views

managing property names returned in json from web api

I am currently working with asp.net web api where I return a Modal object like following from my REST operation: Product with properties: Name, Id, Description etc When this is converted to a JSON ...
0
votes
0answers
3 views

adding image to a JButton

I am trying to add an image to a JButton and I'm not sure what I'm missing. When I run the following code the button looks exactly the same as if I had created it without any image attribute. ...
0
votes
0answers
4 views

Correcting database structure with MongoDB

I have a fairly straight forward database structure I would like to create with MongoDB. My structure looks like this: {id: value, url: value, users: {user_id: value}} An example ...
1
vote
0answers
5 views

Randomly picking entity not yet in a join table

This seems interesting. Assume three tables, users, items and a join table users_items. The latter links users.ids to items.ids. We say that user U owns item I when there's a row in the users_items ...
0
votes
0answers
3 views

Redirect with htaccess file

Due to technical problems I have had to temporarily remove my website. The site was structured as follows: Root/ Root/subfolder1 Now, I moved the subfolder1 content in the subdomain ...
0
votes
0answers
2 views

Android: Populate Gallery With Images from SDCard

I'm trying to populate a Gallery view with images from a folder in the SDcard. I read the Gallery tutorial on Android Dev seen here: ...
0
votes
0answers
7 views

Pass array and scalar to function perl

I have a function, or subroutine, that takes in the first parameter as an array and the second parameter as a scalar. e.g. sub calc { my @array = $_[0]; my $scalar = $_[1]; print @array, ...
0
votes
0answers
6 views

Does any know how loops work in a program called Simple Simulator?

You can use the Operand function B to make it jump, but I'm not sure what the format is for the function and the concept of it. I need to try and get all FF in most of the main memory, causing it to ...
0
votes
0answers
9 views

Mixing managed and unmanaged C++ code?

I have a couple specific questions regarding mixing managed C++ with unmanaged C++: If I leave out ref and value in a class/struct declaration, does that automatically make the class/struct ...
0
votes
0answers
2 views

Grabbing first or Last Value for Custom Time Period

First off, very new to SSAS. But what I would like to accomplish seems fairly trivial (I hope). I have transactional data which occurs by the second. And I have created two time dimensions. One ...
0
votes
0answers
2 views

SelectObject on memory DC

In my program I have a memory DC to which I frequenty draw, then in response to WM_PAINT I quickly BitBlt it to the screen. I've always done the drawing like this, the memory DC is created in response ...
0
votes
0answers
3 views

Creating multiple icons in Windows Taskbar

I have the JFrame as the parent in my GUI. In it, I present the option to launch a JDialog, which gets info from the client. The JDialog appears on a different window, and I'd like to see two ...
0
votes
0answers
4 views

SEO implications of 3rd party images

High-quality, relevant images presented in a clear and accessible way (e.g. using alt attributes) can provide an SEO boost to websites, especially via Image Search engines. I was wondering what the ...
0
votes
0answers
3 views

Church-Rosser Theorem Example in a Functional Programming Language

I have seen multiple references to the Church Rosser theorem, and in particular the diamond property diagram, while learning functional programming but I have not come across a great code example. If ...
-2
votes
0answers
24 views

URL Drop Down like Groupon.com

I would like to create a simple drop-down menu listing multiple cities. When the visitor selects a city it will forward to a sub-directory within the same domain. When the user "Revisits" the main ...
0
votes
1answer
7 views

How can i use external thermometers with vb.net

i am a programmer, i primarily use asp.net to write web apps. I have a need to use some external temperate sensors and a controller to run a solar water heater. I will need to be able to monitor more ...
0
votes
1answer
7 views

MVC3 Site losing values stored in session

So, this morning we lost power to our server hosting our MVC3 website. Since it has come back on line, we are randomly losing our session values. This only happens on this server, not on local or ...
0
votes
0answers
6 views

Getting started with Windchill integration?

My organization has an existing installation of Windchill and PDMLink and we are interested in integrating the Part and BOM data from those systems with third-party systems in the Enterprise. Our ...
0
votes
0answers
4 views

Break a list of job bu person and # of job that person can do a day

I have a list of things to do and want to break it split it out between people and how may things they can do a day. this data is in 2 tables so i have 2 tables the first is a list of things to do ...
0
votes
1answer
11 views

Stretch and shrink a div by dragging

Using javascript without jQuery, I'd like to enable a user to draw a rectangle that will tag photos. The rectangle is selected by dragging the mouse across the photo. As the user drags out the region ...
0
votes
1answer
14 views

regular expression, find text inside couple of curly brackets

i'm very new here and i hope i can explain my problem. i've a string like this: "{sometext {'id':123,'email':'email1','pass':'pass1'},someothertext:{'id':456,'email':'email2','pass':'pass2'}}" and ...
0
votes
0answers
5 views

Creating Simple Custom Action Wix Installer

Is it possible to create a simple WIX installer that only executes a Custom Action, and does nothing else? I know I can get it to work by using the following WIX markup, however this still creates a ...
0
votes
0answers
10 views

editing some files within Vb.net

I have a pretty simple question I was hoping someone could help me with, there are two text files - first is C:\Test1.txt and the other C:\Test2.txt. C:\Test1.txt data consists of, the column is ...
0
votes
0answers
6 views

What should I put in a meteor .gitignore file?

I have a new meteor project. I'm guessing the .meteor dir has a combination of configuration files (needed) and temporary files (not needed). So what's in your .gitignore?
0
votes
2answers
18 views

Jquery - put text in a parent div with a class

I am using function example_append() { $('#containment').append($('#example-textarea').val()); } This is throwing the text I put in the form field in to the div #containment. I'd like to place ...
0
votes
2answers
20 views

What is wrong with my jQuery src changing code?

I am trying to change an images's src when you hover over it. This was my attempt, however it is not working: HTML: <img src="images/work.png" id="work"/> jQuery: ...
0
votes
0answers
4 views

How to make Compass to watch several folders simultaneously?

I'm using Compass + Sass in order to manage/combine my .css files. So I have the following folder structure: Root --Module ----css ----sass --Module ----css ----sass --Module ----css ----sass And ...
0
votes
1answer
9 views

Safari treats .htaccess different than other browsers

I have links like these: www.domain.com/page.php?id=1#info I'd just like to hide the .php to get this: www.domain.com/page?id=1#info For this reason I found this .htaccess script: RewriteEngine ...
0
votes
0answers
3 views

Magento - Two custom modules clashing

I’m having trouble with a certain part of two custom modules clashing...the rest of their functionality seems unaffected except for this one thing. Basically, I have two different modules that add ...
0
votes
3answers
24 views

Can this Python list comprehension expression be simplified?

input = "foo ,,bar ,baz," tags = [x.strip() for x in input.split(',') if len(x.strip()) > 0] Desired output is obviously a list with no empty strings in it. The question is in the spirit of ...
0
votes
0answers
4 views

Using Storyboards, how to put a UIView at top of UITableView in UITableViewController

Using XCode 4 and Storyboards, I want to have a UIView (with labels and textfields) on the top half of a UITableViewController, and a custom cell in the UITableView on the bottom half of the ...
2
votes
4answers
26 views

how can I round to a multiple of a number in javascript?

While I understand the Math.round/ceil/floor functions in javascript, I have been unable to come up with a working function to this problem. What I want to do is round any whole number to a multiple ...
0
votes
1answer
6 views

Application stopped unexpectedly: Fatal Exception: MAIN

I want to use Spannanle. below is my activity file: package com.Myapp; import android.app.Activity; import android.graphics.Color; import android.graphics.Typeface; import android.os.Bundle; import ...
0
votes
0answers
14 views

find the img id and src and adding to the array

Heres my html code: <div id="cmdt_1_29d" class="dt_state2" onclick="sel_test(this.id)"> <img id="cmdt_1_29i" onclick="dropit('cmdt_1_29');" ...
0
votes
0answers
5 views

PHP- Cannot reference method from mysqli class in another class

I am trying to inherit all methods and properties from superglobal mysqli class into my db class. Here is the DB class: class DB extends mysqli { protected $mysqli; public function ...
0
votes
0answers
5 views

Facebook like plugin

I want to integrate Facebook Like plugin in my website. I am pretty sure about the code and I think it works fine but after few seconds the "liked" status changes back to "unliked" and i have no idea ...
0
votes
0answers
7 views

validations problems in ruby on rails

i new in ruby on rails and i am making some exercises. I am trying to make validations and everything works perfect except one thing! Not Flagging Fields in Red and the errors. any ideas?
0
votes
0answers
12 views

Bouncy Castle Not Decrypting DoFinal from Java in C#

I am trying to decrypt data that is encrypted using the Bouncy Castle library in Java with a C#. The data that is encrypted in Java (again with the Bouncy Castle Libraries) can be decrypted with Java. ...
1
vote
1answer
9 views

NSMutableDictionary initialization in non-ARC app

I don't know if I'm completely brainfarting today, or what. But basically I'm trying to initialize a NSMutableDictionary to be used. I have it as a property: @property (nonatomic, retain) ...
0
votes
0answers
7 views

Infinite loop while parsing XHTML using DocumentBuilder “parse”

I have this method which loads an XHTML document from a java.io.InputStream returning a org.w3c.dom.Document. private Document loadDocFrom(InputStream is) throws SAXException, IOException, ...
0
votes
1answer
12 views

jQuery If android load css

how can load and apply css if detects android: if( navigator.userAgent.match(/Android/i) { load css .. } else { dont load css .. } because when i using @media all, it applys to website styles so i ...
0
votes
1answer
12 views

sqlite - how to escape semicolons in a string in an insert statement

I realize that typically you'd want to use some sort of abstraction layer and not write your own insert statements for SQLite when platforms like iOS and Android (if you're writing phone apps) have ...
0
votes
0answers
2 views

Twitter Search API page parameter limit, but max_id not the same

there's a strange behaviour in my Twitter Search API application looking for specific hashtags. In short, I successfully built the pagination with two ajax loads based on different API parameters: ...
0
votes
1answer
11 views

Some Questions about setting up mySQL on Mac

I've been playing around with mySQL in the command line, and I've run into some problems that I haven't been able to find satisfactory answers to. I'm completely new to this, so just wondering if I ...
0
votes
0answers
4 views

Using Thor, how can I remove an option for just a few tasks?

I have a CLI built using Thor. I need a global option for all my tasks except a few. I added the global option by defining a class_option, but I am not able to figure out how to remove that option ...
1
vote
0answers
9 views

Loss of polymorphism after pattern matching

The following code is intended to produce either a Double or an Integer. s is assumed to be either negate or id; n the whole part; and f the fractional part or Nothing for an integer. computeValue :: ...
0
votes
0answers
5 views

SVG, XML & font-family

I'm hoping to get a little more information on the best way to format text within SVG The w3 offers this http://www.w3.org/Graphics/SVG/IG/resources/svgprimer.html#text_methods But doesn't specify ...
0
votes
1answer
7 views

Graphics not drawing in paintComponent(Graphics)?

I'm working on a custom Swing Component for my application, and I started drawing things with the public void paintComponent(Graphics g). Everything works fine except for the fact that I can't draw ...
0
votes
2answers
26 views

displaying a message if data is not in database with php

i have been looking for a similar solution to my issue to no avail. Here is the problem: A User logs in to view info displayed in a table. The login takes the $idNum (user id) and checks the ...
1
vote
2answers
32 views

Abstract functions and data types — is there any elegant way to do this?

I have a large family of objects all descended from a single parent. The objects all know how to tell if they have been modified, but I also need to be able to see if a new instance of an object has ...

15 30 50 per page
1 2 3 4 5 62403