All Questions
0
votes
0answers
1 views
OpenGL Render Locally and view over SSH
I need to render an OpenGL screen and pass the render across SSH. GLX Commands will not work as the remote machine does not have the necessary extensions.
Without root access to the remote machine, ...
0
votes
0answers
2 views
Is there a way to determine which class is extending the current module?
Say I have this class:
#outter.rb
class OutterClass
extend MyModule
def self.foo
puts foo
end
end
Then
#mymodule.rb
module MyModule
class InnerClass
def self.foo
...
0
votes
0answers
3 views
Android Java: Fragments returning null view in onCreateView()
I am currently working on a program that uses an MVC design pattern and fragments in android java. I have figured out one of my fragments and gotten it working but when I copied the other fragments to ...
0
votes
0answers
6 views
Why aren't my scripts (that are correctly linked) not working?
My custom JQuery file as well as Masonry Jquery are linked but not working.You can see that it links correctly in the source file: ...
0
votes
0answers
3 views
trying to modify my personal twitter feed to remove tweets containing links from the feed
Is there a way to create a twitter feed that does not include tweets that have links in them? Not sure what UI I could use for this...maybe make a feed for hootsuite.
I already port tweets with link ...
0
votes
0answers
2 views
blastdbcmd - Too many positional arguments <1>, the offending value: %f
I'm trying to use blastdbcmd - when I type the following on cmd
blastdbcmd -db databaseBLAST -entry_batch -outfmt "%f" -out test_query.txt
the following error pops up:
Error: Too many positional ...
0
votes
0answers
2 views
wkhtmltopdf Custom header and footers with ASP.NET MVC
Anyone able to use wkhtmltopdf custom header and footer with their ASP.NET MVC? I need your help. I see that wkhtmltopdf is updated and supports some new functionality (as of v0.10.0) for header and ...
0
votes
0answers
7 views
Is Sending User Credentials through HTTP Headers is a secured way of Communication with outside server
Hi I am trying to send User Credentials from header to a third party application. Is this a secure way of sending the credentials.
0
votes
1answer
7 views
Call to undefined function php
Why do I get this error when the function is defined?
PHP Fatal error: Call to undefined function createCsv() in C:\csv\xml.php on li
ne 14
PHP Stack trace:
PHP 1. {main}() C:\csv\xml.php:0
...
0
votes
0answers
10 views
Is it Possible checkbox won't check if there a value in row from database?
Is it Possible checkbox won't check if there a value in row from database?
This is my Example Table
item_name | PR | checkbox |
ballpen | pr100 | □ |
pencil | pr111 | □ ...
0
votes
0answers
2 views
How to Search and Retrieve Image/Picture that was converted into bytes and saved in local database
I have a program here that saves an image in a local database with an Image data type in visual studio 2010 using a these codes:
private void button10_Click(object sender, EventArgs e)
{
...
0
votes
0answers
2 views
Vb.net and Crystal Reports adding groups and subreport
I have two tables, tblCI and tblCICheck
here is the link for the data on the table
tblCI and tblCICheck
and this is the output for my crystal report
Current Xtal Output
What I wanted:
Desired ...
0
votes
0answers
3 views
How to pass a file as a parameter of a procedure
I am trying to write a sub procedure to read from a "grocery.txt" file. The format is as follow:
12 7.2 Orange
The first column is an integer, the second is a float. The third one is a String till ...
0
votes
0answers
2 views
Need to add image after textfield - extjs
I need to add a image after a textfield in a form without using fieldcontainer or fieldset. I need to add the similar image in all form fields which makes more complex code.
-1
votes
0answers
16 views
How to implement init method in C
So I wrote the following header file VariableVector.h:
#define VECTOR_INITIAL_CAPACITY 20
struct _Variable {
char *variableName;
char *arrayOfElements;
int32_t address;
};
typedef struct ...