Skip to content

Instantly share code, notes, and snippets.

@ghostffcode
ghostffcode / cloudSettings
Last active October 20, 2019 20:31 — forked from Lavioli/cloudSettings
vs studio settings
{"lastUpload":"2019-10-20T20:31:36.574Z","extensionVersion":"v3.4.3"}
import React, { Component } from 'react'
import Firebase from 'firebase'
import ReactFireMixin from 'reactfire'
import reactMixin from 'react-mixin'
const ref = new Firebase('https://<APPNAME>.firebaseio.com/users')
class UsersList extends Component {
constructor (props, context) {
super(props, context)
@ghostffcode
ghostffcode / gist:d7626d6b9dbe51ac4ec21e5501292255
Created March 8, 2017 17:14 — forked from mattd/gist:1006398
nginx try_files with a proxy_pass
server {
root /var/www/example.com/static;
server_name example.com;
access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
try_files /maintenance.html @proxy;
location @proxy {
proxy_pass http://127.0.0.1:10001;
@ghostffcode
ghostffcode / editor.css
Created January 18, 2017 17:31 — forked from Hendrixer/editor.css
VS code custom CSS for theme
.composite-title, .composite-title, .vs-dark .monaco-workbench>.activitybar>.content {
background-color: rgba(40, 44, 52, 1) !important;
}
.tabs-container, .tab, .tab.active, .title-actions, .tablist, .tabs-container, .tabs, .composite.title {
background-color: rgba(40, 44, 52, 1) !important;
}
.tab.active, .tab {
border-right: 0px !important;