All Questions
0
votes
0answers
2 views
ul li width doesn't span across the whole page width
I've been trying to figure out why my sub-menu is not full width. Screenshot of the problem
The link to my page is: http://site.demo4site.com/coffee/inner.html
In responsive mode you can see that ...
0
votes
0answers
5 views
jQuery script not working on html appended from another page
I've already referred to these answers but that doesn't solve:
jQuery on button click not working after append
Jquery click event not working after append method
I want to load the html for click ...
0
votes
0answers
2 views
Jade/Pug - appending to a class name
Hello I have a unique id in an object and I want to append it to a class name. I am trying to do something like the following but it isn't working:
myJadeFile:
.googleChartContainer-#{...
0
votes
0answers
5 views
Using a function with a void pointer argument
I'm a C beginner experimenting with linked lists and I found a Github repo for one. the create function is written like this:
Node* ListCreate(void* data) {
Node *head = malloc(sizeof(Node));
...
0
votes
0answers
4 views
interpolate irregular x,y data points into regular grid for contour mapping
I am a Geologist needing to create few hundred consistent contour maps in a project with varying x y z data sets.
Contouring irregular x y z data points involves creation of a 'grid' of interpolated (...
0
votes
0answers
2 views
JS acceleration and deceleration. HALP
I'm eleven, and new to JS, and I'm making a simple level based platformer for a game-making comp at my school.
When the user holds the right arrow key the character starts gradually moving right, and ...
0
votes
0answers
2 views
Trying to download azure blob to byte array?
This what I have so far but it is not working. Any help would be appreciated. Thanks.
Stream saveStr = new MemoryStream();
await blob.DownloadToStreamAsync(saveStr);
saveStr.Position = 0;
...
0
votes
0answers
2 views
Remove Content-Length and Transfer-Encoding Headers from spring servlet HTTP Response
I want to know if there is a way of removing those headers from my current response. I am using the @ResponseBody annotation and already have tried using a Filter to try to not add those headers, ...
0
votes
0answers
2 views
How to develop secured encrypted data NoteBook in NativeScript?
I would like to develop a secured encrypted data NoteBook with password Lock.
Like this NoteBook Page
My Aim is to release Ad-Free app with free.
I eager to develop using Nativscript.
Can you ...
0
votes
0answers
2 views
Sitecore MVC, Controller accessing item fields without creating a model
Is there a way to access a sitecore item field without creating a model? So that I can build a more dynamic template.
0
votes
0answers
4 views
Translating multi-byte characters into 7-bit ASCII in Python
I'm downloading and parsing a web page via a Python script. I need it
to be encoded into 7-bit ASCII for further processing. I am using the
requests library (http://docs.python-requests.org/en/master/)...
0
votes
0answers
3 views
Display Chosen Image from modal
Hello Guys i have a problem , I design a page that allow admin to choose a teacher so the procedure to choose teacher as it following :
admin choose teacher from a button called choose teacher so ...
0
votes
0answers
2 views
Creating a new database with DataGrip
Wanted to create a PostGreSQL database with data grip. Please describe step by step what i need to do. The Jetbrains tutorial is awful. Do i need to go to the PostGreSQL site and download and install ...
0
votes
0answers
3 views
How to access process.argv with budo in “scripts” “start” in package.json?
I have the following script:
#!/usr/bin/env node
console.log('hello world :)');
console.log(process.argv);
on the cli:
$ node index.js some args
hello world :)
[ '/Users/max/.nvm/versions/node/v6....
0
votes
0answers
6 views
system() command not working C++ linux
I'm writing a program in C++ as a GUI to the dvd drives in linux. To enumerate the drives I used the following code:
std::string filnam = "donotdelete.dlt";
std::stringstream cmd;
cmd << "> "...