list tags
git tag
create tag
git tag tagname
delete remote tag
| $ wget https://github.com/google/protobuf/releases/download/v3.4.1/protobuf-cpp-3.4.1.tar.gz | |
| $ tar -zxvf protobuf-cpp-3.4.1.tar.gz | |
| $ sudo mv protobuf-3.4.1 /usr/local/bin | |
| $ cd /usr/local/bin/protobuf-3.4.1 | |
| $ ./configure | |
| $ make | |
| $ make install | |
| $ protoc --version |
| function range(_p: number, _t?: number, _s?: number): Array<number> { | |
| /** | |
| * @param <_p> Return a list integers of zero until <_p> value. | |
| * @param <_t> Return a list integers of <_t> until <_p> value. | |
| * @param <_s> Return a list integers of <_t> until <_p> with steps <_s> value. | |
| * @return Return a array list | |
| */ | |
| let start: number = (_t) ? _p : 0; | |
| let stop: number = (_t) ? _t : _p; |
| import { Component, forwardRef, Renderer2, ViewChild } from '@angular/core'; | |
| import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'; | |
| export const EPANDED_TEXTAREA_VALUE_ACCESSOR : any = { | |
| provide: NG_VALUE_ACCESSOR, | |
| useExisting: forwardRef(() => TextareaExpandedComponent), | |
| multi: true, | |
| }; | |
| @Component({ |
| Name: Flash | |
| Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc= | |
| if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676 | |
| Thank you! |
| import { Injectable } from '@angular/core'; | |
| @Injectable() | |
| export class DndContext { | |
| dropEffect = 'none'; | |
| isDragging = false; | |
| itemType = undefined; | |
| dragData: any = undefined; | |
| // stopDragOver= new Map<string, () => void>(); | |
| stopDragOver: () => void = undefined; |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
| //TODO update objects to show optional parameters | |
| //TODO expand on Function parameters | |
| //TODO add enum types | |
| //TODO add error types | |
| declare module Braintree { | |
| /********************** | |
| * Errors * |
Here's a little walkthrough of how Yannick and I are using feature branches and pull requests to develop new features and adding them to the project. Below are the steps I take when working on a new feature. Hopefully this, along with watching the process on Github, will serve as a starting point to having everyone use a similar workflow.
Questions, comments, and suggestions for improvements welcome!
When starting a new feature, I make sure to start with the latest and greatest codebase:
git checkout master
To remove a submodule you need to: