Skip to content

Instantly share code, notes, and snippets.

View kilonzi's full-sized avatar
🎯
Focusing

John Kitonyo kilonzi

🎯
Focusing
View GitHub Profile
version 1.0
workflow GenerateMD5 {
input {
File input_file
}
call ComputeMD5 {
input: file_to_hash = input_file
}
@kilonzi
kilonzi / sanda-v1.yml
Last active April 19, 2024 16:32
A complete workflow definition
name: updated_example_workflow
description: This is an example workflow
version: 0.1.1
environment:
- DATABASE_URL
- SECRET_KEY
- BASE_URL
jobs:
- id: create_workspace
name: create_workspace
@kilonzi
kilonzi / schema.gql
Last active May 20, 2020 05:48
A GraphQL schema autogenerate by https://www.skimaql.com
type User {
id: ID!
posts: [Post]
name: String
email: String!
password: String!
}
type Post {
id: ID!
user: User
@kilonzi
kilonzi / deploy.yml
Last active April 6, 2020 13:11
This is a sample workflow file to deploy a VueJS project to Firebase.
name: DEPLOY TO STAGING
on:
push:
branches:
- develop
jobs:
firebase-deploy:
runs-on: ubuntu-latest
@kilonzi
kilonzi / FacebookLogin.vue
Last active October 13, 2023 07:00
A Facebook Login button Single File Component done in VueJS
<template>
<div>
<button class="button" @click="logInWithFacebook"> Login with Facebook</button>
</div>
</template>
<script>
export default {
name:"facebookLogin",
methods: {
@kilonzi
kilonzi / stylelint.config.js
Created October 1, 2019 16:37
The lint settings configuration file
"use strict"
module.exports = {
"extends": "stylelint-config-recommended",
"rules": {
"at-rule-empty-line-before": ["always", {
except: [
"blockless-after-same-name-blockless",
"first-nested",
],