Hi,
This website http://www.elkaniho.com/ has a CSS layout which is what i want, you see, the divs stack on top of each other, not on a precise grid, but just at the bottom and on the side.
And when you re-size the browser, they all re-adjust perfectly?
anyone know how i can get the same layout like at elkaniho.com or what type of layout this is called?
Hello,
I need to access COM port (console) via script to access our DSL modem.
It should access in such a way that I can read all the messages printed on the console and i should also send commands to the console via script .
Please let me know if it is possible in TCL or php .
Platform : Windows XP.
Also is there any way I can access the com port through script and console software such as teraterm simultaneously ?
Regards,
Mithun
If I'm right, each request for http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.js
use something like 3 kb of microsoft.com cookies. I don't understand something and it doesn't matter or microsoft do it wrong?
Is there a jQuery plugin that mimics the Zazzle.com photo zoom effect (you can view the effect here: http://www.zazzle.com/awards+tshirts). The closest I've found is the jQZoom plugin which opens the larger image in a separate container, instead of overlaying within the same container.
I figured I'd ask, before I started building away on this...
I want to log some seemingly random errors I'm getting in a Delphi written COM DLL. How do I do this? Is it possible to use the Application.OnException event handler? I have control of the COM DLL source, but not the calling application.
Is there an easy way of programmatically checking if a serial COM port is already open/being used?
Normally I would use:
try
{
// open port
}
catch (Exception ex)
{
// handle the exception
}
However, I would like to programatically check so I can attempt to use another COM port or some such.
Hi, i am new to android development. I got an error when write the code "import com.google.android.maps.MapView; in eclipse. The error is "The import com.google can not be resolved."
Please anybody give suggestion to fix this problem.
For my resume, I am attempting to add a shortened link to the app that I created. I looked around and found that apple provides a link shortener for iOS apps using the AppStore.com URL.
Unfortunately, since my app contains the ² character, I cannot figure out how to link to my app.
The long link for my app is:
https://itunes.apple.com/us/app/squared2/id498133871?mt=8
Also, is there a way to link to an app without having iTunes automatically open (only show the iTunes preview page)?
Hello,
Im looking a way to create a text input that has content set as its value, but when selected cannot be change, only have a value added to it.
The perfect example is at tumblr.com the third input down shows a text input whos default value is ".tumblr.com" on focus you can add your subdomain to it.
Thanks!
A system has up to 100 VC++ projects, each spitting out a DLL or EXE. In addition there are many COM components with IDL and generated .h/.c files.
What's 'the right way' or at least a good way to organise this with Doxygen? One overall doxy project or one per project/solution? And what's the right way to handle COM, which has generated code and a lot of 'fluff' that will bloat generated HTML files.
There is some dot com domain someone has registed and pointed to 127.0.0.1. Something like myserver.com.
I saw this in an answer on a stackoverflow question - but the name of the domain has totally escaped me. Can anyone remember that domain name??
I used "Revo Uninstaller" to uninstall the spyware which left me with a problem using Internet Explorer so then downloaded the free version of "Hijack This" from the website and, not reading the Super User answer correctly, used fix for the general issues it found and saved the log file of the other queries.
NetAssistant is completely gone or appears to have - Malwarebytes Malware remover cannot find anything and most Google searches now seem to work correctly. However in removing it I seem to have made an error and now whenever I search for and try to open or try to directly access two sites which I had tried to access via NetAssistant whilst infected IE8 says they cannot be displayed. One of them is Wikipedia and I use both regularly.
I am not sure at what point this happened I think it may have been after using Revo Uninstaller and the second section where it looks for references to netassistant (in the registry?). Not sure if this is relevant but I can remember deleting some flags or something relating to Internet Explorer but not sure what.
Any suggestions?
I apologize if this is stupid question or not for this board... But I keep seeing acceptance rate on this forum. What is this and how is it calculated?
Is is possible to export existing wordpress post to windows live writer? I have to edit some post and I need to make use of the code snippet plugin that is only available on live writer.
There is actually a feature which allows me to do that. But it only allows 1 post at a time. And every time I go to this screen, it always fetches the blog post from wordpress again. Which makes it very slow.
What I need is something that will allow me to cache the posts retrieved to make it faster. Or something that will allow me to export wordpress post into live writer documents
I am using Sun VirtualBox v. 3.1.4 on WinXP. Host OS is also WinXP. In the Host Machine settings, Serial Ports, Port 1, I set:
Enable Serial Port
Port Number: COM1
Port Mode: Host Device
Port File/Path: COM1
In the Host OS Device Manager I don't see COM1 port. What is wromg?
Final Cut Server is a Java application (made by Apple) which launches from a web page. I have Nginx in front of this web server (amongst others) and, whilst the web server can be browsed externally, the Java app fails to launch correctly and throws the errors below. Can anyone offer clues as to what additional config I many have to add to Nginx to get this working?
My existing Nginx config:
user xxxx;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
# multi_accept on;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/conf/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
server {
server_name _;
return 444;
}
upstream fcs-site {
server 10.10.5.20:8080;
}
server {
listen 80;
server_name example.com 10.10.5.90;
access_log /var/log/nginx/fcs_access.log;
error_log /var/log/nginx/fcs_error.log;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 60s;
proxy_send_timeout 90s;
proxy_read_timeout 90s;
proxy_buffering off;
proxy_temp_file_write_size 64k;
proxy_pass http://fcs-site;
proxy_redirect off;
}
}
upstream myapp-site {
server 127.0.0.1:6543;
}
server {
listen 80;
server_name otherexample.com www.otherexample.com;
rewrite ^ https://$server_name$request_uri? permanent;
}
server {
listen 443;
ssl on;
ssl_certificate /etc/ssl/otherapp.crt;
ssl_certificate_key /etc/ssl/otherapp.key;
server_name otherexample.com www.otherexample.com;
access_log /var/log/nginx/otherapp_access.log;
error_log /var/log/nginx/other_error.log;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 60s;
proxy_send_timeout 90s;
proxy_read_timeout 90s;
proxy_buffering off;
proxy_temp_file_write_size 64k;
proxy_pass http://myapp-site;
proxy_redirect off;
}
location /static {
root /www;
expires 30d;
add_header Cache-Control public;
access_log off;
}
}
Java errors:
com.sun.deploy.net.FailedDownloadException: Unable to load resource:
http://example.com:8080/FinalCutServer/FinalCutServer_mac.jnlp at
com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source) at
com.sun.deploy.net.DownloadEngine._downloadCacheEntry(Unknown Source)
at
com.sun.deploy.cache.ResourceProviderImpl.getResourceCacheEntry(Unknown
Source) at
com.sun.deploy.cache.ResourceProviderImpl.getResourceCacheEntry(Unknown
Source) at
com.sun.deploy.cache.ResourceProviderImpl.getResource(Unknown Source)
at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source) at
com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) at
com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) at
com.sun.javaws.Launcher.launch(Unknown Source) at
com.sun.javaws.Main.launchApp(Unknown Source) at
com.sun.javaws.Main.continueInSecureThread(Unknown Source) at
com.sun.javaws.Main.access$000(Unknown Source) at
com.sun.javaws.Main$1.run(Unknown Source) at
java.lang.Thread.run(Thread.java:722)
java.net.ConnectException: Operation timed out at
java.net.PlainSocketImpl.socketConnect(Native Method) at
java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339)
at
java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200)
at
java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) at
java.net.Socket.connect(Socket.java:579) at
java.net.Socket.connect(Socket.java:528) at
sun.net.NetworkClient.doConnect(NetworkClient.java:180) at
sun.net.www.http.HttpClient.openServer(HttpClient.java:378) at
sun.net.www.http.HttpClient.openServer(HttpClient.java:473) at
sun.net.www.http.HttpClient.(HttpClient.java:203) at
sun.net.www.http.HttpClient.New(HttpClient.java:290) at
sun.net.www.http.HttpClient.New(HttpClient.java:306) at
sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:995)
at
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:931)
at
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:849)
at com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source) at
com.sun.deploy.net.BasicHttpRequest.doRequest(Unknown Source) at
com.sun.deploy.net.BasicHttpRequest.doGetRequest(Unknown Source) at
com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source) at
com.sun.deploy.net.DownloadEngine._downloadCacheEntry(Unknown Source)
at
com.sun.deploy.cache.ResourceProviderImpl.getResourceCacheEntry(Unknown
Source) at
com.sun.deploy.cache.ResourceProviderImpl.getResourceCacheEntry(Unknown
Source) at
com.sun.deploy.cache.ResourceProviderImpl.getResource(Unknown Source)
at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source) at
com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) at
com.sun.javaws.Launcher.prepareToLaunch(Unknown Source) at
com.sun.javaws.Launcher.launch(Unknown Source) at
com.sun.javaws.Main.launchApp(Unknown Source) at
com.sun.javaws.Main.continueInSecureThread(Unknown Source) at
com.sun.javaws.Main.access$000(Unknown Source) at
com.sun.javaws.Main$1.run(Unknown Source) at
java.lang.Thread.run(Thread.java:722)
We have different set of CNAMEs pointing to different subdomains. These subdomains (a.domain.com, b.domain.com) are pointing to different IPs on different machines.
# Server A
a1.domain.com pointing to a.domain.com
a2.domain.com pointing to a.domain.com
..
aN.domain.com pointing to a.domain.com
# Server B
b1.domain.com pointing to b.domain.com
b2.domain.com pointing to b.domain.com
..
bN.domain.com pointing to b.domain.com
Currently, we have to add individual CNAME entries (eg. a1... aN) against a single subdomain (a.dominan.com). We repeat the above process for every new server which is actually another subdomain (e.g. c.domain.com). Is there a way we can specify a range of CNAMEs (e.g. [a1..a25].domain.com point to a.domain.com) instead of adding separate CNAME etnries?
Is there any possibility to handle this at DNS or webserver (apache or Nginx) level?
Has anyone tried or used TheLiveVPN service?
I am interested in trying it out, but I would like to find out more about the speed and support of the service.
Has anyone tried or used TheLiveVPN service?
I am interested in trying it out, but I would like to find out more about the speed and support of the service.