Compile with
g++ -lCE3D2 --std=c++11 anim.cpp -o anim
Install CE3D2 before! :D
import Base: iterate, length, eltype | |
struct Pairwise{IterType} | |
iter::IterType | |
end | |
function iterate(pairwise::Pairwise) | |
next = iterate(pairwise.iter) | |
return iterate(pairwise, next) | |
end |
from argparse import ArgumentParser, Namespace | |
import sys | |
def main(args: Namespace): | |
pass | |
def create_argparser() -> ArgumentParser: | |
parser = ArgumentParser() |
#!/usr/bin/env bash | |
# How to use: | |
# bash merge.sh <PR-id> | |
set -e | |
git checkout master | |
git pull |
from random import randint | |
dices = 2 | |
def wuerfeln(): | |
return randint(1, 6) | |
def fusionieren(a, b): | |
sortierte_liste = sorted([a, b]) |
D:\Users\MAK\Eigene Dokumente\GitHub\coala [Makman2/linter-update ≡ +3 ~0 -0 !]> py.test --cov --cov-report html | |
============================= test session starts ============================= | |
platform win32 -- Python 3.4.3, pytest-2.8.7, py-1.4.31, pluggy-0.3.1 | |
rootdir: D:\Users\MAK\Eigene Dokumente\GitHub\coala, inifile: setup.cfg | |
plugins: cov-2.2.1, env-0.6.0, mock-1.1, timeout-1.0.0, xdist-1.14 | |
collected 549 items / 14 skipped | |
coalib\bearlib\naming_conventions\__init__.py .... | |
coalib\bears\Bear.py .. | |
coalib\bears\requirements\CondaRequirement.py . |
Compile with
g++ -lCE3D2 --std=c++11 anim.cpp -o anim
Install CE3D2 before! :D
============================= test session starts ============================== | |
platform linux -- Python 3.4.3, pytest-2.8.7, py-1.4.31, pluggy-0.3.1 | |
rootdir: /home/mak/dev/coala, inifile: setup.cfg | |
plugins: timeout-1.0.0, xdist-1.14, doc-0.0.1, env-0.6.0, cov-2.2.1 | |
collected 549 items | |
coalib/bears/Bear.py . | |
coalib/collecting/Importers.py . | |
coalib/misc/Annotations.py . | |
coalib/misc/Decorators.py .. |
mak@hp-elitebook:~/dev/coala (master)$ git pull | |
Already up-to-date. | |
mak@hp-elitebook:~/dev/coala (master)$ sudo pip3 install coala coala-bears --pre --upgrade | |
Requirement already up-to-date: coala in /usr/lib/python3.4/site-packages | |
Requirement already up-to-date: coala-bears in /usr/lib/python3.4/site-packages | |
Requirement already up-to-date: setuptools>=19.2 in /usr/lib/python3.4/site-packages (from coala) | |
Requirement already up-to-date: validators~=0.10 in /usr/lib/python3.4/site-packages (from coala) | |
Requirement already up-to-date: libclang-py3==0.2 in /usr/lib/python3.4/site-packages (from coala) | |
Requirement already up-to-date: PyPrint~=0.2.3 in /usr/lib/python3.4/site-packages (from coala) | |
Requirement already up-to-date: appdirs~=1.4.0 in /usr/lib/python3.4/site-packages (from coala) |
Afterwork improvements: | |
- Catch regex.compile error and rethrow as ValueError? | |
- Implement GlobalBear support | |
- More intelligent metadata-merge that is not so merge-order-sensitive | |
- regex-output-format: Implement even more checks: | |
- Use of capturing groups | |
- Unknown named capturing groups | |
- prerequisite_check_command: Remove and let the user override it | |
himself + provide helper utilities (advanced custom command check, | |
derivations for specific stuff (java module check etc.) |
package coz | |
import com.jme3.app.SimpleApplication; | |
import com.jme3.material.Material; | |
import com.jme3.math.Vector3f; | |
import com.jme3.scene.Geometry; | |
import com.jme3.scene.shape.Box; | |
import com.jme3.math.ColorRGBA; | |
/** Sample 1 - how to get started with the most simple JME 3 application. |