Recent posts by Aquilax

Subscribe to Recent posts by Aquilax 275 posts found

13 hours ago
Aquilax 275 posts

Topic: Script development / File Hosting

Somebody has some experience/feedback with these sites:
free file hosting

 
Aug 27, 2008
Aquilax 275 posts

Topic: Script development / Trouble with multiple XMLHttpRequests in a script.

You need to create a new xmlhttprequest, a new object, for each new request.

 
Aug 27, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Gmail: using a different server?

@lucideer
In some countries if you offer a email service/account you are forced to have the emails on your servers, obviously google doesn't give its gmail interface for free, but the emails are not hosted by google. I know two companies that use the gmail interface with their server, but as I said I don't really know how it works.

 
Aug 26, 2008
Aquilax 275 posts

Topic: Script development / countdown

As soon as you can see the source code you have an open source program, so it's quite impossible to do a script that isn't open source, at most you can obfuscate it. Obviously you can license an open source program in different ways.

 
Aug 26, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Gmail: using a different server?

In a word: no. I don't know how it really works, but I know that some companies use the gmail interface with their mail server. Look at the bottom of the gmail start page, there is a link Gmail for Organizations

 
Aug 25, 2008
Aquilax 275 posts

Topic: Userscripts.org discussion / Spam and malware

Help!!! This forum is drowning in the spam!!!

 
Aug 23, 2008
Aquilax 275 posts

Topic: Script development / Need help pls for Linux Script

Sorry but you are in the wrong place, this is not a place for unix shell scripts. Moreover if you want to learn something you have to try to solve the problems yourself.

 
Aug 23, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Need help with script - average calcs

When you are on the page press ctrl-u or from the menu-->View-->Page Source.
When you have the source you can post it there or if you have an homepage you can put it there.
Without source code is impossible to write a script.

 
Aug 23, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Timezone script..

Have you tried to use the Date object of javascript, it can parse also strings

javascript Date object

 
Aug 23, 2008
Aquilax 275 posts

Topic: Userscripts.org discussion / Spam vs. Topics 616:85

I can't believe it, a spam topic has more "viewed" as a normal topic:

In 7 hours:
[deleted porn topic] viewed 616 times
[deleted porn topic] viewed 318 times

In 12 hours:
Script Categories? viewed 85 times

Is it a bug? Or what is happening?

 
Aug 22, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Need help with script - average calcs

Hey, how much do you know about users scripts? I think you have no idea but them! Look at the other requests, they post url and html code, you have posted a picture. If you want some help you need to give something more concrete.

 
Aug 22, 2008
Aquilax 275 posts

Topic: Script development / Loading external XML file

1 Yes

2 There is no limit to the files that you can download with a script, and you can write all the complex algorithms that you want. But javascript is neither Java nor C++, it posses a very few instructions and objects, and for various security reasons it has some restrictions.

 
Aug 22, 2008
Aquilax 275 posts

Topic: Script development / Loading external XML file

Your text is quite confused, do you use an automatic translator?
If you can Java and C++ you shouldn't have any problem to understand javascript, which is a very simple programming language.
For an introduction to GM look at the Greasespot.net

 
Aug 22, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Need help with script - average calcs

Ah, I've forgot: asking to make a script from a picture is like asking to reach the moon with a paper sheet, you have to fold it to half only 46 times.

 
Aug 22, 2008
Aquilax 275 posts

Topic: Script development / Arrays and unicode

You can also use two arrays, one for the keys and one for the values:


var keys=["a","b,","c"];
var values=["x","y","z"];

document.write(values[keys.indexOf("a")]);

 
Aug 21, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Find and replace

Normally web-spider are stand-alone programs which send http request to the servers and parse the text reply. Some inferior web-spiders use IE as component to execute the http requests, that result in a 10 times slower spider with also other very annoying side effects, like javascript errors on pages which block the spider. But as far as I know you can't use FF as web-spider, or I'm wrong?

 
Aug 20, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Facebook - Mob Wars

Spyware included?

 
Aug 20, 2008
Aquilax 275 posts

Topic: Ideas and script requests / Need help with script - average calcs

Ok I will help you: the average of one value is equal the the value self.

 
Aug 17, 2008
Aquilax 275 posts

Topic: Userscripts.org discussion / Order scripts per fans

Allow to sort scripts per fans number.

 
Aug 12, 2008
Aquilax 275 posts

Topic: Script development / javascript links - middle click

An universal "javascript-link 2 link" converter is impossible to make, the most generic way to do it is to search for an url between the parameters of the function. But if there is any, you have to snoop the javascript code and try to rebuild the logic of the url creation.

 
Aug 12, 2008
Aquilax 275 posts

Topic: Ideas and script requests / View videos that are blocked by country

Use a proxy

 
Aug 11, 2008
Aquilax 275 posts

Topic: Script development / Store variable with innerHTML --- security question

You don't need GM to change some javascript variables, moreover you don't need to change the variables to hack a system, it would be a loss of time, an hacker would send an http request directly to the system interface.

 
Aug 8, 2008
Aquilax 275 posts

Topic: Userscripts.org discussion / Resource Files

Yeah there is always discussions over big monolitic programs and multi-file programs. Always it depends from how you are used, normally who is used with OO-programming style prefers to have small pieces of code a lot of classes and to place all the resources in a separate file. OO tends to minimize the use of memory, if some resources, classes or something else is not needed it will not be loaded.

 
Aug 2, 2008
Aquilax 275 posts

Topic: Userscripts.org discussion / Resource Files

Resources normally are bound together with a program/library, instead @require is more like to import a library. For me is logical to have the resources together with the script, instead libraries can be added as user scripts, perhaps when creating a new user script the author can decide if it can be installed or not, this means that on the script page there is no install button, obviously it can always be installed by calling the right url.

 
Aug 2, 2008
Aquilax 275 posts

Topic: Script development / globalStorage alternative

Write a script that add a js method/object to the DOM, something like unsafeWindow.myGloabalStorage, so all the GM_script can access it, but this means that every script can access it not only your scripts and also the javascript loaded together with the page, it is considered to be something dangerous.