Posts

Showing posts from January 1, 2019

How to send Logs to CloudWatch from a iOS App?

Image
1 1 I have a iOS App and want to log some things for example when an error happened. Is there a possibility to send those Logs to Cloudwatch? Thank you. ios amazon-web-services amazon-cloudwatch share | improve this question asked Nov 23 '18 at 12:46 Dr. Marc 17 4 add a comment  |  1 1

csvsimple vs. conditional row coloring

Image
0 1 I've a CSV file what I want process with csvsimple. My desire is to color some rows based on a conditional (one specified column has bigger value). Here is an MWE: documentclass[12pt]{article} usepackage{filecontents} usepackage{csvsimple} usepackage[table]{xcolor} begin{document} begin{filecontents*}{mwe.csv} a,b,c,d 1,1,2,2 1,3,2,1 end{filecontents*} begin{tabular}{*{4}{c}} csvreader[ head to column names, before line={ifnumd>1rowcolor{gray}fi}, late after line={\} ]{mwe.csv}{}{ a&b&c&d } end{tabular} end{document} In this case I gave an error message: ! Misplaced noalign. <recently read> noalign l.18 } How can I solve it? conditionals csv csvsimple rowcolor