Posts

Showing posts from 2014

Laravel Composer main Command

Laravel Composer main Command These are the main composer command which is necessary when you install first time a Laravel Project. composer self-update - It will self update the composer composer update - It will update the all library or packages for laravel project composer dump-autoload - This will update the autoload, If any file is update or class added composer dumpautoload - This is same function as above

What is best configuration for desktop PC under 80000?

Best configuration for desktop PC under 80000 According to me this should be the best configuration which is under 80000. For Heavy/Personal and Gaming Use this PC give you 100%  Performance. Here are the specification for Desktop PC 17190 - ASUS Z97PRO WIFI (1150) 5,428 - Corsair Vengeance DDR3 8 GB (1 x 8 GB) PC RAM (CMZ8GX3M1A1600C10) 5,000 - Sandisk ultra ssd 120 21490 - Intel Core I7-4790k Processor (8m Cache, Up To 4.40 Ghz) (i-7 4790k) 13000 - 22" moniter DELL 24" LED (ST 2440 L) 1,470 - Logitech MK260 Combo Wireless Keyboard and Mouse Combo 3,990 - CORRSAIR VS-650 SMPS 5,800 - Any Cooler Master Cabinet 4,875 - Corsair H60 Cooler ------------------------------------ 78243 ------------------------------------ All price are in Rupees and price can be UP and DOWN. According to your configuration, you can add Graphic Card too but for now there is not any need to add. When you have extra money to burn then you can have it. Please Note:- Before to buy the

How to use Sass or Scss in a Meteor app?

Use Sass or scss in Meteor app To use Sass or Scss file in Meteor First of all you need to add scss or sass package in Meteor Run this command first: mrt add scss Now create a scss file inside your stylesheet folder or anywhere you want to add Like scss_style.scss You can add a css style code to test like h1{ color:red !important; } Now restart your app. I hope it is working now. But this will not work after 0.8 version of meteor Please comment or share this post to inspire me :)

What is WebSockets in HTML5?

WebSockets in HTML5 Web Sockets is a next-generation communication technology for web applications by which you can send or receive data from server like ajax get post method. You have already used like this type of code in jQuery $.post() Or $.get() or $.ajax() etc What these function do? These function used for send and receive data from server to client or client to server. Same as WebSockets works. Syntax: var Socket = new WebSocket(url, [protocal] ); Example: <script type="text/javascript"> function WebSocketCheck() { if("WebSocket" in window) { alert("WebSocket is supported by your Browser!"); // Lets open a web socket var ws = new WebSocket("www.url.com/para"); ws.onopen = function() { // Web Socket is connected now, send data using send() Method ws.send("Message to send server"); alert("Message is sent now."); }; ws.onmessage = function (evt) { var received_msg = evt.data; alert(&