This file contains 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/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name="$inputline" | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url="$inputline" |
<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
ART OF MONEY GETTING
=====================================
by P. T. Barnum
---------------
ART OF MONEY GETTING
This file contains 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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
Swift Libraries
- https://github.com/realm/SwiftLint
- https://github.com/Moya/Moya
- https://github.com/SwiftyJSON/SwiftyJSON
- https://github.com/Instagram/IGListKit
- https://github.com/texturegroup/texture
- https://github.com/radex/SwiftyUserDefaults
- https://github.com/onevcat/Kingfisher
- https://github.com/lkzhao/Hero
- https://github.com/dennisweissmann/DeviceKit
This file contains 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 { createLogic } from 'redux-logic'; | |
const fetchUserLogic = createLogic({ | |
type: USER_FETCH, | |
cancelType: USER_FETCH_CANCEL, | |
latest: true, // only provide the latest if fired many times | |
process: async ({ getState, action }, dispatch) => { | |
try { | |
const response = await fetch(`https://server/user/${action.payload}`); |
This file contains 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
diff --git a/node_modules/@apollo/client/apollo-client.cjs.js b/node_modules/@apollo/client/apollo-client.cjs.js | |
index f04faf8..9be6c37 100644 | |
--- a/node_modules/@apollo/client/apollo-client.cjs.js | |
+++ b/node_modules/@apollo/client/apollo-client.cjs.js | |
@@ -5589,8 +5589,8 @@ var QueryData = (function (_super) { | |
return result; | |
}; | |
_this.obsRefetch = function (variables) { var _a; return (_a = _this.currentObservable) === null || _a === void 0 ? void 0 : _a.refetch(variables); }; | |
- _this.obsFetchMore = function (fetchMoreOptions) { return _this.currentObservable.fetchMore(fetchMoreOptions); }; | |
- _this.obsUpdateQuery = function (mapFn) { return _this.currentObservable.updateQuery(mapFn); }; |