All Questions
0
votes
0answers
6 views
Escape hides complete UI
I've upgraded to Eclipse Kepler from Juno, and I find that it handles the Esc key completely different.
Usually, with the Esc key I could abort smaller views/menus like auto completion: Alt+Space to ...
0
votes
0answers
11 views
Losing sub classes' properties in a collection of inherited classes
I am trying to implement a relatively easy class hierarchy. However, it seems some of my knowledge are lost since school.. The problem is that the subclasses' properties are lost on retrieval.
The ...
0
votes
0answers
6 views
Programmatically retrieve all shortcuts in Visual Studio
everyone.
I'm writing an add-in for the visual studio and I need to get all the existing binded commands programmatically .
Like all comands in VS where "Shortcuts for selected command" is not null:
...
0
votes
0answers
3 views
java.lang.ClassNotFoundException: TopologyMain
I am trying to submit a simple word count topology to my local storm cluster. First, i tried using maven and then using storm command line client. But, it throws main class not found exception. Can ...
0
votes
0answers
6 views
Design pattern for 2 linked items
Suppose I have the following visual custom components:
2 Blocks: A & B
1 Link: C, connecting Block A & B
Now, if either Block A or B change, Link C has to be updated.
I am never sure how ...
0
votes
0answers
2 views
Binary Patching - modifing existing instructions and keeping machine code alignment
I'd like to edit the first instruction and change it to jmp 100h (give or take a few bytes)
the mov edi,edi takes 2 bytes and the jmp 100h takes 5 bytes (correct me if im wrong)
I edit the machine ...
0
votes
0answers
3 views
Joomla archive by year?
This seems like such a strange thing to not exist yet but I've been looking for ages. Is there an archive plug-in or component, or any way really, to simply sort the archive by year? All I want is to ...
-1
votes
1answer
16 views
number validation with non zero start
My code so far,
$("#contact_no").keydown(function(event) {
// Allow: backspace, delete, tab, escape, and enter
if ( event.keyCode == 46 || event.keyCode == 8 || ...
0
votes
0answers
17 views
Parse string contain numbers into integer array
A String is given as an input which consists of numbers and I want to convert it into integer arrays in C++.
int main(int argc,char** argv){
string num="-24 2 90 24 50 76";
stringstream ...
0
votes
0answers
4 views
Using Twitter Search API 1.1 to get real time tweets in C#
I want to use twitter search API version 1.1 to get real time tweets from twitter. And I want to do this in C#. Can anybody guide me in right direction. Some sample code would be of great help for ...
0
votes
0answers
5 views
DNS Issue Windows Server 2012
Background:
I have a windows server 2012 install with AD, DNS and DHCP.
I also have a netopia router/modem providing my WAN access.
My router/modem is configured with DHCP off and connected to a 24 ...
0
votes
0answers
6 views
How do I make a widget for my website to leave fan reviews?
Hi I want to build a widget on my church website where people can leave reviews. I also want to make it so that the reviews are visible on our church's facebook landing page. I would like it to be ...
0
votes
0answers
4 views
PHP IMAP Plain text one jarbled paragraph
I'm using imap from php and retrieving a message. The contents can either be html or plain text. When html is available, I resort to using the html contents for displaying. However, if html text is ...
0
votes
0answers
5 views
Rails Displaying Recommendations - Facebook/Linkedin style
I'm writing a Rails 3.2.1 app and I would like to display suggested items to a user in the following way:
Currently, I have an array of suggested items, and I want to display 5 suggestions at a time. ...
0
votes
0answers
3 views
ant Task for or foreach loop in xml files
I need some help on looping through an xml file which I manged to get the nodes using xmlproperty but I am struggling on how to loop through them where there are more than one params.
So here is the ...