IntelligeN 2009

Status
Not open for further replies.

geskill

Active Member
79
2010
2
0
IntelligeN 2009 - AiO spreading software

Logo-x16nb.png
IntelligeN 2009
A flexible content publishing application for nearly every content management system.

What is IntelligeN?
IntelligeN is an open source auto poster for content management systems (CMS), which uses web crawlers to enrich content data. Data is stored within content specific fields for later automated article generation using a JScript-based interpreter called IScript. Besides crawlers have access to the fields and search upon given input for detailed data to enhance the content. The program uses static base categories to classify the content media among audio, video or software content. This enables purposeful publishing and crawling.

IntelligeN supports to attach web (especially one-click hosting) links to the article, which makes it possible for readers to download the connected data.

How to use IntelligeN?
IntelligeN is a powerful application for content publishing. Due to the amount of functionality the usage might be complex at first sight. The Getting Started page is the first step to get in touch with the fundamental concepts of IntelligeN.

GS_3.png


Where to download IntelligeN?
Download

Source code
 
Last edited:
80 comments
Hi, iam Alpha tester from this fab tool and i can say nothing is wrong. no backdoor, virus etc. !!!!!!!!!!!!!!!! 100% trusted!!!!!!!
 


another screenshot, includes the prefix function. some forums needs prefix for new threads, this tool can handle it
 
your scan link: Result: 1/40 (2.50%)

and? "Suspicious.Insight" don't means virus, back-door or something like that! btw Symantec is not as good as Kaspersky or GData! many cracks or even keygens have a higher rate and you use it anyway! but okay i cant force you, but it makes me very mad if you talk nonsense.
 
and? "Suspicious.Insight" don't means virus, back-door or something like that! btw Symantec is not as good as Kaspersky or GData! many cracks or even keygens have a higher rate and you use it anyway! but okay i cant force you, but it makes me very mad if you talk nonsense.

:P i don't have nothing with your program, i don't even know what it does, i just replied to him
what you mean , mate? details please
 
wouldn't worry about virus check. Have you ever checked Hyperz Sharpleech or Jayfella's Autoposter with those?

I'll give it a test now.
 
i don't even know what it does, i just replied to him

this program can search informations (cover, description, nfo) based on a movie, game or xxx name and publishes this into different cms systems like vBulletin, phpbb, wbb, ipb, etc.... the program can crypt your directlinks from rapidshare, uploaded, netload etc... into linksave.in, linkcrypt.ws or ********** links. furthermore it can upload your coverlink to your favorite image-hoster. all in all it can do everything for you!
 
I tried it, here is my review :

- The app isn't very user friendly, and you should have made a tutorial on how to creat plug in and all that stuff ( I had to figure it out by myself) :P

- While Posting you should have 2 modes, the current one, where you insert the data and the app 'builds' the post, and you should implement a new mode 'Free Posting' that would allow you to build the post anyway you want it, with out those variables confusing people, in that mode we would write the same things we write when we post in a forum...

- You have a register button that leads to Google...

- I didn't understand if there was a queue or if the opens tabs had nothing to due with a queueing system, but if there was a queue it isn't working...

This is my review ;)
 
Gempis thanks very much for your review!
- The app isn't very user friendly, and you should have made a tutorial on how to creat plug in and all that stuff ( I had to figure it out by myself) :P
yeah, your right, its complex, i've done my best to put it all in one app - so here it is. Now i have to create lots of tutorials and even faqs to explain every function. Just a view users know, how to use this program and they save 2/3 of the time as before. btw. you don't need to add a plugin ^^ its just a website.
- While Posting you should have 2 modes, the current one, where you insert the data and the app 'builds' the post, and you should implement a new mode 'Free Posting' that would allow you to build the post anyway you want it, with out those variables confusing people, in that mode we would write the same things we write when we post in a forum...
this 2-way-system is possible, you can even remove these fields like "passwort" or "video stream", and have a releasename + description post only - no problem. But the how! thats the point, and so it leads me to the post editor. This editor uses the same concept like php, plain text and code in delimiters ('<I';'I>') i named it IScript. This is very complex and very cool. You can modify your complete output - how you like it, but again you need to know how.
- You have a register button that leads to Google...
=) its not implemented right now
- I didn't understand if there was a queue or if the opens tabs had nothing to due with a queueing system, but if there was a queue it isn't working...
its just for working on multiple uploads. But the program have a queuing system for spreading (posting / publishing) and for crawling (fetching / "lookie..lookie")

and again, thanks very much for giving a look at IntelligeN ! I ll do my best to improve it.

ps: i don't like to say tool, because tool has for me the meaning of a small application, like a browser or calculator - thats what IntelligeN even not is.
 
I'm not sure if you understood what I meant with the posting mode...

Have a look at Jayfella's multi poster...

I think it would be great if we could have a posting mode like that one...
 
I hope, look the screenshot:


You can edit every "template" for example "Other", with your favorite xml editor (i'm using VS in the background). Just removing every unused control like "password" and than putting all in description. You can do!

Here is a sample how, the IScript can look like:
And now you ll maybe see how complex and cool IntelligeN is, it have even a whole programming language in it =) (i love this smiley)
PHP:
.
[center]
[b]<I
import "iUtils.js"

print(ReduceCapitals(IRELEASENAME));

I>[/b]

<I
if (IDescription != null)
  print(IDescription + #13#10#13#10);

function FirstLinkOnly(ALinks) // Result
{
  if(Pos(#13#10, ALinks) == 0)
    Result = ALinks;
  else            
    Result = copy(ALinks, 1, Pos(#13#10, ALinks) - 1);
}

function RemoveWWW(ALink) // Result
{
  var w = "www.";

  if(Pos(w, ALink) == 0)
    Result = ALink;
  else            
    Result = copy(ALink, Pos(w, ALink) + length(w), 10000000);
}

for(var i = 0; i < IMirrorController.MirrorCount; i++) 
{
  if(i != 0)
    print(#13#10);
  print(#13#10 + "[b]Mirror: " + IntToStr(I + 1) + "[/b]" + #13#10);
  for(var j = 0; j < IMirrorController.Mirror[I].DirectlinksMirrorCount; j++) 
  {
    print(#13#10 + "[b]" +  RemoveWWW(ExtractURLHost(FirstLinkOnly(IMirrorController.Mirror[I].DirectlinksMirror[J]))) + "[/b]");
    print(#13#10 + "[spoiler][code]" + IMirrorController.Mirror[I].DirectlinksMirror[J] + "[/code][/spoiler]");
  }
}
I>
[/center]
.

I compare IntelligeN often to someone who gets a Mercedes, before he go by foot.
 
Nice, I got it to work the way I wanted it...

Here is my template :

Code:
<I print(INFO) I>

lol

And I just copy paste from w-bb into that box...
I'm not using the crawler...

I found one bug, if you use the crawler to get the cover it removes the domain...

If the image adress is http://xxx.com/images/1.jpg , it only fetches images/1.jpg

I enjoying this app, i only need to get my queue to work...
 
Status
Not open for further replies.
Back
Top