- nylas/N1 💌 An extensible desktop mail app built on the modern web.
- black-screen/black-screen A terminal emulator for the 21st century.
- shockone/black-screen A terminal emulator for the 21st century.
- ptmt/react-native-macos React Native for macOS
- docker/kitematic Visual Docker Container Management on Mac & Windows
- kitematic/kitematic Visual Docker Container Management on Mac & Windows
- davezuko/wirk-starter Get started with React, Redux, and React-Router!
- TelescopeJS/Telescope 🔭 An open-source social news app built with Meteor & React
- coryhouse/react-slingshot React + Redux starter kit / boile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #--------------------------------------------------------------------# | |
| # NOTE: | |
| # | |
| # I have added an interactive version of this vps setup script. | |
| # | |
| # https://gist.github.com/legout/56ce53a0275413b4c98d01482ca52943 | |
| # | |
| #--------------------------------------------------------------------# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Result | |
| { | |
| protected internal Result(bool isSuccess, Error error) | |
| { | |
| if (isSuccess && error != Error.None) | |
| { | |
| throw new InvalidOperationException(); | |
| } | |
| if (!isSuccess && error == Error.None) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE [HobbyDB] | |
| GO | |
| /****** Object: Table [dbo].[AspNetRoleClaims] Script Date: 6/4/2018 10:18:03 PM ******/ | |
| SET ANSI_NULLS ON | |
| GO | |
| SET QUOTED_IDENTIFIER ON | |
| GO | |
| IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[AspNetRoleClaims]') AND type in (N'U')) | |
| BEGIN | |
| CREATE TABLE [dbo].[AspNetRoleClaims]( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Linq; | |
| namespace FakeJobInfo | |
| { | |
| class Program | |
| { | |
| private static Func<int, int> rand = new Random().Next; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var width = 660, | |
| height = 600; | |
| var color = d3.scale.linear() | |
| .domain([0, width/4, width/4 * 2, width/4 * 3, width]) | |
| .range(["#fb000f", "#6e00fb", "#00fbec", "#8dfb00", "#fb3c00"]) | |
| .interpolate(d3.interpolateHsl); | |
| var svg = d3.select("#colorz").append("svg") | |
| .attr("width", width) |