Skip to content

Instantly share code, notes, and snippets.

name: ogs-workshop
dependencies:
- python>=3.8, <=3.10
- pip
- pip:
  - jupyterlab==3.4.8
  - git+https://github.com/joergbuchwald/ogs6py@0f9e738e2ee469c8bde4204b2151238973417694#egg=ogs6py
  - git+https://github.com/joergbuchwald/VTUinterface@003e172a2f08f6f0acc15855b33a256d063c9804#egg=vtuinterface
  - gmsh==4.10.5
  - git+https://github.com/dominik-kern/msh2vtu@29b5f5ebe8cf98f0f99fae68720bf19cac02e582#egg=msh2vtu
This file has been truncated, but you can view the full file.
{"sources": {"MathLib/TemplatePoint.h": {"": {"functions": {"_ZN7MathLib13TemplatePointIdLm3EED0Ev": {"start_line": 49, "execution_count": 0}, "_ZN7MathLib13TemplatePointIdLm3EED1Ev": {"start_line": 49, "execution_count": 36360}, "_ZNK7MathLib13TemplatePointIdLm3EE5writeERSo": {"start_line": 82, "execution_count": 0}, "_ZN7MathLib13TemplatePointIdLm3EE4readERSi": {"start_line": 88, "execution_count": 0}, "_ZN7MathLib13TemplatePointIdLm3EEC1ESt5arrayIdLm3EE": {"start_line": 103, "execution_count": 30458581}, "_ZN7MathLib13TemplatePointIdLm3EEC2ESt5arrayIdLm3EE": {"start_line": 103, "execution_count": 47010}, "_ZN7MathLibeqIdLm3EEEbRKNS_13TemplatePointIT_XT0_EEES5_": {"start_line": 109, "execution_count": 3058}, "_ZN7MathLib13TemplatePointIdLm1EED1Ev": {"start_line": 49, "execution_count": 0}, "_ZN7MathLib13TemplatePointIdLm1EED0Ev": {"start_line": 49, "execution_count": 0}, "_ZN7MathLib13TemplatePointIdLm2EED1Ev": {"start_line": 49, "execution_count": 0}, "_ZN7MathLib13TemplatePointIdLm2EED0Ev": {"start_line":
Process: Microsoft Word [41447]
Path: /Applications/Microsoft Word.app/Contents/MacOS/Microsoft Word
Identifier: com.microsoft.Word
Version: 16.46 (16.46.20123000)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Microsoft Word [41447]
User ID: 501
Date/Time: 2021-01-04 15:22:58.482 +0100
a img{border:0;text-decoration:none}/*!
* Bootstrap v3.3.5 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*//*!
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=61060d7a71a858930e20)
* Config saved to config.json and https://gist.github.com/61060d7a71a858930e20
*//*!
* Bootstrap v3.3.5 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
ID CALL CN TYPE HANDICAP NAME
06DDAEDD D-3119 B1 Bocian 1.000 Boc-19
06DD8288 D-3685 B2 Bocian 1.000 Boc-85
06DD9E95 D-4946 M1 Mistral 1.000 Mistral-46
06DDAD4B D-4963 M2 Mistral 1.000 Mistral-63
06DDF939 D-9425 JS Jantar 1.000 Jantar
06DDFE25 D-0923 LS LS-1c 1.000 LS-1
06DDF951 D-2477 JA Janus 1.000 Janus
@bilke
bilke / comment.py
Created June 19, 2020 19:00
Close all PRs and issues on GitHub and add commen
from github import Github, PullRequest
g = Github("[Personal Access Token]")
r = g.get_repo('ufz/ogs')
for issue in r.get_issues(state='all', direction='asc'):
comment_str = "OpenGeoSys development has been moved to [GitLab](https://gitlab.opengeosys.org/ogs/ogs).\n\n"
try:
pr = issue.as_pull_request()
@bilke
bilke / reports.html
Created June 11, 2020 12:46
OpenGeoSys GitLab CI reports link page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Build Reports</title>
</head>
<body>
<ul>
<li><a href="build/docs/index.html">Doxygen</a></li>
@bilke
bilke / rm-lfs.sh
Last active June 19, 2020 11:46
OpenGeoSys: Migrate from lfs to git
cd ogs
git lfs untrack '*.jpg'
git add --renormalize .
git commit -m '[git] Converted jpg from lfs to git.'
git lfs untrack '*.png'
git add --renormalize .
git commit -m '[git] Converted png from lfs to git.'
git lfs untrack '*.pdf'
git add --renormalize .
git commit -m '[git] Converted pdf from lfs to git.'
@bilke
bilke / fine.ini
Last active January 22, 2020 12:01
ParaView Python Error
[General]
pqOutputWidget.ShowFullMessages=false
OutputMessages.ShowFullMessages=true
GeneralSettings.ShowWelcomeDialog=0
recent.ParaViewSources="sources;CubeSource|"
recent.ParaViewFilters="filters;ProgrammableFilter|"
autoUpdateColorMapEditor2=true
RecentlyUsedResourcesList="session:/D:\\MtTerri\\ParaView\\Fe-Experiment-Excavation.pvsm#builtin:;PARAVIEW_STATE:1", "session:/D:\\Poyang\\ParaView\\RiverPollution.pvsm#builtin:;PARAVIEW_STATE:1", "session:/D:\\Poyang\\ParaView\\Poyang-Sfc.pvsm#builtin:;PARAVIEW_STATE:1"
showAdvancedPropertiesColorOpacityEditorWidget=false
@bilke
bilke / Dockerfile
Created January 2, 2020 14:03
Output of python ogscm/cli.py --pm system --ompi 4.0.1 --runtime
FROM ubuntu:18.04 AS build
# Generated with ogs-container-maker 1.2.0
RUN apt-get update -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
curl \
make \
tar \
wget && \