All Questions
0
votes
0answers
2 views
Find the biggest chunks of same data in a binary file
I've a file that contains binary data. There is an error in generating the file and some data is written to the file more than once. Now I'm looking for a method to find big chunks of same datablocks ...
0
votes
0answers
2 views
Will git deal with the case where two different files happen to have same hash ID?
For two different files, is that possible "git hash-object" gives the same ID? people generally don't worried about it. So I am wondering if it would happen at all. If it does happen, how git will ...
0
votes
0answers
2 views
iPhone Email Flickering
I am working on a new email template, but am having problems with the text flickering.
This occurs only on the iPhone, but it is not consistent across different iPhones or different emails which use ...
0
votes
0answers
8 views
MVC route not getting called
I have this route registered:
context.MapRoute(
"Manager",
"manage/{id}/{action}",
new { action = "index", controller = "manage", id = ...
0
votes
0answers
5 views
Java API uses which the following extensively:
I recently took a quiz, which had a question: Java API uses which of the following extensively:
inheritance
polymorphism
encapsulation
regular expressions
I selected all of them, but I'm not ...
0
votes
0answers
7 views
How does one make javac use a .jar's classes?
I am studying (cramming) for the AP Computer Science test. One of the requirements is the need to familiarize oneself with a program called "GridWorld." In my studies, I have been running and ...
0
votes
0answers
4 views
shell script works, alias fails. why?
I use a custom gnome-terminal profile for ssh sessions (different bg color provides a nice visual cue that I'm not working locally). Why doesn't my alias work?
This almost works, but the terminal ...
0
votes
0answers
2 views
Minimizing Hazelcast chatter and overhead
Our app needs to run both on a large number of machines and on a single standalone machine. It has three distinct clusters, each performing a mostly isolated function. Cluster A is the main one, and ...
0
votes
0answers
2 views
views not showing when placed into ruby on rails app
I dropped in my angular app into a new ruby on rails app. what i'm noticing is that no views are being rendered out. i only see the layout being rendered. also i'm not getting any errors. my 2 views ...
0
votes
0answers
7 views
Get a textView background color with ShapeDrawable
I have a textview with the background defined in a xml file.
<TextView
android:id="@+id/event_tvColor"
android:layout_width="40dip"
...
0
votes
0answers
4 views
Python NLTK Naive Bayes Classifier
I have some newbie questions about Naive Bayes Classifier. I would like to try to use the NLTK NB classifier to classify some text with multi-classes. Let's say, I have a list of book reviews and I ...
0
votes
0answers
3 views
convert scroll view with texts to pages like reading a book
I'm having an epub reader, The reader gets an html content which is now set to a TextView and this is showing like a scroll view, if there are too many contents than the screen size. My objective is ...
0
votes
0answers
7 views
jQuery change ui-wrapper position
Hi all into my site I want to make an element draggable and resizable.
For some reason I want to position the element in a certain position inside the div parent.
But I can't move the ui-wrapper that ...
0
votes
0answers
2 views
Mercurial: roll back an “hg commit --amend”.
I accidentally did a "hg commit --amend" instead of just a commit. How can I roll back the commit to before the amend?
0
votes
0answers
3 views
Comparing computer vision libraries in python
I want to decide about a Python computer vision library. I had used OpenCV in C++, and like it very much. However this time I need to develop my algorithm in Python. My short list has three libraries:
...
0
votes
0answers
2 views
Missing parameters in cookies WebDriver
I have a problem that i quite don't understand in WebDriver. It seems that the cookie does not get any parameters. The browser used is InternetExplorer
When a do a regular manual log in the cookie ...
0
votes
0answers
4 views
why it is so slow with 100,000 records when using pipeline in redis?
It is said that pipeline is a better way when many set/get is required in redis, so this is my test code:
public class TestPipeline {
/**
* @param args
*/
public static void ...
1
vote
0answers
7 views
C++ compiler independent DLLs using abstract interface
I followed the guide at CodeProject and built a DLL with an abstract interface and exported the factory functions using the extern "C" command along with __declspec(dllexport) and __cdecl and by doing ...
0
votes
0answers
2 views
Getting mathgl working with c
I'm trying to get mathgl working on a CentOS 6.3 machine, I've installed mathgl-2.1 but I can't seem to get my code to compile...
Here's some C code I found on the net for an example (mathGL.c):
...
0
votes
0answers
7 views
Separate blocks of texts using regular expressions - Python
I have the following output from the Stanford Parser:
nicaragua president ends visit to finland .
nn(ends-3, nicaragua-1)
nn(ends-3, president-2)
nsubj(visit-4, ends-3)
xsubj(finland-6, ends-3)
...
0
votes
0answers
2 views
How to get wxPython 2.9.4 running on Windows XP with Python 3.3.2?
Hmm, I'm missing something. I installed wxPython under Python33. When typing 'import wx', I am getting an error message:
ImportError: No module named 'wx'
Someone knows what this is about?
I looked ...
0
votes
0answers
2 views
Magento Grand Total Calculates Total without adding shipping Tax
So I have this weird thing going on in a magento site I'm working on.
I've set up the shipping table rate and I've checked and re-checked all the Tax setting but I'm still getting two different sets ...
-1
votes
0answers
17 views
Randomize the order of divs displayed and hidden using jquery
Currently I'm using this jquery code that I got from another post here to fade some divs in and out
<script>
$(document).ready(function () {
var divs = $('div[id^="feature-"]').hide(),
...
0
votes
0answers
12 views
how to download and save files with php from a link?
I have a link that if i place it in a browser address it downloads a CSV file.
I would like to download it on my server, much like a image
<?php
// option 1
$u = ...
0
votes
0answers
3 views
Qt Removing a QGraphicsItem from QGraphicsScene with singleShot Timer?
While it is possible to automatically remove a QGraphicsTextItem from a scene using a timer and Qt's signal-slot mechanism like
QTimer::singleShot(1000, QGraphicsTextItem*, SLOT(deleteLater()));
...
0
votes
0answers
3 views
Changing MySQL Workbench shortcut key mac osx?
I have mysql workbench installed on a mac. I am trying to use shortcuts for sql auto-complete. As per their documentation it is Modifier+Space
http://dev.mysql.com/doc/workbench/en/wb-keys.html
...
0
votes
1answer
4 views
Java applet using JavaFx
I'm developing an applet. I want to use JavaFx to create the controls. Currently, I'm using An JFXPanel. Here is the code:
private JFXPanel jfxPanel;
private Canvas canvas;
private Scene scene;
...
0
votes
0answers
4 views
Return JSON from one JSP to another?
Is it possible in one JSP to make a jQuery ajax callback to another JSP and have data returned?
I am trying to make the ajax call to Page2.jsp in the $(document).ready call in Page1.jsp
I am ...
0
votes
0answers
2 views
Connect SAS to an Microsoft sql server database
I'd like to connect SAS to a Microsoft Sql server database but I didn't succeed.
I already have a database connection using a NT authentication.
For instance, when I want to connect R (the ...
0
votes
0answers
4 views
Linux: handling a segmentation fault and getting a core dump
When my application crashes with a segmentation fault I'd like to get a core dump from the system. I do that by configuring before hand
ulimit -c unlimited
I would also like to have an indication ...
0
votes
0answers
3 views
Loading data into database using Hibernate
I would like to improve Hibernate performance while loading data into database.
(I repeat this test - loading 3000 records into database - 30 times with the same data):
Firstly I simply used:
for ( ...
-2
votes
1answer
36 views
array[0] = 0 how is this possible?
an array can't be defined as c[0], it at least has to be like c[1]
Why is the following code correct? What is he doing there?
Thank you for the explanation.
int foo(double c[], int n)
{
if ...
0
votes
0answers
3 views
Ubuntu freezes on boot at /tmp mount prompt
I'm running an x86 Xubuntu guest on an x64 Windows 8 host using VirtualBox. I managed to install Xubuntu and get some updates on the virtual machine, but after I rebooted for the first wave of ...
0
votes
0answers
3 views
tile edit view wrong context for vocabularies
I have a persistent tile that has a choice field:
subjects = schema.List(
title=_(u"Subjects"),
value_type=schema.Choice(
vocabulary='my.subjects'
),
)
but this is failing on ...
0
votes
0answers
8 views
Open via android-device localhost on PC
Situation: on PC installed server, and available address with this site: http://localhost
And installed Connectify Hotspot to share internet via wi-fi.
Also, I have android-device from which I need ...
-1
votes
0answers
4 views
convert Apache MPM to Prefork
I have VPS with CENTOS 6.4 x86_64 virtuozzo – vps9458 and WHM 11.34.1 (build 14). I am trying to convert Apache MPM to Prefork. Please guide me how to convert convert Apache to Prefork.
Thanks
0
votes
0answers
4 views
DateTime Json Return From WebAPI with Default Serializer
I know this question has been hashed over multiple times and I read lots of posts on that hashing but still am confused.
Using MVC4/WebAPI, I have a datetime that is simply created as new ...
0
votes
0answers
6 views
Master-detail grid with IList
I have an IList which I'm passing as a parameter to a Dev Express 10.2 GridControl Datasource. Each "Foo" may have an IList or not. How should I have to do, to make a Master-Detail grid, where the ...
0
votes
0answers
2 views
Configure Grunt File Name Matching for Files with Multiple Dots
I just started using grunt, and love it.
I keep running into an issue that seems like it might be pretty common.
Here it is. I have files named so that words after a dot are something like classes. ...
0
votes
0answers
3 views
EF 5, one to many, more than one table
I'm having a little of trouble with the following classes:
public class TwoVariableDetails
{
public TwoVariableDetails()
{
MovementsPerBlocks = new HashSet<MovementsRow>();
...
0
votes
0answers
6 views
Pushing to github issue
I have a project which was bound to the remote server on github, but somehow it stopped working, so I deleted the remote origin folder through the Organizer and reconnected fresh.
But now, I have ...
0
votes
1answer
11 views
how to call javascript functions from the controller in rails
I'm trying to call a javascript function (actually coffeescript) from a controller in a Rails 3.2 app.
I'm getting a too few arguments error.
My code looks like this:
#controller
def index
...
0
votes
0answers
5 views
how auto save photo from camera without asking user (easily way)
Hi
I'm looking for a way to save photos from the camera device directly without ask the user to save or not. I'm not implementing the Camera classes or overriding it. I'm simply using this code ...
0
votes
0answers
2 views
how to set default font and font style in cocoa app?
My app has all different kind of NSViews, including NSTabView, NSButton, NSTextField, NSPopupButton and so on.
I would like to change all display text to a certain font and with certain font style.
...
0
votes
0answers
4 views
QTableWidget change selection mode
When clicking on QTableWidget cell, it selects only the cell. How to configure tablewidget, so that when click on a cell , the whole row will be selected which contains the cell?
It can be done ...
0
votes
2answers
11 views
linux bash: line 18: syntax error near unexpected token `fi' Q2.sh: line 18: `fi'
i'm trying to compile this code but I am getting the following error:
Q2.sh: line 18: syntax error near unexpected token fi'
Q2.sh: line 18:fi'
at line 15, i'm trying to verify if the parameter ...
0
votes
0answers
24 views
Insert List into XML File
I created an xml file as shown below as well as I have a list of elements that i got using linq query.
public bool createXMLFile()
{
bool myval;
try
...
0
votes
0answers
18 views
Expanding divs with CSS and no Javascript
Is there a way of making a DIV expand to fill the space left in it's parent container without having to use Javascript to calculate the necessary heights?
<div class="parent" style="height: ...
-1
votes
0answers
4 views
Best way to forward (delegate?) DNS for a parent domain on Microsoft DNS Server
I have two DNS servers:
mydomain.com (handled by pfSense which is also the DHCP server, it's IP address is 192.168.10.1)
ad.mydomain.com (handled by Windows Server 2012 DNS, it's IP address is ...
0
votes
2answers
29 views
PHP Join Tables
I have two tables in my mysql database , the first table is called "users", it contains:
id, username,password, etc...
The second table is for the user uploads and it contains:
...



