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
| import os | |
| from pyquery import PyQuery | |
| import re | |
| def parse(content: str) -> None: | |
| dom = PyQuery(content) | |
| table = dom("table") | |
| opttable = table.filter("#optionTable") | |
| for tr in opttable.children(): | |
| if len(PyQuery(tr).find("td")) == 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
| version: '3.3' | |
| services: | |
| neo4j: | |
| image: neo4j:latest | |
| volumes: | |
| - ./neo4j/data:/data | |
| - ./neo4j/logs:/logs | |
| - ./neo4j/conf:/conf | |
| ports: | |
| - 7474:7474 # http |
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
| # -*- coding: utf-8 -* | |
| import os | |
| import sys | |
| import functools | |
| import codecs | |
| import types | |
| import glob | |
| import re | |
| from convertToPDF import convertToPDF |
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
| $ anaconda search -t conda qutip | |
| $ conda install -c https://conda.anaconda.org/ajgpitch qutip |
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
| // @formatter:off | |
| name := "sample" | |
| organization := "com.github.cive" | |
| scalaVersion := "2.11.8" | |
| scalacOptions ++= Seq("-unchecked", "-deprecation", "-Xlint") | |
| classpathTypes += "maven-plugin" |
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
| /* | |
| * sample code | |
| * from http://d.hatena.ne.jp/fjnl/20101127/1290880661 | |
| * comment by cive | |
| */ | |
| #include <iostream> | |
| #include <iterator> | |
| #include <curand.h> |
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
| # dockerFile | |
| # 2015/2/25 | |
| # CentOS Server | |
| # playframework2.x (oracle java8, scala) | |
| # CentOS version 6 | |
| FROM centos:centos6 | |
| MAINTAINER cive <hukurou55.1@gmail.com> | |
| WORKDIR /data |
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
| # の優先度 | |
| ## 量子力学・量子光学 10000 | |
| ## scala・playframework 1000 | |
| ## 独学支援のサイト作り 8000 | |
| ## 代数学 500 |