I hereby claim:
- I am bfagundez on github.
- I am geekymartian (https://keybase.io/geekymartian) on keybase.
- I have a public key ASApdm-Pa4IT_bG_hbjwhCNIecLOdawP6sPMSeoPTefauAo
To claim this, I am signing this object:
| source /Users/<username>/Library/Python/2.7/lib/python/site-packages/powerline/bindings/tmux/powerline.conf | |
| set -g default-terminal "screen-256color" | |
| set -g history-limit 15000 | |
| set -sg escape-time 1 | |
| setw -g monitor-activity on | |
| set -g visual-activity on | |
| set -g renumber-windows on | |
| set-window-option -g automatic-rename off | |
| set -g base-index 1 |
I hereby claim:
To claim this, I am signing this object:
| #include "minidox.h" | |
| #include "action_layer.h" | |
| #include "eeconfig.h" | |
| extern keymap_config_t keymap_config; | |
| // Each layer gets a name for readability, which is then used in the keymap matrix below. | |
| // The underscores don't mean anything - you can have a layer called STUFF or any other name. | |
| // Layer names don't all need to be of the same length, obviously, and you can also skip them | |
| // entirely and just use numbers. |
| from __future__ import print_function | |
| from pydhcplib.dhcp_network import * | |
| from googleapiclient.discovery import build | |
| from httplib2 import Http | |
| from oauth2client import file, client, tools | |
| from datetime import datetime | |
| SPREADSHEET_ID = '1iiGsl0ZElGXD1p6aLFD2GB1oT39xQqV7LVqnGRjxlIc' | |
| def append_to_spreadsheet(data): |
| import { TestBed, ComponentFixture } from '@angular/core/testing'; | |
| import { Component, DebugElement } from '@angular/core'; | |
| import { By } from '@angular/platform-browser'; | |
| import { ListPlaceholderDirective } from '../app/shared/directives_and_pipes/list-placeholder.directive'; | |
| @Component({ | |
| template: `<div [listPlaceholder]='listPlaceholder'> | |
| <div #listPlaceholder> | |
| <div class="injected-default">empty</div> | |
| </div> |
| 'use strict' | |
| const { google } = require('googleapis') | |
| const got = require('got') | |
| const key = require('./auth.json') | |
| async function loginWithJWT(){ | |
| const scopes = 'https://www.googleapis.com/auth/photoslibrary.readonly'; | |
| const jwt = new google.auth.JWT(key.client_email, null, key.private_key, scopes); | |
| console.log('performing login') |
| type User { | |
| id: ID! @unique | |
| sub: String! @unique | |
| username: String | |
| createdAt: DateTime! | |
| updatedAt: DateTime! | |
| email: String! @unique | |
| name: String! | |
| timezone: String @default(value: "America/Los_Angeles") | |
| avatar: File @relation(name: "AvatarOwner", onDelete: CASCADE) |
| #include QMK_KEYBOARD_H | |
| extern keymap_config_t keymap_config; | |
| // Each layer gets a name for readability, which is then used in the keymap matrix below. | |
| // The underscores don't mean anything - you can have a layer called STUFF or any other name. | |
| // Layer names don't all need to be of the same length, obviously, and you can also skip them | |
| // entirely and just use numbers. | |
| #define _QWERTY 0 | |
| #define _LOWER 3 |
| #include "minidox.h" | |
| #include "action_layer.h" | |
| #include "eeconfig.h" | |
| extern keymap_config_t keymap_config; | |
| /// HAS CHANGES!!!! | |
| // Each layer gets a name for readability, which is then used in the keymap matrix below. | |
| // The underscores don't mean anything - you can have a layer called STUFF or any other name. | |
| // Layer names don't all need to be of the same length, obviously, and you can also skip them |