Bitfinex is hacked for ~70 million, ~36% of their user's assets. Only some user's are affected [[3]].
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#pic { | |
background-image: url('<your image url>'); | |
background-position: center, center; | |
background-size: cover; | |
width: 100%; | |
height: 100%; | |
} | |
#hex { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- deps: ripgrep, packer.nvim | |
-- packer | |
vim.cmd [[packadd packer.nvim]] | |
require('packer').startup(function(use) | |
-- Packer can manage itself | |
use 'wbthomason/packer.nvim' | |
use { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# deps: tpm | |
# colors | |
set -g default-terminal "screen-256color" | |
# remap prefix | |
set -g prefix C-w | |
unbind C-b | |
bind-key C-w send-prefix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# deps: fzf | |
# utf-8 | |
export LANG="en_US.UTF-8" | |
export LC_COLLATE="en_US.UTF-8" | |
export LC_CTYPE="en_US.UTF-8" | |
export LC_MESSAGES="en_US.UTF-8" | |
export LC_MONETARY="en_US.UTF-8" | |
export LC_NUMERIC="en_US.UTF-8" | |
export LC_TIME="en_US.UTF-8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* to hide the native tabs */ | |
#TabsToolbar { | |
visibility: collapse; | |
} | |
/* #tabbrowser-tabs, #navigator-toolbox, menuitem, menu, ... */ | |
* { |
When visiting the following Github articles make sure that you select the correct platform at the top to get the right tutorials.
First you should download and install git if you haven't already
Next set your github username in git
Then set your email in git. It's best to use the email associated with Github for this.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set number | |
nnoremap <C-p> :FZF<CR> | |
call plug#begin('~/.local/share/nvim/plugged') | |
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | |
Plug 'zchee/deoplete-go', { 'do': 'make'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Ripples = function (initialState, setStateCallback) { | |
this.state = initialState; | |
this.events = {}; | |
this.eventTargets = {}; | |
this.setStateCallback = setStateCallback; | |
for (var key in this.state) { | |
var eventName = 'ripple' + key; | |
this.events[eventName] = new Event(eventName); | |
this.eventTargets[eventName] = []; | |
} |
NewerOlder