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 .....
...
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
...
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?
...
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...
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...
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!
...
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...
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....
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...
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
...
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...
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...
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...
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?
...
I am using the following HTML:
<p><a href="http://www.example.com/">&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...
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?
...
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
...
I want to delete the third zero after the point in MSSM
...
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...
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...