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
TypeError: Cannot read property 'getBufferPosition' of undefined | |
at TextEditor.module.exports.TextEditor.getCursorBufferPosition (/Applications/Atom.app/Contents/Resources/app/src/text-editor.js:1235:34) | |
at status-bar-cursor.CursorPositionView.updatePosition (/Applications/Atom.app/Contents/Resources/app/node_modules/status-bar/lib/cursor-position-view.js:48:73) | |
at status-bar-cursor.CursorPositionView.subscribeToActiveTextEditor (/Applications/Atom.app/Contents/Resources/app/node_modules/status-bar/lib/cursor-position-view.js:39:19) | |
at /Applications/Atom.app/Contents/Resources/app/node_modules/status-bar/lib/cursor-position-view.js:17:24 | |
at Emitter.module.exports.Emitter.emit (/Applications/Atom.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:71:11) | |
at /Applications/Atom.app/Contents/Resources/app/src/pane-container.js:285:34 | |
at Emitter.module.exports.Emitter.emit (/Applications/Atom.app/Contents/Resources/app/node_modules/event-kit/lib/emitter.js:71:11) | |
at Pane.module.exports |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
app.controller("KBHomeController", function ($scope, $http) { | |
$scope.loading = true; | |
$http.defaults.useXDomain = true; | |
// Esto en realidad lo hice siempre en el app.config, pero debería ser lo mismo: | |
delete $http.defaults.headers.common['X-Requested-With']; | |
// --- | |
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
[00:48:48] Connecting to [chat.freenode.net] on port 6667 | |
[00:48:49] Connection to host completed. | |
[00:48:49] -leandroa- *** Looking up your hostname... | |
[00:48:50] -leandroa- *** Checking Ident | |
[00:48:50] -leandroa- *** Couldn't look up your hostname | |
[00:48:59] -leandroa- *** No Ident response | |
[00:49:02] SASL authentication failed | |
[00:49:04] SASL authentication aborted |
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
users/ | |
directives/ | |
users.html | |
usersDirective.js | |
services/ | |
userService.js | |
items/ | |
directives/ | |
... | |
services/ |
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
from boto.s3.connection import S3Connection, Key | |
import glob | |
import os | |
filelist = filter(os.path.isfile, glob.glob('/tmp/motion/*.jpg')) | |
filelist.sort(key=lambda x: os.path.getmtime(x)) | |
filename = filelist[-1] | |
conn = S3Connection('', '') |
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
from os import walk | |
from mutagen.mp3 import MP3 | |
mypath = '/Volumes/Macintosh HD/Media/Music/iTunes/' | |
mypath = '/Volumes/Media HD/MP3/' | |
f = [] | |
artists = [] | |
a = 0 | |
b = 0 |
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
var data1 = [ | |
[1, 16.3], | |
[2, 11.6], | |
[3, 10.6] | |
]; | |
$.plot("#container", [ | |
{ | |
data: data1.sortBy(function(n) { | |
return n[0]; |
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
http://www.pythonregex.com/ | |
http://txt2re.com/ | |
http://gskinner.com/RegExr/ | |
http://regexpal.com/ | |
http://regex.larsolavtorvik.com/ | |
http://www.debuggex.com/?re=&str= |
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
{ | |
name: 'foo', | |
values: [1234, 4321, 2345] | |
}, | |
{ | |
name: 'bar', | |
values: [3222, 2321] | |
} |