Skip to content

Instantly share code, notes, and snippets.

@gergoszka
gergoszka / teszt.txt
Created October 8, 2019 12:09
Teszt Gist
hello gist!
@gergoszka
gergoszka / hello.txt
Created October 8, 2019 12:16
Test gist
Hello, World!
#include <iostream>
#include <string>
#include <map>
#include <iomanip>
#include <fstream>
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/program_options.hpp>

Rmarkdown telepítési útmutató

Ez a dokumentum a Web technológiák gyakorlati órán használt Rmarkdown fájl html-é való átkonvertálását és az ehhez szügséges programok telepítését mutatja be.

R nyelvbeli csomagok

Ahhoz, hogy futtatni tudjuk az Rmarkdown Makefile-ját először le kell tölteni magát az R nyelvet és a ggplot2 grafikon ábrázoló csomagot.

conda install r r-ggplot2

How many data types are there in modern JS?

There are eight basic data types in JavaScript: string, number, bigint, boolean, undefined, null, symbol, object. Here, all data types except Object are primitive data types.

// What output will the following code produce?
console.log(typeof 1); // number
console.log(typeof ''); // string
console.log(typeof {}); // object
console.log(typeof (() => {})); // function
console.log(typeof function() {}); // function
console.log(typeof true); // boolean