Tested in Mac OS X: super == command
Open/Goto
- super+t: go to file
- super+ctrl+p: go to project
- super+r: go to methods
============================= | |
**http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html | |
**http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html | |
**http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html | |
**http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html | |
**http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html | |
*http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html | |
*http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html |
# coding: utf-8 | |
words = ['cat','dog','tac','star','rats'] | |
def anagram(str1,str2): | |
s1 = set(str1) | |
s2 = set(str2) # ==> sorted(list(str2)) less efficient! | |
return s1 == s2 # ==> if s1==s2: return True else: return False | |
#print(anagram_solver('cpa','tac')) |
""" | |
Author: Rafeh Qazi. | |
Program: Anagram finder. | |
Description: Return a sorted list with all non-anagrams omitted. | |
Constraints: No imports. | |
input: anagram_finder(['star', 'rats', 'cats', 'tacs', 'dog']) | |
output: ['cats', 'rats', 'star', 'tacs'] | |
""" | |
""" | |
Author: Rafeh Qazi | |
Create a student class that models a student. | |
Date: 11/26/2015 | |
""" | |
from collections import namedtuple | |
class Student: | |
def __init__(self, name, hours, quality_points): |
""" | |
Author: Rafeh Qazi | |
Create a student class that models a student. | |
Date: 11/26/2015 | |
""" | |
from collections import namedtuple | |
class Student: | |
student_counter = 0 |
""" | |
Author: Rafeh Qazi | |
Create a student class that models a student. | |
Date: 11/26/2015 | |
""" | |
from collections import namedtuple | |
def all_student_results(students_file): | |
""" |