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
""" | |
Sources: | |
https://www.data.gouv.fr/fr/datasets/donnees-relatives-aux-tests-de-depistage-de-covid-19-realises-en-laboratoire-de-ville/ | |
""" | |
import pandas as pd | |
import matplotlib.pyplot as plt | |
covid_test_url = "https://www.data.gouv.fr/fr/datasets/r/b4ea7b4b-b7d1-4885-a099-71852291ff20" | |
covid_test_csv = pd.read_csv((covid_test_url), sep=";", index_col=1, parse_dates=True,) |
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
""" | |
Reads Intan Technologies CLAMP data file generated by controller GUI. | |
Christoph Schmidt-Hieber | |
2016-11-05 | |
Mostly a Python version of read_Intan_CLP_file.m from | |
http://www.intantech.com/files/Intan_CLAMP_software_compiled_v1_0.zip | |
as of 2016-11-05 |
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; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 | |
# $Id$ | |
PortSystem 1.0 | |
name TrueCrypt | |
version 7.1a | |
revision 2 | |
categories security | |
platforms darwin |
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
Index: opennx/AsyncProcess.cpp | |
=================================================================== | |
--- opennx/AsyncProcess.cpp (revision 724) | |
+++ opennx/AsyncProcess.cpp (working copy) | |
@@ -208,7 +208,7 @@ | |
wxOutputStream *os = GetOutputStream(); | |
if (os) { | |
if (doLog) | |
- ::myLogTrace(MYTRACETAG, wxT("Sending: '%s'"), s.c_str()); | |
+ ::myLogTrace(MYTRACETAG, wxT("Sending: '%s'"), s.wc_str()); |
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
# (c) 2013 www.nerdenmeister.org | |
diff -ur ./Build/Resources/MacOSX/Info.plist.xml ./b/Build/Resources/MacOSX/Info.plist.xml | |
--- ./Build/Resources/MacOSX/Info.plist.xml 2012-02-07 10:36:48.000000000 +0000 | |
+++ ./b/Build/Resources/MacOSX/Info.plist.xml 2014-04-20 22:20:31.000000000 +0100 | |
@@ -38,6 +38,9 @@ | |
<key>LSRequiresCarbon</key> | |
<true/> | |
+ <key>NSPrincipalClass</key> | |
+ <string>NSApplication</string> |