All Questions
0
votes
0answers
2 views
Can't get my android app use facebook although after putting my hash keys
I have changed my eclipse to another version after a sever crash. Now I can't get my apps log to Facebook or post either a text or an image.
I know how to generate the debug.keystore hash key, and my ...
0
votes
0answers
4 views
Can't update data-attribute value - Jquery
Although there are some examples about this on the web, it does not seem to work correctly. I can't figure out the problem.
I have this simple html
<div id="foo" data-num="0"></ ...
0
votes
0answers
2 views
Plotting straight surface with lattice::wireframe()
Assume I want to plot the following dataframe:
df <- data.frame(expand.grid(1:10,1:10),rep(10,100))
colnames(df) <- c("x","y","z")
with the lattice wireframe() function:
...
0
votes
0answers
6 views
List<List> confusion
snippets of my code
List<List<optionsSort>> stocks = new List<List<optionsSort>>();
optionsSort tempStock1 = new optionsSort();
List<optionsSort> stock = new ...
0
votes
0answers
4 views
Examples of cellular automata that perform real-world tasks
I've been reading about one-dimensional cellular automata and am intrigued with the idea that they can solve real-world problems.
However, I have not found a single example.
I'm not talking about ...
0
votes
0answers
3 views
getWritableDatabase() error exception
Hi guys I have a problem with the method getWritableDatabase that throw me a exception.
This is the class that extends the SqliteHelper
public class bbdd extends SQLiteOpenHelper{
private ...
0
votes
0answers
3 views
Gerrit managed hosting
Is there a site that offers managed cloud hosting of Gerrit and Git? Obviously, there are tons of Git hosts online, but I haven't found a single one that offers code reviews via Gerrit.
I could host ...
0
votes
0answers
6 views
How to stop GIF at specific Frames in winfoms
basically my question is how to stop GIF at specific frame.
i have a picture box that is already set its image with GIF and i created a 2 events Enter and Leave
private void ...
0
votes
0answers
2 views
Troubles with knockoutjs binding
I'm new to knockoutjs, and my bindings are not working. Nothing is displayed.
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
0
votes
0answers
4 views
Meaning of open_fds field of fdtable
i'm trying to write a system call that close all files of a process.
Can anyone explain me what is the bitmap returned from
fd->open_fds[n]
where fd is a pointer to fdtable.
thanks
0
votes
0answers
2 views
problems with loading my first driver on my x64 system
I have been reading tutorials on creating drivers but never had the time, one evening I decided to create one for the fun of it(I am on Windows 8 x64 but my virtual machine is windows 8 x32 Developer ...
0
votes
0answers
3 views
MVC ActionLink issue
Im new to using MVC, so i thought i would give it a try.
I have a problem with my ActionLink:
foreach (var item in areaList)
{
using (Html.BeginForm())
{
<p>
...
0
votes
0answers
2 views
SQALchemy dynamic loaders warning on Many to many and many to one relationships
I have designed the following database for a web app I'm developing:
from app import db
course_categories = db.Table('course_categories',
db.Column('course_id', ...
0
votes
0answers
4 views
Socket IO not working on other machine
I have simple socket io code
-- Server
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
app.listen(8080);
function handler (req, ...
0
votes
0answers
4 views
How do I open a file in google drive using its api?
I'm trying to display a text file from google drive in a textarea.
From what I understand there is no direct way to do it; you have to download it using xhr request. I have tried the code that google ...