I hereby claim:
- I am runeandersen92 on github.
- I am runeandersen92 (https://keybase.io/runeandersen92) on keybase.
- I have a public key whose fingerprint is D56E 8CD3 845F 7EF2 E075 1C2F C54A CF98 FCAC A52C
To claim this, I am signing this object:
| (require 'package) | |
| (require 'cl) | |
| ;; Load anything in site-lisp | |
| (eval-and-compile | |
| (mapc | |
| #'(lambda (path) | |
| (push (expand-file-name path user-emacs-directory) load-path)) | |
| '("site-lisp"))) |
I hereby claim:
To claim this, I am signing this object:
| var blogApp = angular.module('blogApp', [ | |
| "ngRoute", | |
| "blogControllers", | |
| "blogFilters", | |
| "blogServices"]); | |
| blogApp.config(['$routeProvider', | |
| function($routeProvider) { | |
| $routeProvider. | |
| when('/', { |
| <h1>Welcome to INDEX! </h1> | |
| <% @user.each do |m| %> | |
| <p>Email: <%= m.email %></p> | |
| <br /> | |
| <% end %> |
| ;;; Packages manager for Emacs | |
| (require 'package) | |
| (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/")) | |
| (add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/")) | |
| ;;; | |
| ;;; Keybindings | |
| (global-set-key [(f5)] 'ack) | |
| (global-set-key (kbd "C-x ;") 'kill-some-buffers) | |
| (define-key global-map (kbd "RET") 'newline-and-indent) ; When pressing RET (Enter) makes a new line and ident it |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Rettiwt</title> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <link rel="stylesheet" type="text/css" href="css/stylecss.css"> | |
| </head> | |
| <body> | |
| <h1>Rettiwit</h1> | |
| <div id="content"> |
| #define S_base03 #002b36 | |
| #define S_base02 #073642 | |
| #define S_base01 #586e75 | |
| #define S_base00 #657b83 | |
| #define S_base0 #839496 | |
| #define S_base1 #93a1a1 | |
| #define S_base2 #eee8d5 | |
| #define S_base3 #fdf6e3 | |
| #define S_yellow #b58900 | |
| #define S_orange #cb4b16 |
| { | |
| "name": "bootstrap" | |
| , "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development." | |
| , "version": "2.3.1" | |
| , "keywords": ["bootstrap", "css"] | |
| , "homepage": "http://twitter.github.com/bootstrap/" | |
| , "author": "Twitter Inc." | |
| , "scripts": { "test": "make test" } | |
| , "repository": { | |
| "type": "git" |
| public class SearchSize extends SwingWorker<Long, Long> { | |
| private String currentPath; | |
| private JLabel lblSize; | |
| private long totalSize = 0; | |
| public SearchSize(String path, JLabel lblSize){ | |
| this.currentPath = path; | |
| this.lblSize = lblSize; | |
| } |
| from bs4 import BeautifulSoup | |
| import requests | |
| import os | |
| images = [] | |
| final = "" | |
| r = requests.get('http://xkcd.com/') | |
| soup = BeautifulSoup(r.content) |