View gist:8703545
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="container"> | |
This is the | |
<div id="caption"> | |
<span>best</span> | |
<span>ultimate</span> | |
<span>excellent</span> | |
<span>fantastic</span> | |
</div> | |
website in town. | |
</div> |
View gallery.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="content"> | |
<div class="fusion-portfolio wrapper-portfolio-grid cbp-3-col"> | |
<div id="grid-container" class="cbp-l-grid-gallery col-md-3 col-sm-3 col-xs-3" ng-repeat="photo in total_photos"> | |
<ul> | |
<li class="cbp-item User"> | |
<a class="example-image-link" href="[[ photo.display_url ]]" data-lightbox="example-1" data-title="[[ photo.caption ]]"> | |
<div class="cbp-caption"> |
View angular_resources.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Restangular -for REST | |
angular animations | |
authenication with DRF - http://richardtier.com/2014/03/15/authenticate-using-django-rest-framework-endpoint-and-angularjs/ | |
Angular UI router | |
http://stackoverflow.com/questions/22175980/angular-ui-router-multiple-views | |
View Data_science_resources.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Introduction to machine learning | |
http://nptel.ac.in/courses/106106139/ |
View gist:1aa50a6a430a242b94ef
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LOl! i was trying to help one of my junior, to get started with Node, Ignore if anything wrong i am a python guy :D | |
To get started with Node.js and basic stuffs | |
go through this link: | |
http://campus.codeschool.com/courses/real-time-web-with-node-js/contents | |
Once you r familiar with node, its time to build some basic app, | |
Here you go, the link for building simple blogging app with all detailed steps | |
http://howtonode.org/express-mongodb |
View hang_up.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
<Speak>Please wait while you call is being transferred.</Speak> | |
</Response> |
View forward.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Response> | |
<Dial callerId="888-976-6197"> | |
<User>sip:yoda12312312@phone.plivo.com</User> | |
</Dial> | |
</Response> |
View fix_sub_array_problem.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s = raw_input().split(',') | |
s = map(int, s) | |
max_sum = 0 | |
max_so_far = 0 | |
left_i = 0 | |
right_i = 0 | |
#check all elements in the given list are positive |
View world_of_differences.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
m, n = raw_input().split() | |
m = int(m) | |
n = int(n) | |
e_list = [] | |
e_list = raw_input().split() | |
combination = [(e_list[i],e_list[j]) for i in range(len(e_list)) for j in range(i+1, len(e_list))] | |
difference = [] |
View stack_ops.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n = int(raw_input()) | |
stack = [] | |
def push(element): | |
stack.append(element) | |
return element | |
def pop(): |
NewerOlder