All Questions
0
votes
3answers
9 views
How to center text horizontally and vertically within box element?
Using HTML/CSS I want to create button-like link:
a.btnlink
{
margin-bottom: 5px; width: 200px; height: 50px; text-align: center;
border: 2px solid #808080; padding: 2px; text-decoration: ...
0
votes
1answer
17 views
Getting peewee to work on elastic beanstalk
I'm trying to install the peewee package on an elastic beanstalk instance to control a bottle application. I think the problem is with the MySQL-python dependency, but peewee doesn't load either. My ...
0
votes
0answers
3 views
PHP STR2VAR Creater function
<?php function STR2VAR($strs){
$a = explode(',',$strs);
foreach($a as $key) {
$$key = $_GET[$key];
}
}
STR2VAR('exam1,exam2,exam3');
echo ...
-2
votes
2answers
11 views
What is the difference between import httplib and from httplib import *?
I would like to know which is the difference between
import httplib and
from httplib import *
By the way i am using python 2.73.
1
vote
0answers
23 views
Error when importing an unmanaged solution
I'm trying to migrate some customizations from our development environment to the test environment. I have everything I need in a solution. When I import this into the test environment, it fails with ...
0
votes
0answers
3 views
How to to call JInternalFrame from another JInternalFrame?
it is posible ?? call JInternalFrame from another JInternalFrame ??
if so how?
i've looking for the answer a day..
found some question before..
in here How to manage a JInternalFrame calling another ...
0
votes
2answers
88 views
Post Form using C#
I need to post data to other website using C#.
<form action="http://localhost:2180/PrepDoc.aspx" method="post" target="my_frame" >
<input type="text" name="someText" value="Some Text" ...
0
votes
1answer
14 views
Using XSLT to split a string
I'm using XSLT to transform XML files into a format that Excel can delimit (sample code shown later). For example, when opened in Excel, the delimited version might look something like:
...
0
votes
0answers
14 views
Wait in Main Thread for Quartz Scheduler to Finish
I have a Java application that makes use of a Quartz Scheduler in the guise of a SchedulerFactoryBean. The main() method gets the application context, retrieves the root bean, and commences scheduling ...
0
votes
1answer
6 views
Creating a Loop in VBA Macro for Excel?
I was lucky enough to get a response from someone on a previous question I have asked. See here.
Only thing I am struggling with is creating a loop that will end the macro upon reaching a blank cell ...
0
votes
0answers
16 views
Eclipse Java Formater - Align Fields in Columns; Not Working
As the title states, my java formater - 'Align Fields in Columns' is not working. Hopefully Im doing something wrong that I can correct? This is how I have it set currently...
Font: Courier New + ...
0
votes
2answers
12 views
SignalR + Knockout + EntityFramework (classic aspx webforms, not mvc) how to date mask
Currently, my page.html is as follows, it's mostly working but i have some oddities, my dates show like this:
2013-05-24T13:09:40.927 2013-05-24T13:09:40.927 10>
•2013-05-24T13:11:32.823 ...
0
votes
0answers
25 views
error when type 'sudo npm install -g meteorite'
I'm trying to install the meteorite. I've success to install nodejs(v0.10.7).and when I type 'sudo npm install -g meteorite'. It comes the error below. I think it may exist some problem with ...
0
votes
2answers
28 views
Storing different classes within one Dictionary, allow execution
I have two classes:
public class Variable<T>;
public class Closure;
Both share these properties:
public string handle;
public string description;
Both have method named GetValue:
public T ...
0
votes
0answers
2 views
setting up https proxy on elastic beanstalk
I'm trying to setup a proxy through an .htaccess file to send requests through to another server, like so:
RewriteRule ^thisurl/(.*)$ https://anotherdomain.com/thaturl/$1 [P]
This works perfect on ...
0
votes
1answer
14 views
Android apps failed to launch after updating Eclipse
I created a simple "Hello, World" Android app.
Then I checked for updates in Eclipse. A lot of updates were installed.
After installing them and restarting Eclipse I got an error in my Android app. ...
0
votes
1answer
4 views
Automatic flag for compiler directive based on synthesis/simulation for xilinx/modelsim?
I've got a large verilog project that I'm synthesizing onto a xilinx fpga and simulating in modelsim. There are a few modules wherein I'd like to simulate one version of said module and synthesize ...
1
vote
1answer
55 views
Why I can't bind a ObservableCollection<T> in Windows phone 7.8 and below?
Context:
Visual Studio 2012 Express for Windows Phone (Update 2)
Project build based on the official template Panorama (Windows Phone OS 7.1)
Problem:
All codes works OK in WP8, but when in WP7.8 and ...
0
votes
0answers
2 views
jmockit - Mocking chain of methods one of which returns a Collection using @Cascading
I am trying to mock a method call which goes something like this:
rapContext.getSysInfo().get(key)
The getSysInfo() method returns a ConcurrentHashMap.
Here is what I have done:
Class ABCTest {
...
0
votes
1answer
39 views
Updating PHP session variable using AJAX
I know this question has been answered multiple times but I haven't been able to find one specifically to solve my problem.
I'm making a website where a user can sell their eBay items, using the eBay ...
0
votes
1answer
38 views
Error in powershell startup task - Worker Role Azure
I am using the following script inside a .cmd file to unzip a compressed file but for some reason it keeps failing (it does not say in the trace listener).
powershell -command "Set-ExecutionPolicy ...
1
vote
1answer
59 views
How can I detect if a page massively uses Javascript with Python, Scrapy and Selenium?
I wrote a Scrapy spider to process Javascript content on webpages with the help of Selenium. However, I realized that this spider is significantly slower than a common Scrapy Crawler.
For this reason ...
2
votes
5answers
44 views
Java count occurrence of each item in an sorted array
Internet seems to be full of similar (solved) questions. But non of these realy fit.
I have an Array of Strings and want to count the occurancies of any single String.
I have already sorted it. (Its ...
10
votes
5answers
7k views
Best practise for SQL varchar column length
Every time is set up a new SQL table or add a new varchar column to an existing table, i am wondering one thing: what is the best value for the length.
So, lets say, you have a column called name of ...
-1
votes
1answer
18 views
Display DriveInfo to textbox
I'm attempting to display All drive info to multiline textbox3. How do i go about this?
Code i have is this
Edited: Moved the GetDrives() out of Private void into public form1 using the new below ...
0
votes
4answers
41 views
Organizing a JSON result with jQuery
I have a JSON object that looks like this:
data=[{"name":"John Smith",
"favorites":{"color":"orange",
"city":"Paris"}},
{"name":"Jane Baker",
...
0
votes
0answers
7 views
Creating Anonymous Pipe in Windows
I just started learning about anonymous pipe communication. My question is what is the difference between AnonymousPipeStream and CreatePipe method.
Right now I am creating pipe with CreatePipe() and ...
0
votes
2answers
18 views
Extract and sort specific values from an R data frame
I´m quite new to R, and this might there be an easy answer to, but still:
I have a data frame on the form
df <- data.frame(c("a", "b", "c", "d", "e"), 1:5, 7:11, stringsAsFactors=FALSE)
names(df) ...
3
votes
3answers
6k views
Maven include JavaDoc Jar in Assembly
I have a project with multiple modules, including on that is responsible for building the final assembly from the artifacts of the other modules. As part of the assembly, I want to include the ...
0
votes
0answers
5 views
Add % margins on a % div
I'm having some bug on a website I'm designing and, about responsive design.
I want to create a box, with a 90% width of the screen for example, and then add 3 other boxes inside the main box, but ...
0
votes
0answers
6 views
redefine method of a class that implements an interface
class MyClass implements MyInterface {
public function myMethod() {
return "before redefinition";
}
}
runkit_method_redefine('MyClass', 'myMethod', '', 'return "redefined!";');
echo ...
1
vote
2answers
613 views
Angular access to bound element
It may be an issue in the way i'm architecting my application, but i keep running into the need to be able to access the dom element via my items array:
$scope.items = [{"src": src, "url": url, ...
3
votes
1answer
52 views
What coding practices do I use in Vaadin to ensure I can record Selenium scripts?
My team is about to start using Vaadin and wants to integrate Selenium tests to allow for Test-driven development.
However I've heard there are issues with recording Selenium scripts out of the box ...
15
votes
8answers
7k views
How would you calculate all possible permutations of 0 through N iteratively?
I need to calculate permutations iteratively. The method signature looks like:
int[][] permute(int n)
For n = 3 for example, the return value would be:
[[0,1,2],
[0,2,1],
[1,0,2],
[1,2,0],
...
0
votes
3answers
31 views
grep or sed — need to extract a particular text
How would I extract only a substring of matched text.
I have an XML file with multiple lines. However this is what I am concerned with.
<url>/localhost/index.html</url>
I tried
cat ...
4
votes
2answers
4k views
Detect “image corrupt or truncated” in Firefox
(Pre-emptive strike: If you're tempted to mark this as a duplicate, note that other questions seem to ask "why am I getting this error?" I know why I'm getting this error; I want to know how I can ...
27
votes
3answers
20k views
How to do a newline in output
as a warning I am completly new to Ruby (been learning for 1 day) so please explain in simple terms.
how do I make \n actually work in my output? At the moment it just writes it all in 1 long block. ...
0
votes
1answer
20 views
CSS: space <li> so they are evenly distributed vertically in a <div> of fixed height
I have a <div> with a fixed height of 400px in which to display product bullet points using <li>. If I have 8 <li>, they fit pretty well in the space given. If I have only 4 ...
5
votes
4answers
4k views
deleted gen folder, eclipse isn't generating it now :(
I accidentally deleted my gen folder and now, predictably, my resources are all messed up. I just created a gen folder myself and tried to project > clean - that didn't work. Tried right-clicking ...
25
votes
2answers
415 views
Complex number arithmetic in Tcl?
Is there an equivalent to the expr command which works for complex numbers (represented lists of two doubles)?
This library provides functions for complex number arithmetic, and this seems to be a ...
4
votes
1answer
51 views
Azure Continuous Integration
I have an MVC 4 application on .NET 4.5.I have my application deployed on Azure cloud.
Up until yesterday I would make changed to my application, then check in to TFS, then my application would ...
0
votes
1answer
10 views
How work with degree or start and stop in linear-gradient CSS3
I'm trying to duplicate this button in CSS3:
this is mu CSS code:
#banneroverlaping > a:link, #banneroverlaping > a:visited{
color: white;
padding: 5px 5px 5px 5px;
background: #FA733B;
...
0
votes
1answer
11 views
How do I assign one Array to another Array in objective-c?
*emphasized text*So I'm using restkit to pull back a bunch of objects to display in a UI Collection view. I get my initial mapping result, which is an NSArray of MyCell Objects.
I invoke the given ...
0
votes
4answers
30 views
Read file from a folder inside the project directory
In a JSP project
I am reading a file from directory. If i give the full path then i can easily read the file
BufferedReader br = new BufferedReader(new ...
0
votes
0answers
6 views
Update svg path from typed arrays
What is the best way to construct SVG paths from typed arrays?
Such arrays seem to be the best way to transfer data from code compiled for asm.js to other JavaScript snippets.
Various possible ...
1
vote
4answers
3k views
Why can't my c++ program find the necessary .dll file?
I am trying to use OpenCV (a computer vision library), which appearently uses a few .dll files, located in C:\OpenCV\bin (which has been added to the system PATH variable). However, if I try to run a ...
0
votes
4answers
33 views
How to update a GUI while it's running
So I have a JTextField displayed in a GUI. What I want to do is remove the text field when someone presses enter. I have already added ActionListener. I just want to know how to automatically update ...
0
votes
1answer
44 views
Get next pointer of a row of a matrix
I have a matrix of 1*5
I defined:
int **mat = new int*[5]; // define the matrix
int* ptr = *mat;
ptr++ gives me the pointer of the next row of the matrix.
I want to get the pointer of the second ...
3
votes
1answer
56 views
+100
Validation (vs) Sanitization in Symfony2+Twig?
I need my users to enter the URI of their personal website in their profile so that other users can see and click on it. I am worried that this could lead to XSS attacks if the output is not sanitized ...
0
votes
2answers
7 views
How to make symfony2 to set time_zone in mysql?
How can I set custom drivers options in symfony2
In this case I want to run set_timezone in mysql as part on the connection initialization.









