- Mac Calendar.app is connected to an Exchange / Office 365 / Outlook account
- New meetings, updates, and cancellations in Outlook do not appear in Calendar.app
- Calendar shows old/stale events indefinitely, sometimes for days
- Mail, Wi-Fi, VPN, and every other app are working fine — it's isolated to Calendar
- No error message anywhere in Calendar.app or Console.app
- Manually clicking "Refresh Calendars" (or Cmd+R) does nothing
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 { execSync } = require("child_process") | |
| const readline = require("readline") | |
| // Get the current branch name | |
| const branchName = execSync(`git rev-parse --abbrev-ref HEAD`).toString().trim() | |
| const migrationName = `${branchName}` | |
| // Create readline interface | |
| const rl = readline.createInterface({ | |
| input: process.stdin, |
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
| function App() { | |
| return <CoverdashQuotes license="xxxxxxx-xxxx-xxxx-xxxx-xxxxxxx" /> | |
| } |
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 AWS = require("aws-sdk"); | |
| AWS.config.update({ | |
| region: "us-west-2", | |
| }); | |
| const { | |
| CloudWatchLogsClient, | |
| AssociateKmsKeyCommand, | |
| StartQueryCommand, | |
| GetQueryResultsCommand, |
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
| function generateTrackingUrl(carrier, trackingNumber) { | |
| switch (carrier) { | |
| case "usps": | |
| return `https://tools.usps.com/go/TrackConfirmAction?qtc_tLabels1=${trackingNumber}` | |
| case "ups": | |
| return `https://www.ups.com/track?loc=null&tracknum=${trackingNumber}&requester=WT/trackdetails` | |
| case "fedex": | |
| return `https://www.fedex.com/fedextrack/?trknbr=${trackingNumber}` | |
| case "lasership": | |
| return `https://t.lasership.com/Track/${trackingNumber}` |
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 this script to extract CSS classes out of HTML code. | |
| * Replace the test HTML code on line 8-9 with your HTML code. | |
| * Run `node html-classes-to-css.js` in your terminal and a CSS file will be generated. | |
| */ | |
| const fs = require("fs"); | |
| var html = | |
| `<div id="1432" class="test class-test another-class"><p class="bold text-small something"></p></div>`; |
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
| /* | |
| 1) Install node-fetch via npm or yarn in the same directory as this file. | |
| 2) Create a bot in Telegram via chatting with @BotFather and copy the bot token he provides. | |
| 3) Start the chat, then go to https://api.telegram.org/bot<token>/getUpdates in a browser. | |
| 4) Send a message to the bot, refresh the webpage, and you should see your chat id in the json response. | |
| 5) Fill in BOT_TOKEN and CHAT_ID below. | |
| 6) Fill in HOOBS_USERNAME, HOOBS_PASSWORD, and HOOBS_SERVER_URL (e.g. http://192.168.1.100) below. | |
| 6) Run this on your HOOBS server and HOOBS will never be down again. | |
| */ |
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 React, { Component } from 'react'; | |
| import { ScrollView, Button, View, Text } from 'react-native'; | |
| import { createStackNavigator, createAppContainer } from 'react-navigation'; | |
| import { Header, Actions, Info } from '../components/UserDetails/'; | |
| import colors from '../config/colors'; | |
| class Details extends Component { | |
| render() { |
I hereby claim:
- I am perryraskin on github.
- I am perryraskin (https://keybase.io/perryraskin) on keybase.
- I have a public key ASBBaYp8UNxQIxI5qQdWelN84F2lsa753rjMWbCoaN-9OQo
To claim this, I am signing this object:
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
| /* | |
| * | |
| * CS 323 Project 1 (C++) | |
| * | |
| * Linked List Class: Insertion Sort | |
| * | |
| * Perry Raskin | |
| * Computer Science, CUNY Queens College | |
| */ |
NewerOlder