All Questions
0
votes
0answers
2 views
cycle2 multiple slideshows on dropdown
I have a number of slideshows and these are selected based on the users dropdown selection (theres always a default one on show).
I have it set up so when they change the slideshow selection, it ...
0
votes
0answers
8 views
Ajax not reaching 'success' for login form
The success part of the ajax function is never reached. I've spent hours on it, still no success. The code has been stripped of virtually everything necessary just to try and remove any possible ...
0
votes
0answers
2 views
Symfony adds % symbols to my variables in place of square brackets
I am currently experiencing a weird problem. I am creating a variable from the url from the current page.
{% set var = app.request.url %}
And this works on another page. The generated url is also ...
0
votes
0answers
5 views
Enum with Hex value basic arithmetic
Say we have an enum as:
public enum SomeEnum
{
None = 0x0000,
Value1 = 0x0001,
Value2 = 0x0002,
Value3 = 0x0200
Defautl = Value1 | Value2
SomeOtherDefault = ...
0
votes
0answers
3 views
Is it possible to add a header to a generated PDF?
I have an image I would like to use as a header for a PDF that I am generating using the code below. Is it possible to do this? Thanks!
Dim Doc1 As New Document
Dim path As String = "" + ...
0
votes
0answers
4 views
IOS flicker bug when the css overview:scroll is changed to overflow:hidden
I'm building an app via phonegap and i want to disable the scroll of the div in the background when i swipe a menu up from the bottom of the screen;
By changing overflow from scroll to hidden why ...
0
votes
0answers
5 views
Extracting ip address from mysql query list using python
I would like to extract an ip address from mysql using python.
here is my code,
cnx = mysql.connector.connect(host=mysql_localhost, user=user, password=password, database=database)
cursor = ...
0
votes
0answers
8 views
What is the most compatible javascript time format for Date object
I have a time stamp in ISO 8601 I pass it to Date JavaScript object as a string and JavaScript instantiate an object from it that holds the specified date and time. This works on Google Chrome and I ...
0
votes
0answers
2 views
how to start rabbitmq cluster with IP addresses and no DNS entry?
I am trying to create a rabbitmq cluster but the nodes have no entry on DNS. Though I have added respective entries on /etc/hosts but every time it fails with below error.
$ rabbitmqctl join_cluster ...
0
votes
0answers
6 views
Movie Player Did Finish Notification is not fire in iOS SDK
I played the movie but can't able to called the method when the movie is finished.
My code is as follow:
MPMoviePlayerViewController *pv=[[MPMoviePlayerViewController alloc]initWithContentURL:[NSURL ...
0
votes
0answers
5 views
Peak into local network messages on set ports (using C#RMI)
I have a question about C# message sending. I am using RMI in c# which is working on local network on a set port (windows service and windows form communication). I do not encrypt the messages between ...
0
votes
0answers
7 views
PHP: Loading a html template from a .txt file and replacing the tag before sending an Email
I'm currently creating a nice contact form on my website and I'm having some issues getting a html template to work.
The template itself is a .txt file containing validated HTML. Within this html is ...
0
votes
0answers
3 views
Remote ssh to a server using encrypted password instead of ssh keys
As the title suggests, is it possible to ssh from one unix box to another by storing an encrypted password somehwere in the local machine?
For example.
[My Machine] ----> [Remote Machine]
...
0
votes
0answers
4 views
Virtual COM port strange behaviour on XP
I've been developing a C# app which communicates with a PIC18F4550 through USB virtual COM port. The app works fine on a windows7 64 bit PC, where I programmed it, however it ...
0
votes
0answers
7 views
What does cvPyrSegmentation give me?
I know this is a broad question and I have Googled, read up in OpenCV as well but....
I know how to use cvPyrSegmentation but what I would like explained to me is WHY would you use it? What is it ...