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 { ipcMain } from 'electron' | |
| import uuid from 'uuid' | |
| /** | |
| * Makes a data request over IPC to renderer process | |
| * @param {string} request Request type known to main handler | |
| * @param {object} Optional `options` object used as parameters for request | |
| * @return {Promise} Promise of data | |
| */ | |
| export function call(window, request, options={}) { |
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 { ipcMain } from 'electron' | |
| import uuid from 'uuid' | |
| /** | |
| * Makes a data request over IPC to renderer process | |
| * @param {string} request Request type known to main handler | |
| * @param {object} Optional `options` object used as parameters for request | |
| * @return {Promise} Promise of data | |
| */ | |
| export function call(window, request, options={}) { |
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
| const {app,Notification} = require('electron') | |
| app.on('ready', () => { | |
| showNextNotification() | |
| }) | |
| let i = 0 | |
| showNextNotification = () => { | |
| const notification = new Notification({ |
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 | |
| curl=/usr/local/opt/curl/bin/curl | |
| openssl=/usr/local/opt/openssl/bin/openssl | |
| deviceToken=TOKEN | |
| authKey="./AuthKey_##########.p8" | |
| authKeyId=########## | |
| teamId=########## |
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 { useMemo, useReducer, useRef } from "react"; | |
| const useGetState = (initialState) => { | |
| const state = useRef(initialState); | |
| const [, update] = useReducer(num => ((num + 1) % 1_000_000), 0); | |
| return useMemo(() => ([ | |
| () => state.current, | |
| (newState) => { | |
| state.current = newState; |
OlderNewer