SPC: find file , switch buffer . browse files
MX
; EX < switch buffer ` eval u universal arg x pop up scratch
| ;; init.el | |
| ;; Needs to be here: https://github.com/hlissner/doom-emacs/issues/401#issuecomment-588502773 | |
| ;; | |
| ;; Sadly it needs to be here as it must be in place before evil is loaded | |
| ;; It allows you to go up and down on a wrapped line | |
| (setq evil-respect-visual-line-mode t) | |
| // Interfaces assigned a value of `nil` are not equal to `nil` | |
| package main | |
| import "fmt" | |
| type I interface { | |
| } | |
| type T struct { |
| # An answer to https://tour.golang.org/moretypes/26 | |
| # This is a bit more readable than other examples that I found online | |
| # Implement a fibonacci function that returns a function (a closure) that returns successive fibonacci numbers (0, 1, 1, 2, 3, 5, ...). | |
| package main | |
| import "fmt" | |
| // fibonacci is a function that returns | |
| // a function that returns an int. |
| def debug_require(path) | |
| $LOAD_PATH.each do |lp| | |
| full_path = "#{lp}/#{path}" | |
| puts full_path if File.file?(full_path) | |
| full_rb_path = "#{full_path}.rb" | |
| puts full_rb_path if File.file?(full_rb_path) | |
| end | |
| end |
| proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" | |
| proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" | |
| dyn-530.optus.com.au - - [22/Apr/2009:18:52:51 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" | |
| dhcp-465.telstra.com.au - - [22/Apr/2009:18:52:51 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 58636 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" | |
| proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Moz |
| class Object | |
| def | | |
| yield(self) | |
| end | |
| end | |
| './public/webpack/manifest.json' | |
| .|(&File.method(:read)) | |
| .|(&JSON.method(:parse)) |
| scriptEl.onload = function() { | |
| alert('yo') | |
| } |
I hereby claim:
To claim this, I am signing this object:
| SELECT | |
| gem, | |
| COUNT(*) c | |
| FROM ( | |
| SELECT | |
| REGEXP_EXTRACT( | |
| line, | |
| r'.*dependency\s*[\'"]([^\'"]*)[\'"]' | |
| ) gem, | |
| id |