![]()  | 
  
  
    
      This file contains hidden or 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
    
  
  
    
  | set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'gmarik/Vundle.vim' | |
| Plugin 'tpope/vim-fugitive' | |
| Plugin 'sjl/gundo.vim' | |
| Plugin 'kien/ctrlp.vim' | 
  
    
      This file contains hidden or 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
    
  
  
    
  | // Given a string of numbers and operators, | |
| // print out all the different ways you can add parentheses | |
| // to force the order of operations to be explicit, | |
| // and the result for running the operations in that order. | |
| // No weird inputs, everything is separated by one space. | |
| // Supported operators are +, *, -, = (for the = operator, if the values are the same return 1, otherwise return 0) | |
| // Print your results sorted numerically | |
| // Don't worry about the input expression size being too large | |
| // Your code should be written in javascript | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # A list of possible usernames to reserve to avoid | |
| # vanity URL collision with resource paths | |
| # It is a merged list of the recommendations from this Quora discussion: | |
| # http://www.quora.com/How-do-sites-prevent-vanity-URLs-from-colliding-with-future-features | |
| # Country TLDs found here: | |
| # http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains | |
| # Languages found here: | 
  
    
      This file contains hidden or 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
    
  
  
    
  | \documentclass[11pt]{article} | |
| \usepackage{amsmath,textcomp,amssymb,geometry,graphicx,enumitem, hyperref} | |
| \def\Name{NAME} % Your name | |
| \def\Class{CS161} | |
| \def\SID{SID} % Your student ID number | |
| \def\Login{cs161-xx} % Your login (your class account, cs170-xy) | |
| \def\Homework{3}%Number of Homework | |
| \def\Session{Spring 2016} | |
| \def\Collaborators{None} | 
  
    
      This file contains hidden or 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
    
  
  
    
  | 'use strict'; | |
| var Q = require('q'); | |
| function main(stdout, env, Nightmare) { | |
| const creds = { | |
| username: () => Q(env.SIMPLE_USERNAME), | |
| password: () => Q(env.SIMPLE_PASSWORD) | |
| }; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #!/usr/bin/env bash | |
| # Install command-line tools using Homebrew. | |
| # Ask for the administrator password upfront. | |
| sudo -v | |
| # Keep-alive: update existing `sudo` time stamp until the script has finished. | |
| while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #!/usr/bin/env python | |
| ### Memory Address | |
| # Memory Address of the Start of Door : 0xbffff7d8 | |
| # Memory Address of RIP ($eip) : 0xbffff7ec | |
| # Size of the Buffer Padding : 0xbffff7d8 - 0xbffff7ec = 20 bytes | |
| # Return Pointer : 0xbffff7ec + 4 = 0xbffff7f0 | |
| ### Login Information | 
  
    
      This file contains hidden or 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
    
  
  
    
  | { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "darken(#428bca, 6.5%)", | |
| "@brand-success": "#5cb85c", | 
NewerOlder
        