Posts

Showing posts from January 20, 2019

La Fleurantine

Image
La Fleurantine war eine französische Automarke. [1] [2] [3] Inhaltsverzeichnis 1 Unternehmensgeschichte 2 Fahrzeuge 3 Literatur 4 Einzelnachweise Unternehmensgeschichte | Das Unternehmen J. Lagarde et Cie aus Fleurance begann 1906 mit der Produktion von Automobilen, die als La Fleurantine vermarktet wurden. Im gleichen Jahr endete die Produktion bereits wieder. Fahrzeuge | Das einzige Modell war ein Dreirad, bei dem sich das einzelne Rad hinten befand. Für den Antrieb sorgte ein Zweizylindermotor, der über eine Kette das Hinterrad antrieb. Die Karosserie bot zwei Personen Platz. Literatur | Harald H. Linz, Halwart Schrader: Die Internationale Automobil-Enzyklopädie . United Soft Media Verlag, München 2008, ISBN 978-3-8032-9876-8.   George Nick Georgano (Chefredakteur): The Beaulieu Encyclopedia of the Automobile. Volume 2: G–O. Fitzroy Dearborn Publishers, Chicago 2001, ISBN 1-57958-293-1. (englisch) George Nick Georgano: Autos. En

Is mysql.format in nodejs MYSQL safe from unescaped input?

Image
1 I've hear that preparing MySQL queries prevents injection. I'm working with nodejs, so I've found MySql Preparing Queries. According to the documentation, You can use mysql.format to prepare a query with multiple insertion points, utilizing the proper escaping for ids and values. Does that mean that I can put unescaped things in userId and get an escaped mysql request called sql ? The code is: var sql = "SELECT * FROM ?? WHERE ?? = ?"; var inserts = ['users', 'id', userId]; sql = mysql.format(sql, inserts); mysql node.js database share | improve this question asked Nov 20 at 18:53

Can't make new dir with mkdir

Image
2 When I run mkdir ../../bin/Release_Linux/Resources Im getting an error $ mkdir ../../bin/Release_Linux/Resources mkdir: cannot create directory ‘../../bin/Release_Linux/Resources’: No such file or directory Or just mkdir Release_Linux/Resources mkdir: cannot create directory ‘Release_Linux/Resources’: No such file or directory command-line mkdir share | improve this question edited Nov 29 at 0:09 muru 1 asked Nov 28 at 15:41 Slobodan Vidovic 37 6