I hereby claim:
- I am fndari on github.
- I am fndari (https://keybase.io/fndari) on keybase.
- I have a public key whose fingerprint is 3BFB 6FAE 2BE8 D881 9D5E 54D0 974F EA65 3DDB DFFB
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>Indentation Rules</string> | |
| <key>scope</key> | |
| <string>text.tex, sources.bib</string> | |
| <key>settings</key> | |
| <dict> |
| void setCustomStyle() | |
| { | |
| TStyle* customStyle = new TStyle("customStyle", "customStyle"); | |
| customStyle->SetDrawBorder(0); | |
| customStyle->SetCanvasBorderMode(0); | |
| customStyle->SetFrameBorderMode(0); | |
| customStyle->SetPadBorderMode(0); | |
| customStyle->SetPalette(1,0); // avoid horrible default color scheme |
| #include <fstream> | |
| #include <iostream> | |
| struct Parameters | |
| { | |
| float a; | |
| float b; | |
| float c; | |
| }; |
| #!/usr/bin/env python3 | |
| from tinydb import TinyDB | |
| from tinydb.storages import Storage, touch | |
| import yaml | |
| class TestYamlStorage1(Storage): | |
| """ | |
| Store the data in a YAML file. |
| # from rootpy import * | |
| from rootpy.plotting.func import BaseFunction | |
| def getitem_patched(self, value): | |
| # using `str` instead of `basestring` with py3 | |
| # use six.string_types for py2 compatibility | |
| if isinstance(value, str): | |
| idx = self.GetParNumber(value) |
I hereby claim:
To claim this, I am signing this object:
| dependencies: | |
| - python>=3.6 | |
| - pandas | |