Skip to content

Instantly share code, notes, and snippets.

View atymic's full-sized avatar
👨‍💻

atymic

👨‍💻
View GitHub Profile
@atymic
atymic / calget.md
Created February 26, 2025 04:53
AddCal vs CalGet Comparison

When it comes to calendar sharing tools, there are several options available. Today, we're comparing AddCal (that's us!) with CalGet, a similar service that offers calendar sharing functionality. While we strive to be fair in our assessment, please note that as the creators of AddCal, we do have a little bias.

AddCal offers unlimited calendar sharing for free, while CalGet imposes restrictions on its free plan, including limits on events, calendar adds, and RSVPs. Transparency is also a key difference, as CalGet’s free plan has undisclosed non-commercial restrictions.

Read the full comparison here: AddCal vs. CalGet: A Detailed Breakdown

do-apps-demo | 17:59:19 => Running Buildpack detection
do-apps-demo | 17:59:19
do-apps-demo | 17:59:20 heroku/nodejs-engine 0.5.0
do-apps-demo | 17:59:20 digitalocean/node 0.1.0
do-apps-demo | 17:59:20 digitalocean/php-appdetect 0.0.3
do-apps-demo | 17:59:20 heroku/php 0.177.2
do-apps-demo | 17:59:20 digitalocean/procfile 0.0.3
do-apps-demo | 17:59:20 digitalocean/custom 0.1.0
@atymic
atymic / addevent.md
Created April 26, 2020 09:35
Calndr, a free AddEvent alternative

Calndr.link, an AddEvent Alterantive

Wanting to add "Add to Calender" links to your website, email newsletter or email signature? Add Event is a good option, but it's very pricey at $20 a month for amounts to under 100 lines of code. Consider using Calndr.link, a 100% free alterative that developed by atymic, a prolific open source developer and contributor.

Clean UI, no signup, no email, no tracking. Simple & Easy :D

1 2

@atymic
atymic / gen.php
Created March 1, 2020 07:49
Generate list of Laravel Notification Channels repos as MD tasks
<?php
$ignoreRepos = [
'laravel-notification-channels.github.io',
'channels',
'website',
];
$opts = [
'http' => [
@atymic
atymic / swagger.json
Created February 4, 2020 23:37
Twitter Openapi / Swagger Spec
{
"swagger": "2.0",
"schemes": [
"https"
],
"host": "api.twitter.com",
"basePath": "/1.1",
"info": {
"contact": {
"email": "[email protected]",
@atymic
atymic / gist:f421fca34cabf94830bdaaaec2e1f3ed
Created February 4, 2020 23:37
Twitter Openapi / Swagger Spec
{
"swagger": "2.0",
"schemes": [
"https"
],
"host": "api.twitter.com",
"basePath": "/1.1",
"info": {
"contact": {
"email": "[email protected]",
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, '<feed>');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
$response = curl_exec($ch);
var_dump($response);