I hereby claim:
- I am fiv0 on github.
- I am fivo (https://keybase.io/fivo) on keybase.
- I have a public key ASCGV9p8o7xICM0j-IFlO8lT6JWvtPtgIjWd24yfXgrPTQo
To claim this, I am signing this object:
org.xml.sax.SAXParseException; systemId: http://repository.gdi-de.org/schemas/adv/citygml/1.0/cityGMLBaseLoD1.xsd; lineNumber: 1; columnNumber: 1; Premature end of file. | |
java.lang.RuntimeException: org.xml.sax.SAXParseException; systemId: http://repository.gdi-de.org/schemas/adv/citygml/1.0/cityGMLBaseLoD1.xsd; lineNumber: 1; columnNumber: 1; Premature end of file. | |
at org.example.LibraryTest.parseXSDFile(LibraryTest.java:362) | |
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) | |
at java.base/java.lang.reflect.Method.invoke(Method.java:580) |
(require '[clojure.java.io :as io] | |
'[clojure.data.csv :as csv] | |
'[clojure.string :as str]) | |
(defn header [edn-map] | |
(->> edn-map keys (map name))) | |
(defn write-to-csv-file | |
([file edn-results] (write-to-csv-file file edn-results {})) | |
([file edn-results {:keys [append write-header] :or {write-header true} :as _opts}] |
(ns scratch | |
(:require [clojure.string :as str])) | |
;;/////////////////////////////////////////////////////////////////////////////// | |
;;=============================================================================== | |
;; Parsing | |
;;=============================================================================== | |
;;\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ | |
/************************************************ | |
* ROFI Color theme | |
* User: leofa | |
* Copyright: 2017 leofa | |
***********************************************/ | |
* { | |
selected-normal-foreground: rgba ( 249, 249, 249, 100 % ); | |
foreground: rgba ( 196, 203, 212, 100 % ); | |
normal-foreground: @foreground; |
(defn inactive[] | |
(js/console.log "You have been inactive!!!")) | |
(def timer (atom nil)) | |
(defn reset-timer [] | |
(js/clearTimeout @timer) | |
(swap! timer #(js/setTimeout inactive 3000))) | |
(defn inactivity-time [] |
;; needed if you don't use leiningen | |
(do | |
(create-ns 'leiningen.core.main) | |
(intern 'leiningen.core.main 'warn #(apply println "[warn]" %&)) | |
(intern 'leiningen.core.main 'info #(apply println "[info]" %&)) | |
(intern 'leiningen.core.main 'debug #(apply println "[debug]" %&)) | |
(dosync (commute @#'clojure.core/*loaded-libs* conj 'leiningen.core.main))) | |
(require '[mranderson.move :as move]) | |
(require '[clojure.java.io :as io]) |
(ns frontend-re-frame.core | |
(:require [re-frame.core :as re-frame] | |
[reagent.core :as reagent] | |
[reitit.core :as r] | |
[reitit.coercion.spec :as rss] | |
[reitit.frontend :as rf] | |
[reitit.frontend.controllers :as rfc] | |
[reitit.frontend.easy :as rfe])) | |
;;; Events ;;; |
CL-GIT:AMBIGUOUS-ERROR | |
[symbol] | |
AMBIGUOUS-ERROR names the condition-class #<SB-PCL::CONDITION-CLASS CL-GIT:AMBIGUOUS-ERROR>: | |
Class precedence-list: AMBIGUOUS-ERROR, BASIC-ERROR, SIMPLE-ERROR, | |
SIMPLE-CONDITION, ERROR, SERIOUS-CONDITION, | |
CONDITION, SB-PCL::SLOT-OBJECT, T | |
Direct superclasses: BASIC-ERROR | |
No subclasses. | |
No direct slots. |
I hereby claim:
To claim this, I am signing this object:
# !/usr/bin/env python | |
# -*- coding: utf-8; py-indent-offset:4 -*- | |
from __future__ import (absolute_import, division, print_function, | |
unicode_literals) | |
import sys | |
import time | |
from datetime import datetime, timedelta | |
import backtrader as bt | |
import ccxt |