The guide inspired by Static outbound IP address for Cloud Run.
gcloud compute networks list
import React from 'react'; | |
import { render, waitFor, screen, act } from '@testing-library/react'; | |
import userEvent from '@testing-library/user-event'; | |
import StackedBar from '~/pages/NewReports/Cards/StackedBar'; | |
import { dashData } from './dashData'; | |
let listener = null; |
The guide inspired by Static outbound IP address for Cloud Run.
gcloud compute networks list
Ventura docs for M2 Macs in this comment: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd?permalink_comment_id=4555340#gistcomment-4555340
Old Monterey docs in this old revision: https://gist.github.com/henrik242/65d26a7deca30bdb9828e183809690bd/32c410e3a1de73539c76fa13ea5486569c4e0c5d
Solution for Sonoma: https://gist.github.com/sghiassy/a3927405cf4ffe81242f4ecb01c382ac
This utility script deploy a single local file to an existing Firebase Hosting site. Other files that are already deployed are left unmodified.
The difference with firebase deploy
is that this script does not require you to have a local snapshot of all hosted files,
you just need the one file that you want to add/update.
USE asterisk; | |
GRANT ALL PRIVILEGES ON asterisk.* TO 'asterisk'@'localhost' IDENTIFIED BY 'change_me'; | |
FLUSH PRIVILEGES; | |
CREATE TABLE IF NOT EXISTS cdr ( | |
id BIGINT(20) NOT NULL AUTO_INCREMENT, | |
accountcode VARCHAR(30), | |
src VARCHAR(64), | |
dst VARCHAR(64), | |
dcontext VARCHAR(32), | |
clid VARCHAR(64), |
This guide assumes you have the emmet
and language-babel
packages already installed in Atom
keymap.cson
file by clicking on Atom -> Keymap…
in the menu bar'atom-text-editor[data-grammar~="jsx"]:not([mini])':
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
(function(long_url,callback){ | |
bi = new URL("https://api-ssl.bitly.com/v3/shorten?"); | |
var params = [ | |
"login=YOUR_USER_ID", | |
"domain=j.mp", | |
"apiKey=YOUR_API_KEY", | |
"longUrl="+ encodeURIComponent(long_url) | |
] | |
bi.search = "?"+params.join('&') | |
var xhr = new XMLHttpRequest(); |