- 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
| import asyncio | |
| import json | |
| import logging | |
| import random | |
| import re | |
| from datetime import datetime, timezone | |
| from typing import Any, Dict, List, Optional, Pattern, Set, Tuple | |
| import aiohttp | |
| import websockets |
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
| swagger: '2.0' | |
| info: | |
| title: Mastodon API | |
| description: API for GNU Social-compatible microblogging server | |
| version: '1.1.1' | |
| contact: | |
| name: Mastodon API Team | |
| url: https://github.com/tootsuite/mastodon | |
| license: | |
| name: AGPL |
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
| # vim: set fileencoding=utf-8 : | |
| # | |
| # How to store and retrieve gzip-compressed objects in AWS S3 | |
| ########################################################################### | |
| # | |
| # Copyright 2015 Vince Veselosky and contributors | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at |
An absolute must. If you have ever worked with apt-get on Ubuntu, you know that it's the absolute developer bliss. Homebrew (or brew for short) is the missing package manager for OSX. Not only does it allow you to install/unisnstall/manage software with a few simple commands, the same way that apt-get does. It allows you to access and install ports of most of the cross-platform utilities that you might be familiar with from Linux, over to OSX.
Simply open a new terminal and execute the following command:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
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
| func checkOverflow(result, op1, op2 uint8) bool { | |
| // (op1 ^ op2) & 0x80: zero if both operands had the same sign bit | |
| // (op1 ^ result) & 0x80: non-zero if the result is a different sign | |
| // from the operands | |
| // So it returns true if either: | |
| // both operands are positive but the result is negative | |
| // or vice-versa | |
| return (((op1 ^ op2) & 0x80) == 0) && (((op1 ^ result) & 0x80) != 0) | |
| } |
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
| I have met them at close of day | |
| Coming with vivid faces | |
| From counter or desk among grey | |
| Eighteenth-century houses. | |
| I have passed with a nod of the head | |
| Or polite meaningless words, | |
| Or have lingered awhile and said | |
| Polite meaningless words, | |
| And thought before I had done | |
| Of a mocking tale or a gibe |