Skip to content

Instantly share code, notes, and snippets.

View Siel's full-sized avatar

Julian Otalvaro Siel

View GitHub Profile
❯ cmake --build build --verbose
/usr/bin/cmake -S/home/siel/dev/learncpp20/profc++ -B/home/siel/dev/learncpp20/profc++/build --check-build-system CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start /home/siel/dev/learncpp20/profc++/build/CMakeFiles /home/siel/dev/learncpp20/profc++/build/CMakeFiles/progress.marks
/usr/bin/make -f CMakeFiles/Makefile2 all
make[1]: Entering directory '/home/siel/dev/learncpp20/profc++/build'
/usr/bin/make -f CMakeFiles/initial.dir/build.make CMakeFiles/initial.dir/depend
make[2]: Entering directory '/home/siel/dev/learncpp20/profc++/build'
cd /home/siel/dev/learncpp20/profc++/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /home/siel/dev/learncpp20/profc++ /home/siel/dev/learncpp20/profc++ /home/siel/dev/learncpp20/profc++/build /home/siel/dev/learncpp20/profc++/build /home/siel/dev/learncpp20/profc++/build/CMakeFiles/initial.dir/DependInfo.cmake --color=
make[2]: Leaving directory '/home/siel/dev/learncpp20/profc++/build'
/usr/bin/make -f CMakeFiles/in
@Siel
Siel / iterm2-solarized.md
Created March 6, 2018 14:05 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Meslo powerline font + [Powerlevel9k] - (macOS)

Default

Default

Powerlevel9k

Powerlevel9k

@Siel
Siel / user.js
Created November 2, 2017 14:34 — forked from EtienneR/user.js
XMLHttpRequest RESTful (GET, POST, PUT, DELETE)
// Get all users
var url = "http://localhost:8080/api/v1/users";
var xhr = new XMLHttpRequest()
xhr.open('GET', url, true)
xhr.onload = function () {
var users = JSON.parse(xhr.responseText);
if (xhr.readyState == 4 && xhr.status == "200") {
console.table(users);
} else {
console.error(users);