Special Thanks to KacKLaPPen23 and iNViSiBiLiTi for making this guide possible and being generally excellent people!
Programming Duck PCBs with O2D is a notoriously shitty experience.
Luckily with O2D 1.10 and this guide it will be less shitty!
| import pandas as pd | |
| df = pd.DataFrame({ 'color' : ['Blue', 'Blue', 'Green'], 'name' : ['Bernard', 'Bernard', 'Bernard']}) | |
| print df.groupby(['name']).agg(lambda x:x.value_counts().index[0]) |
| JC = javac | |
| .SUFFIXES: .java .class | |
| .java.class: | |
| $(JC) $*.java | |
| CLASSES = \ | |
| Tokenizer.java \ | |
| Scanner.java \ | |
| Parser.java \ | |
| Printer.java \ | |
| Executor.java \ |