Skip to content

Instantly share code, notes, and snippets.

View ebkalderon's full-sized avatar
⚔️
Code is compiling

Eyal Kalderon ebkalderon

⚔️
Code is compiling
View GitHub Profile
@ebkalderon
ebkalderon / generate-whatsapp.sh
Last active June 8, 2018 19:32
Script which generates a WhatsApp desktop web app for Linux
#!/bin/bash
# Uses generates a WhatsApp desktop client for Linux.
#
# # Dependencies:
#
# ## Required:
# * `nativefier` (https://github.com/jiahaog/nativefier)
#
# ## Optional (only for Moka icon theme)

Keybase proof

I hereby claim:

  • I am ebkalderon on github.
  • I am ebkalderon (https://keybase.io/ebkalderon) on keybase.
  • I have a public key whose fingerprint is D5AD 5BD4 7835 B0F0 B0C3 046C 00AB 4C09 42DC BA25

To claim this, I am signing this object:

@ebkalderon
ebkalderon / openpgp.txt
Created November 10, 2017 06:08
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:d5ad5bd47835b0f0b0c3046c00ab4c0942dcba25]
@ebkalderon
ebkalderon / openpgp.txt
Created November 10, 2017 06:04
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:d5ad5bd47835b0f0b0c3046c00ab4c0942dcba25]
@ebkalderon
ebkalderon / openpgp.txt
Created November 10, 2017 06:04
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:d5ad5bd47835b0f0b0c3046c00ab4c0942dcba25]
@ebkalderon
ebkalderon / openpgp.txt
Created November 10, 2017 06:04
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:d5ad5bd47835b0f0b0c3046c00ab4c0942dcba25]
@ebkalderon
ebkalderon / amethyst_renderer_new.rs
Created February 23, 2017 01:44
Basic amethyst_renderer example with revamped API
//! Launches an empty renderer window with a deferred pipeline and white color.
//!
//! Uses `rayon` and `num_cpus` internally to batch `gfx::Encoder`s efficiently
//! and maximize parallelism. Haven't uploaded changes to GitHub since Amethyst is
//! completely broken with these changes. This is due to `gfx_device` and other
//! rendering stuff being directly inside the engine, instead of a `RenderingSystem`
//! where it really belongs. Some restructuring is necessary to fix this design
//! oversight and get this new renderer to work.
extern crate amethyst_renderer as renderer;