Skip to content

Instantly share code, notes, and snippets.

View priyankcommits's full-sized avatar
🎯
Focusing

Priyank Pulumati priyankcommits

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am priyankcommits on github.
  • I am priyankskeybase (https://keybase.io/priyankskeybase) on keybase.
  • I have a public key ASAuRSkoID6dcVzx1NQDmJoZ7UWTZH0ABUtQWbdvsvUPlgo

To claim this, I am signing this object:

@priyankcommits
priyankcommits / gist:d90ab13213550b674eac20b26ba674e2
Created February 14, 2018 15:52
Vuejs React to array length
<script lang='ts'>
@Component({
components: {
LoaderComponent,
NotificationComponent,
},
store,
})
export default class AudienceSearch extends Vue {
@priyankcommits
priyankcommits / example_proto2.proto
Last active May 9, 2017 18:13
example_proto2.proto
syntax = "proto3";
package com;
/* Service definitions */
service COMService {
/* get all IOs for an account */
rpc GetIOs (Account) returns (IOs) {}
/* get a single IO */
rpc GetIO (IO) returns (IO) {}
syntax = "proto3";
option optimize_for = SPEED;
package stratum;
service SFDCService {
rpc getCampaigns (Account) returns (Campaigns) {}
}