KIND runs Kubernetes cluster in Docker, and leverages Docker networking for all the network features: port mapping, IPv6, containers connectivity, etc.
KIND uses a docker user defined network.
It creates a bridge named kind
KIND runs Kubernetes cluster in Docker, and leverages Docker networking for all the network features: port mapping, IPv6, containers connectivity, etc.
KIND uses a docker user defined network.
It creates a bridge named kind
| import useFetch from "useFetch"; | |
| const { response, isLoading } = useFetch({ | |
| api: identityApi, | |
| url: AUTH_MEMBER_TRANSACTIONS(requestOptions), | |
| config: JSON.stringify({ requireAuthentication: true }), | |
| }); |
| const { upload } = require('bugsnag-sourcemaps'); | |
| const glob = require('glob'); | |
| const fs = require('fs'); | |
| const appVersion = require('./package.json').version; | |
| const reportBuild = require('bugsnag-build-reporter'); | |
| /** | |
| * Find all of the map files in ./build | |
| */ | |
| function findSourceMaps(callback) { |
How to get Twitter gifs and short videos working on Firefox on Fedora
Note: This is for Fedora 28, however the process should be similar for other recent Fedora versions as well.
Go to https://www.youtube.com/html5 and check if all boxes are checked. If gifs or short videos don't work for you, you mostly do not have H.264 and MSE & H.264.
There are a bunch of repositories you need to setup.
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm| variables: | |
| VERSION_ID: '1.0.$CI_PIPELINE_ID' | |
| stages: | |
| - build | |
| build: | |
| image: slauta93/electron-builder-win | |
| stage: build | |
| artifacts: |
| 'use strict'; | |
| /** | |
| npm i bluebird slack-node | |
| CREATE YOUR TOKEN: https://api.slack.com/docs/oauth-test-tokens?team_id=T024G49EC&action=reissue&sudo=1 | |
| npm package: https://www.npmjs.com/package/slack-node | |
| user.list: https://api.slack.com/methods/users.list |
| <?php | |
| /** | |
| * deploy.php by Hayden Schiff (oxguy3) | |
| * Available at https://gist.github.com/oxguy3/70ea582d951d4b0f78edec282a2bebf9 | |
| * | |
| * No rights reserved. Dedicated to public domain via CC0 1.0 Universal. | |
| * See https://creativecommons.org/publicdomain/zero/1.0/ for terms. | |
| */ | |
| // random string of characters; must match the "Secret" defined in your GitHub webhook |
So, you love Slack, but you hate applications with large white backgrounds? Why not use Dark Mode!
Unfortunately, Slack does not have a Dark Mode, although it's on their list of possibilities.
But, don't fret - there is a solution! Because the slack native desktop apps are just wrappers around a web app, we can inject our own CSS to customize the application to our liking.
| // This works on all devices/browsers, and uses IndexedDBShim as a final fallback | |
| var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB || window.shimIndexedDB; | |
| // Open (or create) the database | |
| var open = indexedDB.open("MyDatabase", 1); | |
| // Create the schema | |
| open.onupgradeneeded = function() { | |
| var db = open.result; | |
| var store = db.createObjectStore("MyObjectStore", {keyPath: "id"}); |