web-development

Save and Extract html page on Android

Two issues with my Android programming, require some guideline The way to save any visited webpage as html source file, then The way to extract some useful text from those saved html source files If these are possible, where should I get start for them Thank you in advance ..... ...

VoIP in Python then http

Hello there i wanted to know if it was possible to make a voip script in python and then if it works integrate it online on my web site thanks a bunch ...

Allowing users to create pages

I would like to allow users to create pages on my site. Not full pages, but just content for the default template. I am currently using http://ckeditor.com/ then saving the content into a database. Is this the best way to go about doing this? ...

innerText shim for Firefox

in google chrome innerText seems to return the text of the element that the user see which is exactly what i need. so i need a shim of innerText for Firefox. for example: <div id='1'><br> f<div style='display:none'>no</div>oo   bar</div> <script> function test(){ return document.getElementById('1').innerText } </script> the funct...

customer web site admin tool

How do you create your web site data admin for your customers. Do you do them programatically or do you use any specific tool? I have been using AspMaker and is not a bad option but I'm sure there are a few more options out there. I've seen that MS has a Web Data Administrator but for me it looks more than an sql server web admin tool r...

in-browser real-time audio input options?

Are there any? I'm looking for some way to plug in a microphone to a computer and access the stream in real time to do analysis and visualization for display and interaction in-browser (preferably cross-browser). Any recommendations or pointers toward toolkits or examples would be appreciated-- Thanks! ...

CSS: How to limit text shown with using "..."

Possible Duplicates: Is it possible to implement the effect of overflow:ellipsis with javascript or css? How do I indicate long text into a smaller fixed column with CSS? I want to trim text if it's greater than 300px wide with "..." For example, if I had: <ul> <li>this is greater than 300px, than only display as much of t...

Know If a user has visited your site from a Blackberry

I found this piece of code that can detect if a user has already visited your web page by injecting a hidden link into the DOM and checking if the color of it is the same as the one for visited links. function hasLinkBeenVisited(url) { var link = document.createElement('a'); link.href = url; document....

Hosted social networking platform with rich API?

I'm looking for a hosted social networking platform which provides an API for: user and group management (create/delete accounts, edit group membership) single sign-on and event notification (pull/push messages) So far I've looked at Ning (no user management or SSO) and SocialGO (seems to do all I need, but the documentation is fr...

CSS padding and font issue.

I am having an issue with font settings and padding in CSS, I am a visual person and I bet you are one too, so here's my problem: http://imgur.com/Wh441.png if you can solve it I will give you an upvote :O ...

What are good resources for learning about the web back-end?

There seems to be a very large deficit of information out there when it comes to web programming. All the resources I can find try are based on teaching you the front-end (HTML/CSS/scripting) in a specific language, but they don't go deep when explaining what is happening on the back-end. Know any good resources? For example, the replie...

PHP: How to decrement a string function by 1?

I'm using PHP to access an external API. When a call a particular API method, it returns a number one higher than I want to display. However, the API is returning the integer as a string and not an integer. Question: How can I decrement the returned string by 1 since it's not an integer Essentially, I want to do the follow pseudo-cod...

cakephp 1.3: displaying row id instead of row value, please help

Hello guys, I am using cakephp 1.3, I am having a small issue,please help I have 2 tables in my database Profiles and qualifications, Profiles belongs to qualifications and qualifications has many profiles. qualification display_field is set to 'qualification', I used cake bake all for creating CRUD, when I try to add profile I get the...

Bookmarklet - Works in every browser but Chrome (for Mac).

Chrome for Mac won't let me add (drag) the bookmarklet into the bookmarks bar. It works in every other browser, however. Why might this be? And how could I fix it? ...

CSS: Vertical-Align text?

I am using the following HTML: <p><a href="http://www.example.com/"&gt;&amp;larr; Back</a></p> To create the following: Back Problem is, the left arrow is not vertically aligned in the middle. It appears to be at the lower 3rd. Question: how do I get the left arrow to be aligned vertically in the middle (of the letter "B") using C...

Mercurial HG Archive subdirectory for web deployment

I've got a Mercurial repository that contains a subdirectory for design files and a sub directory for code files. What's the best way for me to deploy the code subdirectories on my server, keeping it secure, without deploying the design files? ...

file upload in cakephp

Hello How can I upload a file using cakephp ? is there any framework support for file uploading or should I write my own code for this ? Thank you ...

money in sql (mssm)

I want to delete the third zero after the point in MSSM ...

How to enable direct printing capabilities for web based application ?

Hi, I'm developing a web application where user require to print a particular form with a single click. Based on my findings I understand that we need to create a printable version of the form and then send it to the printer. But still I could not find out a way to send such printable version of the form directly to printer without di...

Set download path

I have a web application that receives a simple text file, but I need this file to be downloaded to a specific path. Meaning, when the application receives a text file, it will always be downloaded to a specific folder (for example, to C:\MyFolder). If it isn't possible, then I need to copy the file from where user has chosen to my fold...