All Questions
0
votes
0answers
1 views
Subdomain hosting with Django + Nginx +Gunicorn
I am developing a web app using django for server-side. It has clients in android, ios and frontend. I was thinking of using subdomains for differentiating the urls of these clients. The ...
0
votes
0answers
2 views
ggplot2: Changing which values are annotated on the x-axis
My question is certainly a replicate but I can't find the answer.
On the x-axis the values that have a tick in my plot are: 2.5,5,7.5,10,12.5.
I want to modify which values have a tick in order to ...
0
votes
0answers
2 views
Import Gradle project error
I downloaded the latest Android Studio (Mac), I got this error when I try to create a new project:
Failed to import Gradle project: could not fetch model of type IdeaProject using Gradle distribution ...
0
votes
0answers
3 views
Ipad whole page scrolling issue (Not display on browser)
i am using jquery mobile in my app .I make a page in which i have one header below that i have table view .Table view show scroll of height (ipad height -header height).I saw on browser (chrome)every ...
0
votes
0answers
2 views
Gwt debug mode error when changing source output folder
I want to change the standard gwt war output directory to my existing target directory ( it looks like by default it is src/main/webapp where i also have the sources). For that i changed the the ...
0
votes
0answers
3 views
How to use one or more nested iterate in struts 1.x?
How to use one or more nested iterate in struts 1.x ?
Explain with sample program.
I am new in struts1.3. So, please help me.
0
votes
0answers
5 views
Django replace objects in queryset in view before sending to template?
How to replace objects in queryset in view before sending to template in django? modules is queryset with objects
for i,module in enumerate(modules):
try:
if [...] :
...
0
votes
0answers
6 views
How to redirect page when i type it in browser?
How can i type in browser url example.com it can redirect to page example.com/project/home/index.php and in my url browser not change(still example.com).
0
votes
0answers
4 views
How to make wordpress theme resposive through CSS?
I have a wordpress theme already installed and want to convert it to responsive\fluid theme design. I researched alot and find out different ways, which are:
1. Using media quieries.
2. Change the px ...
-1
votes
0answers
8 views
What language should my team learn next? Ruby? Scala? Other?
I am a Technical lead and I have a dev team (3 devs) that has a lot of experience with Java and we have a web app of ~6kLOC we maintain and add to running in Sprint/Tomcat.
I'd like to introduce them ...
0
votes
0answers
3 views
Problems getting a bare metal ARM app to boot
I am trying to use LLVM to generate code for baremetal ARM Cortex M4 development.
The creation of the IR is going well and LLVM is generating (in my oppinion) correct ARM Thumb ASM.
I have purchased ...
0
votes
0answers
4 views
Git: Use git-merge-file to resolve conflicts using theirs/ours
I have don a git svn rebase and I got a conflict. I want to use git-merge-file to merge the two versions of the file by choosing the version on the server. git-merge-file has this option called ...
0
votes
0answers
13 views
make variables available inside function/class
var g = $('#go');
var z = $('#are');
I have variables i want to make available inside the y class to alertData and hideData.
What is the easiest way to do this?
var y = {
alertData: ...
0
votes
0answers
2 views
Creating DirectDraw Surface from scratch in c++
I'm trying to convert a 2d array to a DDS and saving it to a file. Array is full of Color structs (each having a red, green, blue and alpha component). Once I get the array to the correct format, I'm ...
0
votes
0answers
2 views
ObservableCollection exception when loading assembly from shared folder
I'm working on a .NET 4.0 Console application that compiles a set of classes into a DLL which is placed in a network shared folder and then loads it using Assembly.LoadFrom(<My network shared path ...