
brijeshshah.com
Brijesh Shah Blogbrijeshshah.com
http://www.brijeshshah.com/
brijeshshah.com
http://www.brijeshshah.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
brijesh
brijesh shah A-604,Himali towe●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●India Fax..: Last modified: 20
12-12-1●●●●●●●:07 GMT
View this contact
brijesh
brijesh shah A-604,Himali towe●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●India Fax..: Last modified: 20
12-12-1●●●●●●●:07 GMT
View this contact
Hostmonster.com
Hostmonster Inc 1958 South 950●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●odified: 2012-10-18 18:43:49 G
M●T
United States
View this contact
16
YEARS
4
MONTHS
4
DAYS
GODADDY.COM, LLC
WHOIS : whois.godaddy.com
REFERRED : http://registrar.godaddy.com
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
14
SITE IP
52.72.167.138
LOAD TIME
0 sec
SCORE
6.2
Brijesh Shah Blog | brijeshshah.com Reviews
https://brijeshshah.com
brijeshshah.com
Brijesh Shah Blog | Image preview by javascript
http://brijeshshah.com/image-preview-by-javascript
Brijesh Shah Blog on Twitter. Image preview by javascript. October 13, 2011 5:32 pm. Here I will show how to display image preview before uploading to server side. DOCTYPE html html head script class=jsbin src=http:/ ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js /script meta charset=utf-8 / title JS Bin /title! If IE] script src=http:/ html5shiv.googlecode.com/svn/trunk/html5.js /script! Note: This method is not worked in IE as files property of file field is not supported by IE browser. It’...
Brijesh Shah Blog | duplicate database
http://brijeshshah.com/tag/duplicate-database
Brijesh Shah Blog on Twitter. Posts tagged: duplicate database. Create copy/duplicate of MySQL database. May 23, 2013 11:48 am. Let’s say the original database is db1 and the duplicate is db2. 8211; Create a new database, db2. 8211; Run following command:. Mysqldump -h [server] -u [user] -p[password] db1 mysql -h [server] -u [user] -p[password] db2. Note: there is no space between -p and the password. Set default index.html page in NGINX. Custom error pages in Rails 3.2. Install FFmpeg on Ubuntu 14.04.
Brijesh Shah Blog | jQuery
http://brijeshshah.com/category/jquery
Brijesh Shah Blog on Twitter. Uploading file with Ajax, without submitting a form. March 1, 2016 5:05 pm. Here is the code for uploading an image or file without submitting a form with Ajax. For this we will create object of FormData class and will append the properties of the file field in a attribute of FormData object, finally we will set the FormData object with the data key of ajax method of JQuery. Input id=avatar type=file name=avatar / button id=upload value=Upload /. November 28, 2013 2:17 pm.
Brijesh Shah Blog | rails 3
http://brijeshshah.com/category/rails-3
Brijesh Shah Blog on Twitter. Custom error pages in Rails 3.2. June 11, 2016 3:04 pm. Here are steps to show custom error pages in Rails 3.2. 1 Register your own app as the application responsible for showing error pages by adding. Config.exceptions app = self.routes. 2 Add routes for the error pages, by appending this to your. Match '/404' = 'errors#not found' match '/422' = 'errors#server error' match '/500' = 'errors#server error'. 4 Add the corresponding views. Multiple Database connections in rails.
Brijesh Shah Blog | jquery validate
http://brijeshshah.com/tag/jquery-validate
Brijesh Shah Blog on Twitter. Posts tagged: jquery validate. Jquery Validate format of multiple emails. November 28, 2013 2:17 pm. Jquery form validator provides email format validation by simply add rule with {email: true} option. We need often add multiple email address in text area box and validate all email format. To do this with jquery form validator , we need to add method which check each email and validate format. Validate multiple email format. Set default index.html page in NGINX. Set default ...
TOTAL PAGES IN THIS WEBSITE
19
July 2011 | Ankit working with Rails
http://ankitbparekh.blogspot.com/2011_07_01_archive.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. Archive for July 2011. Multiple database connections in rails. Friday, July 29, 2011. One of my colleague has done multiple db connection in rails. Here is his work,. First set connection parameters for both database with different constant variables and define in environment file. Add connection.rb file in lib folder. ActiveRecord: Base.establish connection(. Include connection file and set DATABASE in models.
jQuery Ajax Rails 3 - WARNING: Can't verify CSRF token authenticity | Ankit working with Rails
http://ankitbparekh.blogspot.com/2013/09/jquery-ajax-rails-3-warning-cant-verify.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. JQuery Ajax Rails 3 - WARNING: Can't verify CSRF token authenticity. Tuesday, September 17, 2013. WARNING: Can't verify CSRF token authenticity. This warning appears while I'm trying to do jQuery ajax request. I have faced this issue while upgrading my older rails app to rails 3.2. This issue solved by adding bellow lines in head section in layout of application for me. Csrf meta tag %. Javascript tag do %. Fetch image in ruby.
How to convert Time from/to epoch time in ruby | Ankit working with Rails
http://ankitbparekh.blogspot.com/2013/04/how-to-find-epoch-time-in-ruby.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. How to convert Time from/to epoch time in ruby. Monday, April 15, 2013 ·. Posted in epoch time. Epoch time in 13 digit. Epoch time in miliseconds. In ruby, we can find time from/to epoch time as below:. To find current epoch time in seconds. 10 digit) use below code,. Current epoch time =( Time.now.to i). Current epoch time =( Time.now.to f).ceil. To find current epoch time in mili-seconds. 13 digit) use below code,.
October 2009 | Ankit working with Rails
http://ankitbparekh.blogspot.com/2009_10_01_archive.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. Archive for October 2009. Remove first line from any readable file. Thursday, October 29, 2009. Code to use in ruby. Filename = "/path-to/file/file.ext". Fileopen(filename,"r"){ f f.gets; text=f.read}. Fileopen(filename,"w "){ f f.write(text)}. Make sure that variable. Should be in lowercase. If you want a variable in uppercase then you have to declare it outside the def/method. Thursday, October 8, 2009 ·. Tag, simply use.
June 2010 | Ankit working with Rails
http://ankitbparekh.blogspot.com/2010_06_01_archive.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. Archive for June 2010. Custom Ordered Error Messages in Rails. Friday, June 25, 2010 ·. Posted in custom ordered message rails. In rails 2, if you want custom messages in ordered style then,. You have to install plugin from. Http:/ orderederrors.rubyforge.org/. And use below lines in views (it's an example). Error messages for(:user, :order= [:name,:email]). Error messages for(:user, :order= {:user= [:name,:email,:contact]}).
March 2012 | Ankit working with Rails
http://ankitbparekh.blogspot.com/2012_03_01_archive.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. Archive for March 2012. Fetch Images from Web Url. Wednesday, March 21, 2012 ·. Posted in fetch image in ruby. You can find images from given web-url by using following code:. For this first you need to write below statements in your .rb file. Now use below code:. Return [] if url.nil? Url content = open(url). Url data = Nokogiri: HTML(url content). Url data.xpath("/html/body/ img").each do img. Src : File.join(url,src).
April 2010 | Ankit working with Rails
http://ankitbparekh.blogspot.com/2010_04_01_archive.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. Archive for April 2010. Unknown runtime error in prototype.js Line: 2457. Thursday, April 15, 2010 ·. Posted in prototype error. This statement in prototype.js (line 2457):. Else element.innerHTML = content.stripScripts();. Gives an error : "unknown runtime error". To solve this problem, just make below changes in your code in all js. Change the statement from. Thismonth year label.update(Date.months[m]);. Fetch image in ruby.
September 2013 | Ankit working with Rails
http://ankitbparekh.blogspot.com/2013_09_01_archive.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. Archive for September 2013. JQuery Ajax Rails 3 - WARNING: Can't verify CSRF token authenticity. Tuesday, September 17, 2013. WARNING: Can't verify CSRF token authenticity. This warning appears while I'm trying to do jQuery ajax request. I have faced this issue while upgrading my older rails app to rails 3.2. This issue solved by adding bellow lines in head section in layout of application for me. Csrf meta tag %.
March 2011 | Ankit working with Rails
http://ankitbparekh.blogspot.com/2011_03_01_archive.html
Ankit working with Rails. Interesting thoughts for ruby and rails development. Archive for March 2011. Download any page from web url. Friday, March 18, 2011 ·. Posted in image url. Here is a code in ruby. To save any page from given web url. If web url.match("(.*? Url = "/" $3. Ext = url.downcase.reverse[0.url.reverse.index(" .")]. Net: HTTP.start("#{site}") { http. Resp = http.get("#{url}"). Open("filename-with-full-path", "wb") { file. If you want to restrict on image download then,.
TOTAL LINKS TO THIS WEBSITE
14
Untitled Document
.
Wednesday, October 12, 2011. Sunday, October 9, 2011. Friday, October 7, 2011. Monday, September 26, 2011. Tuesday, April 19, 2011. Monday, April 18, 2011. Sunday, September 12, 2010. Saturday, May 29, 2010. Friday, May 28, 2010. Sunday, April 4, 2010. Thursday, March 25, 2010. Friday, January 22, 2010. Wednesday, September 23, 2009. Tuesday, September 1, 2009. Tuesday, August 18, 2009. Monday, August 17, 2009. Sunday, August 16, 2009. Tuesday, June 23, 2009. Wednesday, June 17, 2009. Sunday, May 3, 2009.
Premium Brandable Domain Name for Sale: BRIJESHRATHORE.COM
Origin of the name Dhruv is from Indian mythology. Brightest star in the constellation. More about Legend of Dhruv. Multi Cultural Activity - Flags. Multi Cultural Activity - Misc.
brijeshrupareliya.wordpress.com
Brijesh Rupareliya | Internet Marketing Professional – Ahmedabad – <a href="https://plus.google.com/+BrijeshRupareliya/" rel="publisher">Find me on Google+</a>
Brijesh Rupareliya – Internet Marketing Professional – Ahmedabad – a href=https:/ plus.google.com/ BrijeshRupareliya/ rel=publisher Find me on Google /a. Enter your email address to receive notifications of new posts by email. Join 1,001 other followers. Let’s Connect on Twitter. Let’s Connect on Pinterest. Error: Twitter did not respond. Please wait a few minutes and refresh this page. BEST SEO EXECUTIVE INDIA. How to post video on pinterest. 6 Tips for Effective Email Campaign. March 5, 2014. If you wa...
Brijesh Sampat & Associates
Internal and Assurance Audit. Brijesh Sampat and Associates. I welcome you to the website of Brijesh Sampat and Associates, Chartered Accountants! This e-mail address is being protected from spambots. You need JavaScript enabled to view it. We provide services in the field of Accounting, Auditing and Assurance, Internal Audit, Tax Audit, Management Audit, Statutory Audit, Income Tax, Tax Planning, Service Tax, Value Added Tax etc. Read more: Chartered Accountant Services. Highlights of the Budget 2013.
Brijesh Shah Blog
Brijesh Shah Blog on Twitter. Jquery Validate format of multiple emails. November 28, 2013 2:17 pm. Jquery form validator provides email format validation by simply add rule with {email: true} option. We need often add multiple email address in text area box and validate all email format. To do this with jquery form validator , we need to add method which check each email and validate format. Validate multiple email format. Create copy/duplicate of MySQL database. May 23, 2013 11:48 am. Here I will show ...
Untitled Page
Welcome on the personal web page of. Associate Professor of Department of Mechanical Engineering,. Aryabhatt College of Engineering and Technology, 13th Km Stone, Baghpat-Meerut Road, Daula, Baghpat - 250 601 (UP) INDIA. E-mail : brjshsngh@yahoo.com. Serving as an Associate Professor of department of Mechanical Engineering at Aryabhatt College of Engineering and Technology, 13. Km Stone, Baghpat- Meerut Road, Daula, Baghpat 250601 (UP) India. Completed B. Sc. (Engineering) in Mechanical Engineeri...Gauta...
Wishing You Happy Republic Day OF INDIA – 26 January
न सरक र म र ह! न बड स न म म र ह! म झ त एक छ ट स ब त क ग रव ह , म ह न द स त न क ह . और ह न द स त न म र ह जय ह न द. Click Here to Share on Whatsapp.
Brijesh Singhal
Error Page cannot be displayed. Please contact your service provider for more details. (7).
Brijesh Steel, Pune, Dealer/Distributor/Trader of MS Punching Bundle Scrap, Aluminum Turnings, MS Light Scrap, MS Turning Bundle Scraps, Machine Scrap,
MS Punching Bundle Scrap. MS Turning Bundle Scraps. MS Turning Bundle Scraps. MS Punching Bundle Scrap. Add to my kard collection. MS Punching Bundle Scrap. MS Turning Bundle Scraps. Key Products We Sell:. Machine Scraps,MS Turnings Scraps,Stainless Steel Scraps,MS Light Scraps,Aluminum Turnings,Forging Scraps,MS Punching Bundle Scraps,SS Turning Scraps,Plate Cutting CI Boring Scrap. Incorrect password forgot Password. Enter between 5 to 3,000 characters, English only.
A blog by Brijesh | The greatest site in all the land!
A blog by Brijesh. The greatest site in all the land! Asymp; Leave a comment. Wonderfully written – a 2 min intro to Tywin. A Game of Thrones History Lesson. In my opinion, Tywin Lannister is the best antagonist in Game of Thrones hands down. Planetos has its fair share of evil in it, all the way from the rageful bloodlust of the Mountain to the brattish cruelty of Joffrey, but that isn’t Tywin. The most dangerous people are the ones with brains and the will to use them. This is Tytos Lannister. Recommen...
SOCIAL ENGAGEMENT