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
Debugger entered--Lisp error: (void-function ivy-configure) | |
ivy-configure(swiper-query-replace :update-fn swiper--query-replace-updatefn) | |
byte-code("\300\301\302\303#\210\304\301\305\306#\207" [ivy-configure swiper-query-replace :update-fn swiper--query-replace-updatefn put no-counsel-M-x t] 4) | |
require(swiper) | |
byte-code("\300\301!\210\300\302!\210\300\303!\207" [require swiper compile dired] 2) | |
require(counsel) | |
(progn "Completion using ivy." (require 'ivy) (require 'counsel) (ivy-mode 1) (setq ivy-use-virtual-buffers t) (setq enable-recursive-minibuffers t) (global-set-key (kbd "M-x") 'counsel-M-x) (global-set-key (kbd "<f1> f") 'counsel-describe-function) (global-set-key (kbd "<f1> v") 'counsel-describe-variable) (global-set-key (kbd "<f1> l") 'counsel-find-library) (global-set-key (kbd "C-c k") 'counsel-ag) (global-set-key (kbd "C-c C-r") 'ivy-resume)) | |
(if (null (delq t (mapcar 'active-ability\? 'nil))) (progn "Completion using ivy." (require 'ivy) (require 'counsel) (ivy-mode 1) (setq ivy-use |
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
lsp-managed-mode(1) | |
lsp--text-document-did-open() | |
lsp--open-in-workspace(#s(lsp--workspace :ewoc nil :server-capabilities #<hash-table equal 15/65 0x129b869> :registered-server-capabilities nil :root "/home/velorin/python-test" :client #s(lsp--client :language-id nil :add-on? nil :new-connection (:connect #f(compiled-function (filter sentinel name environment-fn) #<bytecode 0x19bcfd1>) :test\? #f(compiled-function () #<bytecode 0x19bcfe9>)) :ignore-regexps nil :ignore-messages nil :notification-handlers #<hash-table equal 5/65 0x19bd37d> :request-handlers #<hash-table equal 0/65 0x19bdbb9> :response-handlers #<hash-table eql 1/65 0x19bdbd9> :prefix-function nil :uri-handlers #<hash-table equal 0/65 0x19bf3b9> :action-handlers #<hash-table equal 0/65 0x19bf3d9> :major-modes (python-mode) :activation-fn nil :priority 1 :server-id mspyls :multi-root nil :initialization-options lsp-python-ms--extra-init-params :custom-capabilities nil :library-folders-fn nil :before-file-open-fn nil :initialized-fn #f(compi |
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
Exception in thread "http-nio-8080-exec-9" java.lang.NoClassDefFoundError: ch/qos/logback/classic/spi/ThrowableProxy | |
at ch.qos.logback.classic.spi.LoggingEvent.<init>(LoggingEvent.java:119) | |
at ch.qos.logback.classic.Logger.buildLoggingEventAndAppend(Logger.java:419) | |
at ch.qos.logback.classic.Logger.filterAndLog_0_Or3Plus(Logger.java:383) | |
at ch.qos.logback.classic.Logger.log(Logger.java:765) | |
at org.slf4j.bridge.SLF4JBridgeHandler.callLocationAwareLogger(SLF4JBridgeHandler.java:221) | |
at org.slf4j.bridge.SLF4JBridgeHandler.publish(SLF4JBridgeHandler.java:303) | |
at java.util.logging.Logger.log(Logger.java:738) | |
at java.util.logging.Logger.doLog(Logger.java:765) | |
at java.util.logging.Logger.logp(Logger.java:1042) |
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
1. Concrete mathematics _ a foundation for computer science-Addison-Wesley | |
2. Ralph_P._Grimaldi_Discrete_and_Combinatorial_Math | |
3. Joel S. Cohen-Computer Algebra and Symbolic Computation_ Mathematical Methods (2003) | |
4. Joel S. Cohen-Computer Algebra and Symbolic Computation_ Elementary Algorithms (2002) |
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.config([ '$routeProvider', | |
($routeProvider)-> | |
$routeProvider | |
.when('/template/new', | |
templateUrl: "new.html" | |
controller: 'SomeOtherController' | |
) | |
]) |
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
def exists(name: String): Boolean = { | |
val query = "start n=node(*) where has(n.name) AND n.name=" + "\""+ name + "\"" + " return n" | |
// val query = """start n=node(1) return n, n.name""" | |
var result = true | |
result = withTx { neo => | |
val typedResult = query.execute.asCC[Test_Matrix]("n") | |
println("should return" + typedResult.toList.isEmpty) | |
if(typedResult.toList.isEmpty) { | |
false | |
}else { |
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
(defun search-github() | |
(request | |
"https://api.github.com/search/repositories" | |
:params '(("q" . "*.g8" ) ("sort" . "stars") ("order" . "desc")) | |
:parser 'json-read | |
:success (function* | |
(lambda (&key data &allow-other-keys) | |
(let* ((items (assoc-default 'items data)) | |
(names (assoc-default 'name items)) | |
(princ items))))))) |
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
(defun search-github() | |
(request | |
"https://api.github.com/search/repositories" | |
:params '(("q" . "*.g8" ) ("sort" . "stars") ("order" . "desc")) | |
:parser 'json-read | |
:success (function* | |
(lambda (&key data &allow-other-keys) | |
(let* ((items (assoc-default 'items data))) | |
items))))) |
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
(defun search-github() | |
(request | |
"https://api.github.com/search/repositories" | |
:params '(("q" . "*.g8" ) ("sort" . "stars") ("order" . "desc")) | |
:parser 'json-read | |
:success (function* | |
(lambda (&key data &allow-other-keys) | |
(let* ((items (assoc-default 'items data))) | |
(items)))))) |
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
(defun search-github(repository_name) | |
(request | |
"https://api.github.com/search/repositories" | |
:params '(("q" . "test" ) ("sort" . "stars") ("order" . "desc")) | |
:parser 'json-read | |
:success (function* | |
(lambda (&key data &allow-other-keys) | |
(let* ((items (assoc-default 'items data)) | |
(names (mapcar (lambda (item) (assoc-default 'name item)) items)) |
NewerOlder