Programming :: Automate Periodical Activities In A Website (client Side)?

Jan 12, 2011

automate daily routines in a website. The things what I should do is to:

- log in
- click on HTML objects (I think I have to trigger the JavaScript onclick event)

Code:

<a href="http://www.xtremetop100.com/in.php?site=11111111" target="_blank" class="account_links">
<img src="/resource/bla/bla/vote/xtop100.gif" border="0"/>
</a>

(This is an image what I have to click on, after it I will receive a reward, then I have to wait 12 hours to benefit from it again.) My first idea was that to code it in C++, and I have searched the internet for the appropriate C++ headers, but I did not find any. So as you can see its not a concrete programming question, my main question is that, in what way could I do the above mentioned things.

View 4 Replies


ADVERTISEMENT

Programming :: Display On The Client Side One Name Only For Each

Jan 6, 2011

I have hundreds of thumbnail images and I need to display on the client side one name only for each when the visitor passes the mouse over them. The only way I know (using frames in this case) is to use a script similar to the following:

<a href="" target="" onMouseOver='top.nav3.location="not/notecome.htm"' onMouseOut='top.nav3.location="nav.htm"'>

But this involves creating a full and w3c correct HTML document which looks like an over-kill of the problem.

Is there a simpler way to solve the problem? If not, is it acceptable to use a truncated HTML document comprising only the necessary tags to make it work on the test machine (<html><body><.....onMouseOver.....></body><?html>

Or a way to display the content of the "alt" tag (I can put that name there)?

In the worst case, I could use the javascript "Alert" but it does not fit esthetically and it needs one mouse click from the visitor. Is it possible to make one's own "Alert" picture and how?

View 3 Replies View Related

Networking :: Changes On The Server Side Aren't Visible On The Client Side?

Jan 10, 2011

I'm using NFS and I have the following problem. After ~100 days, the client and server lose connection, but the client doesn't know about this, it gives no error. The problem is that the changes on the server side aren't visible on the client side.

The nfs options are: "noatime, nolock, hard, udp, notcp, nosuid, nodev, rsize=8192, wsize=8192, actimeo=60"

The kernel version is: 2.6.16.27 built with 250 Hz. Is this an already corrected issue in a kernel version? Or are my options wrong?

View 1 Replies View Related

Programming :: Implement Two Periodical Processes In C++?

Jul 28, 2010

I am doing real time programming in C++, under Linux. I have two processes, let me say A and B. A process is being started periodically, every 5ms. B process is being started every 10ms. The process A is doing data processing. The process B is reading that data and displays it. I am confused about how to run periodically processes. The problem is that the period of process A should be as much as it is possible accurate (5ms). For the process B it isn't so important. I have created independent processes, each in one .cpp file, and I am starting them from bash file. Is that OK? I don't have to make child processes in order to have parallel processes?

View 1 Replies View Related

Ubuntu Servers :: Script To Automate Website Interaction?

Mar 21, 2010

Here is what I have. Everyday I go to 8 websites that require entry of a username and password. When I've logged in, I select exactly the same info using the sites navigation and specify a report generated by the site. I then tell the site to save as an excel file and save it as an existing spreadsheet, 8 times for eight different files

How can I make this more direct? Can a script be written that provides username and password, selects the parameters I want, saves the spreadsheet and goes to the next site to repeat the process and save under a different name?

This would be used in a Windows XP/IE 7/corporate environment.

View 7 Replies View Related

General :: Monitor PXE Client Activities From The PXE Server?

Jul 21, 2010

utility / options available to monitor PXE client activities from the PXE server? I am using RHEL 5.0 PXE server.

View 1 Replies View Related

Programming :: Client Side To Include HTML Within HTML?

Sep 12, 2009

what is the best way (i.e standard way that is supported on all browsers and probably as well followed by web crawlers).... to include an html file either locally or externally in another ? Of course , i've done the research and i also know that there are server side includes (php , asp ...you name it) at the moment , i'm using this:

Quote:

<script type="text/javascript" src="path to file/include-file.js"> </script>

however, i've been warned that this method may not show up in some browsers as some tend to ignore this tag and that crawlers like your favorite search engine wouldn't bother reading this. so , what is the best and safest way to do the job? and btw , the reason why i've ousted SSI's from the start is because of among other things:

1) the fact that the included file is static html and because the text is included pretty much everywhere

2) hoping to reduce load time as the code (if successfully recognized) would hopefully be treated like any other embedded external file (e.x like an image) , therefore it would be cached without the need to downloaded it over and over again for each new page on the site.

View 1 Replies View Related

Networking :: Possible To Get The Available Bandwidth Run App In Client Side

Nov 26, 2010

Calculating the available bandwidth methods IGI/PTR,PATHLOAD,SLOPS,PACKET PAIR...

I gone through above methodogies ,when i finish one methods(IGI/PTR) i came to know,one application should run in client side and another application should run in server side (i.e,) Internet Service Provider side,

In IGI/PTR method ./ptr-client.c & ./ptr-server.c is there .,if we want available bandwidth,I Should run ./ptr-client.c (in myside)correspondingly ./ptr-server.c then only we wil get a availble bandwidth...

My need is without run any application on the server side ./ptr-server.c like that,but I should develop the application only on client side (in my routerside based on linux)..

1:whether it is possible to get the available bandwidth run application in client side only?.if possible. how i implement the code in client side( only )for getting the available bandwidth ...whether any source code is available?...

I dont want to test the speedtest.in (in GUI )

View 1 Replies View Related

Networking :: Manipulate An URL On The Client Side?

Nov 23, 2010

i'm unable to see some musicvideos on videos in germany trough copyright restrictions. i can see these videos by using a tunnelservice, but it isn't very comfortable.
in that case, i have to copy the url and paste it at the end of the tunnelservice url. a lot of stupid work.

my problem is, that i haven't enough experience to automate these actions.

i think, that i have to modify the url befor it goes to the server. there must be somewhere in the osi stack a place where i simply can modify that url with a regex but i don't know where

View 4 Replies View Related

Programming :: Java Applets - Timed - Repeating Activities

Jan 14, 2010

So, when I program my Java applet I am expected to use an event based model, where I run functions in response to mouse clicks and so forth, and I am supposed to return quickly so that the applet can continue looping. But what if I want certain functions to run by themselves on a regular schedule (like every 200 ms or so) without blocking mouse events, repaints, and so forth?

I looked at the source code of one Java applet I found, and it accomplished this by creating extra threads. I was wondering if creating extra threads was the only way to accomplish that, or if there was some more proper way to do it built into the Applet somehow.

View 1 Replies View Related

Fedora Networking :: Possible To Get The Available Bandwidth Run App In Client Side?

Nov 26, 2010

Calculating the available bandwidth methods IGI/PTR,PATHLOAD,SLOPS,PACKET PAIR...I gone through above methodogies ,when i finish one methods(IGI/PTR) i came to know,one application should run in client side and another application should run in server side (i.e,) Internet Service Provider side,In IGI/PTR method ./ptr-client.c & ./ptr-server.c is there .,if we want available bandwidth,I Should run ./ptr-client.c (in myside)correspondingly ./ptr-server.c then only we wil get a availble bandwidth...My need is without run any application on the server side ./ptr-server.c like that,but I should develop the application only on client side (in my routerside based on linux).. 1:whether it is possible to get the available bandwidth run application in client side only?.if possiblehow i implement the code in client side( only )for getting the available bandwidth ...whether any source code is available?

View 2 Replies View Related

Ubuntu Networking :: How To Set Up Client Side Of SAMBA

May 26, 2010

I would like to be able to mount a share served by my mac os X machine(10.6.1). I have read the Ubuntu community doc on Ubuntu samba clients.It didn't say what to do when using dynamic LAN I.Ps.I understand the way to go is to use avahi on the client side(Ubuntu) and Bonjour on the server side(mac os 10.6.1).I can't find anything about how this is done.What do i need to do to set up the client side(Ubuntu) to use avahi with SAMBA?.Because in the Ubuntu community doc it just referenced /etc/hosts, which is for static I.Ps.So i'm assuming that SAMBA on Ubuntu doesn't use avahi by default.All i need to know is how to set up the client side of SAMBA on Ubuntu when i'm using dynamic LAN I.Ps.

View 5 Replies View Related

CentOS 5 Server :: NIS Not Working On The Client-side?

Dec 3, 2008

I recently got a new server. I installed CentOS 5.2. Here's some more info:

[root@thalamus etc]$ uname -a
Linux thalamus.tch.harvard.edu 2.6.18-92.el5 #1 SMP Tue Jun 10 18:51:06 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux

View 13 Replies View Related

Programming :: Automate Configuration Over RS-232?

Oct 18, 2010

Is it possible to make a script, which reads commands from a file one line after another, logs into a network device over a console connection(RS-232) and executes those commands wile sleeping 1s after each line? I have used minicom in order to connect over console line, but minicom is not scriptable as far as I know. There is a macro option, but this configuration file is almost 2000 lines long. Is such script possible at all?

View 7 Replies View Related

Networking :: Login Multiple Client Pc On Using Via Openvpn Server From That Side?

Nov 24, 2010

How to login multiple client pc on the same network using via openvpn server from client side

View 1 Replies View Related

Programming :: Automate A Path Manipulation?

Jul 30, 2010

I want to share file locations with pc users (i'm a mac user). problem is: mac uses fslash, while pc files are indicated with baskslashes. I'm looking for a automation/plugin/shortcut/... to change them quick. I use paths a lot and share them with pc users, so manually it's to time consuming.

View 2 Replies View Related

Fedora Servers :: LDAP Authentication Of Unregistered User At Client Side?

Sep 2, 2011

I have a openldap server running on one machine (fedora10) and pam_ldap.so and nss_ldap.so running on the other machine.

I have added a new user to the LDAP server database, this user is not created on client machine.

1. Can i login to the client machine using this new user?

2. Now if i try logging with this new user I am getting error messages, the error messages are as follows at client side

Sep 2 10:34:36 localhost sshd[8484]: Invalid user kim from 10.254.194.148
Sep 2 10:34:36 localhost sshd[8485]: input_userauth_request: invalid user kim
Sep 2 10:35:16 localhost sshd[8484]: pam_ldap: error trying to bind as user "cn=min soo,ou=people,dc=samsung,dc=com" (Invalid credentials)

[Code]....

View 4 Replies View Related

Ubuntu Servers :: Serial Ports On Client Side Ltsp Setup?

Dec 12, 2010

I have recently installed an ltsp system, client and server. Everything works except i cannot get my client side serial ports to work or register for that matter. Can anyone point me to the steps i should take to get these working.

View 1 Replies View Related

Networking :: OpenVPN - Can't Ping From Server To Client Side Hosts / Make It Possible?

Mar 20, 2009

Code...

What I can ping
Host A -> Host B
Host B -> Host A

Host A -> Router B
Host B -> Router A

Host A -> OpenVPN B
Host B -> OpenVPN A

VPN Server -> VPN Client
VPN Client -> VPN Server

What I can't ping
VPN Server to any client side host local address
VPN Client to any server side host local address

I have searched and searched for this but can not find any answers. Why can I not ping Host B from my OpenVPN server?

View 1 Replies View Related

General :: Backup / Setup A Second VPN Tunnel On A Fallback Gateway / Firewall On The Client Side

Mar 1, 2011

I've set up a Lan-to-Lan (routed) OpenVPN tunnel. For redundancy I want to set up a second VPN tunnel on a fallback gateway/firewall on the client side. Currently, both sides (server/client) know how to route packets across each others physical LAN. So no NAT is used. When the primary gateway (fw1) is connected to the VPN server all traffic runs via the fw1 tunnel. Than when the secondary gateway (fw2) connects to the VPN server and fw1 is still connected all traffic for fw1 will be delivered to fw2 and effectively destroying traffic intended for fw1. This is of course no problem if I first shutdown (fence) fw1, than set up fw2 to use the gateway IP address from fw1 and set up the VPN tunnel to the VPN server. Effectively replacing fw1 with fw2 on the client side.
However, I can't seem to find a decent howto.

I am also exploring the possibility to let both tunnels active and let OpenVPN (or another tool) decide how to route packets back and forth the different LANs. A virtual IP between two gateway's both running a VPN or something similar. This would be the preferred method of course. However, I don't know how to tackle this one but I'm pretty sure there are people out there who are happy to share their 2 cents.

View 3 Replies View Related

Debian Programming :: Automate Command Line At Start-up

Jan 26, 2015

I'm trying to automate two command lines, a synclient and a syndaemon. They both work well if I type them manually in a terminal, but if I do a littre script to do this, tap to click and scrolling don't work anymore.

This is the script I wrote:
Code: Select all#!/bin/bash
synclient VertEdgeScroll=1
syndaemon -d -t -K
exit 0

So I made a chmod +x on the file, placed it in ~/bin then change PATH to include the directory. Then I added this file in "Startup applications".

The scripts run ok, mais it has a different effect than if I run the commands manually.

View 10 Replies View Related

Programming :: Automate Copy And Paste Of Files From The Internet?

Jul 28, 2010

Here is what I currently do and want to automate:

1) I manually enter a particular web site address in the browser.

2) When the page displays on my machine, it shows a number of links I need to visit, one after the other.

3) Each of these links display another page (file) from which I "cut and paste" information. I do this by highlighting manually the wanted info, click "copy" then select an open file on my computer, select "undo" if necessary to remove any previous content, click "paste" and then "save".

4) I then call a Yabasic program that reads the saved file and trims unwanted info.

5) At the completion of the Yabasic program, I click the web page tag, click the "back" button to return to the first page (since I am in the second) and click the next link in this first page till all links have been visited.

6) visit the next known web site and repeat 1 to 5

In an automated program, what I need to do is:

1) Visit the known page of the web site showing the links
2) save the page showing the links (the first page)
3) make a list of those links
4) visit each link one after the other and save its page from which I will programmatically (Yabasic) select info.
5) repeat 1 to 4

I can do this in "Yabasic" (which can issue Linux commands) or PHP although I do not know PHP much.the purpose of this is to associate towns and cities of the world with their respective political/geographical divisions and their respective time zone. This has to be done often because that data changes regularly.

View 3 Replies View Related

Programming :: Automate The Password Prompt Required For Sudo Commands?

May 31, 2011

I have written a script to run commands on remote servers, it is working fine. But when I am running "sudo commands" on the remote servers, it asks for me password after prompting for ssh password. I am unable to automate this password prompt (which is just after ssh password prompt). This is the function I am using to provide passwords

Code:

pass ()
{
cd $DIR/"$dt1"_"$dt"
/usr/bin/perl << 'EOF'
use strict;

[code]....

I want the same function to be used , when it expects for sudo passwords for any of the below lines:

Code:

[sudo] password for vikas: orPassword: This is my "cmd" file passed in pass () function.

Code:

ssh -t -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no 192.168.1.100 "bash rcmds"

This is my script output

Quote:

[vikas@box1 ~]$ ./rscript.sh
++ rm -rf /home/vikas/May_31
++ mkdir -p /home/vikas/May_31
++ set +x

[code]....

how to automate the password prompt required for sudo commands.

View 8 Replies View Related

Ubuntu :: Periodical Hangs With USB Install?

Jan 8, 2010

I've recently installed Ubuntu to my USB stick (Installed from CD so not Live Persistent). But it hangs every few seconds, I think this is because of the low read/write speed of the usb stick. However when using the Live version booting/shutting down takes a long while, I basically need it to be able to boot fast, run fast, and shutdown fast.

View 7 Replies View Related

Programming :: Detect A Closed Tcp Client Connection When Client Is Only Receiving Data ?

Mar 9, 2011

I am writing a TCP server in C, and the server listens to incoming client connections and accepts them. It then creates a thread to handle the client. The clients are expected to only receive data from my server and not send any data. So if I use a select() call with a recv(), I believe that the recv() will just block forever since there will not be any data coming from the client. If I use a non-blocking recv(), then this will just return a 0 which tells me nothing because the client is not expected to send any data. I am not sure if I have misunderstood some socket concepts, but I need a solution to detect when the client has disconnected so that I can close the socket and stop sending data to the client. As I understand it, simple ACKs etc are not captured by the recv(), and only data sent by the client will cause recv() to return a non-zero value, so I am not sure how to know when the client has disconnected.

View 7 Replies View Related

Software :: 10.04 - Couldn't Open Localsound Device Error 2 Client Side Error: Could Not Set Up A Stream

Jul 18, 2010

I just installed say with

Code:
sudo apt-get install epos
and everything went fine, until I tried to use it.
When i do
Code:
say hello
it gives me
Quote:
he~lo######~T

Could not open localsound device, error 2 Client side error: Could not set up a stream

View 6 Replies View Related

Server :: Insert "show Interface Status" Output To A Client Side Webpage?

Nov 16, 2010

I need to show an output of the command "show interface status" executed on a server side in new window on client side. In other words: on client side web browser page I would like to have a link which I can click and get output of command "show interface ... status" in a new window. On web server script has to connect to switch/router, execute this command and send output to client window.

where to look, and, may be explain, what can be better for this purpose? I need a clue, because I have newer done it before. It should not be snmp, because I want to view many different outputs and snmp wont help me.

View 2 Replies View Related

CentOS 5 Networking :: Config Proxy Client Side For CentOS 5

Oct 4, 2010

I've tried to read many of the topics in this forum first and tried to find a solution to my problem, but can't find one.I'm testing CentOS 5.5, it's the first time I'm using a CentOS Linux release.I'm trying to configure the proxy "client side " on it and cannot find how to do it.On other Linux release I've used the ENV variable like "http_proxy" or "HTTP_PROXY" etc etc.This time, I don't know why but it doesn't work.I've put the name and @ip of the proxy in /etc/hosts and tried different version upper/lowercase of "http_proxy" "HTTP_proxy" "ftp_pr.." but it doesn't work.If I configure manually Firefox and puting the name or @ip of the proxy we have on our network, it works.But if I try to use ENV variable it doesn't work...

View 1 Replies View Related

General :: Grep Regular Expression To Find Any Two Capital Letters Side By Side?

Jan 8, 2011

How would I use a unix grep regular expression to find any two capital letters side by side and how would I find an expected comma in an expected spot?

View 2 Replies View Related

General :: Ubuntu - Play Two Or More Videos Side By Side In A Synchronized Fashion

May 10, 2010

I have two (or more) video files that I want to play side by side. I could do that simply by opening them in two seperate windows, but that would also seperate all the controls (play/pause/forward/...). I want to play them in a synchronized fashion so that pause/forwarding/... works on both videos simultaneously so that they always stay at the same timecode and they don't go out of sync. How would I accomplish that in Linux?

This is needed for viewing only, so compositing them into a new video file first should be avoided if possible, but if there isn't an easy way to do that, I welcome answers doing it with composition as well.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved