This is default featured slide 1 title

Resources Your Way , From Anything To Everything

This is default featured slide 2 title

Resources Your Way, From Everything To Anything!

This is default featured slide 3 title

Resources Your Way, From Everything To Anything

This is default featured slide 4 title

Resources Your Way , From Anything To Everything

This is default featured slide 5 title

Resources Your Way , From Anything To Everything

Translate

Tuesday 26 February 2013

7 Awesome MATLAB tricks


MATLAB, for an engineer it's an indispensable resource, extremely useful and fun to use.
But there are also some cool tricks that are rarely known and fun to implement.

1.Batman Equation Curve in MATLAB


here is a code "xr = linspace(-7,7,1500);
yr = linspace(4.5,-4.5,1500);

x = repmat( xr , [ numel(yr) 1 ] );
y = repmat( yr' , [ 1 numel(xr) ] );

batman = (((x/7).^2.*sqrt(abs(abs(x)-3)./(abs(x)-3))+((y/3).^2) .*  ...
           sqrt(abs(y+(3*sqrt(33)/7))./(y+(3*sqrt(33)/7))))-1) .* ...
         (abs(x/2)-((3*sqrt(33)-7)/112).*(x.^2)-3+sqrt(1-(abs(abs(x)-2)-1).^2) - y) .* ...
         (9*sqrt(abs((abs(x)-1).*(abs(x)-0.75))./((1-abs(x)) .* (abs(x)-0.75)))-8*abs(x)-y) .* ...
         (3*abs(x)+0.75*sqrt(abs((abs(x)-0.75).*(abs(x)-0.5))./((0.75-abs(x)).*(abs(x)-0.5)))-y) .* ...
         (2.25*sqrt(abs((x-0.5).*(x+0.5))./((0.5-x).*(0.5+x)))-y) .* ...
         (((6*sqrt(10))/7)+(1.5-0.5*abs(x)) .* sqrt(abs(abs(x)-1)./(abs(x)-1))-((6*sqrt(10))/14).*sqrt(4-(abs(x)-1).^2)-y);

imagesc( log(abs(batman)) );
"
Copy paste the code to  get awesome batman curve




2.Super Mario Brother Theme
Access this feature  using this file
"http://www.mathworks.com/matlabcentral/fileexchange/8442-theme-from-super-mario-brothers-song?download=true"
Keep these two files in the same folder and run "mariosong.m" , it Will play the ultra cool super mario music.

3.SPY
Put the "SPY" command in command window, it will create a spy image like this :-

4.TOILET COMMAND :P
Enter the "TOILET" command, it will show the simulation of toilet with flushing sound :D :P

5.The Conway's Game of Life
Yes, MATLAB  can also be used to play games,enter the Life command and play.

6.The PENNY
This gives a 3D version of a penny.
Just enter  "penny" command


7. MATLAB  PROGRESS  BAR
Copy -paste this code to get a progress bar
clc;
clear all;
tic;
disp ('Hello, World!');
h=waitbar(0,'Please wait..');
n=0;
for i=1:100
    waitbar(i/100)
    for j=1:100
        for k=0:100;
            n=factorial(2);
        end
    end
end
close(h)
toc



Monday 25 February 2013

10 Windows Secrets that you must know!

Don't be dumb and learn some "secret" tricks that you even not have wondered.
There is no end of resources to look on the net and learn some secrets about your window, but this post promises to provide the tricks that are rarely known and at times are very practical to implement.

1.Shortcut to open Windows Task Manager
ctrl+shift+esc.
One need not to press ctrl+alt+del and then select task manager.

2.Play a movie in command prompt
Open command prompt and execute the command "telnet towel.blinkenlights.nl"(without quotes), the movie will start in a second!!
To play with this feature , you can do the following steps:-
1.Click on start
2.Control panel
3.Programs and features
4. turn windows feature on/off
5.OK


 3.Change password of Windows OS without any knowledge of current password.
the technique is extremely useful and easy to execute! ;)
Follow these steps:-
1.Open command prompt (shift+right click+select "open command window here"
2.Type "net user" (without quotes) to get to know all the active accounts.
3.Choose the account name for which you wanna change the password( for e.g Admin,guest, yoyo etc)
4.type "net user  accountname" without quotes (here accountname refers to the name of account you have chosen)
5.Finally type "net user accountname *"(without quotes), press enter and see the magic!!!
It asks for a new password, type and retype to go ahead.
PS: You won't be able to see the password even anyone can't see but it is actually there.



4.Useful Shortcut Keys
Following are the short cut keys , i use frequently:-
1.F2=rename a file or folder.
2.windows+i= start panel (windows 8)
3.windows+x
4.shift+right click+"open command prompt here"
5. Get more options  by clicking on a folder"shift+right click"


5.Use notepad as Personal Log File
From now you will be choosing notepad as your personal diary to maintain check in!!
Follow these:-
1.Open notepad 
2.Type ".LOG" (in capitals and without quotes)
3.Press enter
4.Save and close the file
5.Open the file again and enjoy
PS: Whenever you open the file you can check the details when you opened it last 

6. Unacceptable Folder Names
Some of the character strings are reserved by DOS and hence one cannot create folder names like:-
  • CON
  • AUX
  • NULL
  • LPT1
  • COM1 
If you ever try to create the folder/file by these names , either you will get an error or a Default folder name!

7.Handy Settings Shortcut
Create a folder and save it as
some_name.{ED7BA470-8E54-465E-825C-99712043E01C}
This creates an access to all the settings on windows.

8.Problems Steps Recorder
1.Search for psr from start menu and run it.
2.Click on start recording
This will record the activities through a series of screen shots also with automatic captions, comments can also be added.
Stop recording and everything will be saved in a MHTML compatible file, conveniently pre-ziped ready to be upload/E-mail.

9.Reliability Monitor
This feature let you the computer history and reliability
To use this feature, type "reliability" in start menu search box and go ahead :D

10.Browse through the folder in Command prompt
In command mode , there is no need to type full path of folder manually. Just type cd then spacebar and tab and then tab to browse through them! (Best for coders)

Saturday 23 February 2013

Top 50 E-learning Sites



    Top 50 E-Learning Sites






E-learning has gradually become an indispensable part of  learners whether it be for MBA, Engineering, Computer Sciences,Arts,Marketing and hence there is no dearth of free resources over the world wide web.
Following list promises the top  and the best Learning resources for anyone to everyone.

1.Khan Academy-Learn Almost Anything For Free
All the lessons are video based  and are well categorized.Also helpful for those preparing for entrance exams like ISEET (a.k.a IITJEE) ,AIEEE etc.

2.MIT OCW
When it comes to free learning from anything to everything, MIT opencourseware is always on the list, consisting of various courses also being offered in various languages.Just go there and start learning that too without any registrations.

3.edX
The website has collaborated with top universities like MIT,Harvard UC Berkeley etc offering courses in various streams of Arts,Sciences and Commerce.The site also provide certificates when a learner succesfully completes the course.The course starts and end on specific dates and hence the user is tend to complete the course as per the deadlines.

4.Coursera
The site is awarded as the best start-up of the year award.Offering course in every field from different universities across the world,Coursera also provide free certificates on completion of course.The site is similiar to edX but offers much more courses than edX.

5.Udemy
SQL databases, Photoshop, Music Theory, Business, and many others that what Udemy is known for.Allows user to create  their own class as well ! no. It also has a rating format like that of Amazon so that users can rate the courses.

6.Udacity

7.Umass Boston Open courseware

8.Free-Ed

9.Learning Space:The Open University

10.Carnegie Mellon Open Learning Initiative

11. Tufts Open Courseware

12.Stanford on iTunes U

13.Utah State Open Courseware

14.Kutztown On Demand Online Learning

15.USQ Open Courseware

16.UC Irvine Open Courseware

17.Connections Academy

18.K-12

19.GED

20.Free World U

21.CosmoLearning

22.OpenCulture

23.New York University

24. Yale Courses

25.Gresham College

26.Notre Dame Open Courseware

27. JHSPHO

28.Open UW

29.University Of The People

30.Academic Earth

31.Textbook Revolution

32.The Library Of Congress Files

33.Alison

34.Webcast Berkeley

35.GCF Learn Free

36.Google Code University

37.E-Learning Center

38.Saylor

39.Master Class Management

40.Brigham Young Free Online Courseware

41.University Of Michigan Open

42.NLC Open Learning Course

43.FlexiLearn

jhsph.edu


44.Nixty



47.NPTEL



50. Dezrina

Top 10 resources on WEB DEVELOPMENT

Are you keen to know how websites like Facebook,Google,Quora are made?
Then you  have landed up in a best place to get revealed of best resources on Learning of Web Development.
PS:- All the resources here are suggested by experts and learners.

So here is a list:-
1.Start Building a Website.
At first it may look vague but the key in learning A-z of a website is to make your own website.
Get a website's source code and hack it in all possible manner you can, google things if you are confused, but don't stop , stay motivated to learn about every tag , every line :)


2.Code Academy


3.HTML DOG
Working through the begginer's HTML tutorial let one create their own webpage with introduction of tip and tricks.
Get there-HTML DOG

4.MDC
A quality learning resource https://developer.mozilla.org/en/html

5. W3C’s validator

6.Dive into HTML5

7. The Newboston video tutorials.

8.HTMLand CSS in 30 minutes

9.W3SCHOOLS Online

10.TUT-PLUS


Related Posts Plugin for WordPress, Blogger...