Skip to content

Instantly share code, notes, and snippets.

View atymic's full-sized avatar
👨‍💻

atymic

👨‍💻
View GitHub Profile
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": "support@twitter.com",
@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": "support@twitter.com",
$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);