Skip to content

Instantly share code, notes, and snippets.

View dhonx's full-sized avatar
🚩
Working on Private Projects

Don Alfons Nisnoni dhonx

🚩
Working on Private Projects
View GitHub Profile
@dhonx
dhonx / css-hacks.css
Last active September 6, 2019 09:58
CSS Hacks
/* Read for more in here -> https://dev.to/gajus/my-favorite-css-hack-32g3 */
* { background-color: rgba(255,0,0,.2); }
* * { background-color: rgba(0,255,0,.2); }
* * * { background-color: rgba(0,0,255,.2); }
* * * * { background-color: rgba(255,0,255,.2); }
* * * * * { background-color: rgba(0,255,255,.2); }
* * * * * * { background-color: rgba(255,255,0,.2); }
* * * * * * * { background-color: rgba(255,0,0,.2); }
* * * * * * * * { background-color: rgba(0,255,0,.2); }
* * * * * * * * * { background-color: rgba(0,0,255,.2); }
@dhonx
dhonx / hello-world.cc
Created August 18, 2019 08:02 — forked from tejom/hello-world.cc
console.log v8
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fstream>
#include <iostream>
@dhonx
dhonx / c_cpp_properties.json
Last active September 17, 2019 23:04
VSCode C++ Config File for Node-GTK Project
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/glib-2.0",
"${HOME}/.node-gyp/12.9.1/include/node",
"/usr/lib/x86_64-linux-gnu/glib-2.0/include",
"/usr/include/gobject-introspection-1.0"