Skip to content

Instantly share code, notes, and snippets.

View olegkorol's full-sized avatar
👋
Hi there!

Oleg Korol olegkorol

👋
Hi there!
View GitHub Profile
@olegkorol
olegkorol / firebase.json
Created February 13, 2023 08:42 — forked from katowulf/firebase.json
Example of Firebase emulator unit tests and seed Firestore data
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"emulators": {
"firestore": {
"port": 8080
}
}
@olegkorol
olegkorol / GIF-Screencast-OSX.md
Created March 26, 2021 10:14 — forked from dergachev/GIF-Screencast-OSX.md
OS X Screencast to animated GIF

OS X Screencast to animated GIF

This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.

Screencapture GIF

Instructions

To capture the video (filesize: 19MB), using the free "QuickTime Player" application:

@olegkorol
olegkorol / chart.vue
Created January 31, 2018 15:10 — forked from rvanzon/nuxt.config.js
A way to use vue-chartjs as a plugin of Nuxt.js
// just an example. A cleaner way is to wrap the showLine-stuff in a dedicated component
<template>
<div>
<my-line v-if="showLine" :data="lineData" :options="options">
</div>
</template>
<script>
export default {
data () {