Skip to content

Instantly share code, notes, and snippets.

View henriqueramos's full-sized avatar

Henrique Ramos henriqueramos

View GitHub Profile
@henriqueramos
henriqueramos / listEvents.php
Created December 13, 2021 23:28
List pkp-lib 3.4 events
<?php
/**
* @file tools/event/listEvents.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2003-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class listEvents
@henriqueramos
henriqueramos / docker-compose.yml
Created October 5, 2021 06:10
PKP|OJS|OMP|OPS - Running MySQL on Docker using tmpfs
version: "3.8"
services:
pkp-db:
container_name: pkp-db
image: mariadb:latest
environment:
MYSQL_ROOT_PASSWORD: "iluvdonuts"
MYSQL_DATABASE: pkp
ports:
- "3306:3306"
@henriqueramos
henriqueramos / 0001-pkp-pkp-lib-7125-Setting-Guzzle-to-avoid-SSL-certifi.patch
Created October 1, 2021 18:28
PKP OJS - Disabling SSL certificate verification at Guzzle
From ed0e858edf5aee055a0611da5ba1205b47e627c6 Mon Sep 17 00:00:00 2001
From: Henrique Ramos <[email protected]>
Date: Fri, 1 Oct 2021 15:11:59 -0300
Subject: [PATCH] pkp/pkp-lib#7125 Setting Guzzle to avoid SSL certificate
verification
---
classes/core/PKPApplication.inc.php | 1 +
1 file changed, 1 insertion(+)
@henriqueramos
henriqueramos / trivial-notification-job.patch
Created June 21, 2021 16:32
OJS - Trivial Notification Job patch
diff --git a/Jobs/Notifications/TrivialNotificationJob.php b/Jobs/Notifications/TrivialNotificationJob.php
new file mode 100644
index 000000000..36a63ef88
--- /dev/null
+++ b/Jobs/Notifications/TrivialNotificationJob.php
@@ -0,0 +1,70 @@
+<?php
+
+declare(strict_types=1);
+
@henriqueramos
henriqueramos / command.sh
Created April 25, 2020 10:04
Running PHPCS only on modified files
# There's two commands below.
# The first one its the phpcs CLI, on this, we will use the following parameters
# --extensions=php, --encoding=utf-8, --tab-width=4, -p to show progress of the run, -s to show sniff codes in all reports and -v to print processed files
# The second one its the git diff to display, on this, we will use the following parameters
# --name-only to retrieve only the filenames
# --no-color to remove any ASCII fancy color
# --diff-filter=ACMRTUXB to show only Added, Copied, Modified, Renamed, Type Changed, Unmerged, Unknown and Broke pairing files. More information here: https://git-scm.com/docs/git-diff#Documentation/git-diff.txt---diff-filterACDMRTUXB82308203
vendor/bin/phpcs --extensions=php --encoding=utf-8 --tab-width=4 -spv $(git diff --name-only --no-color --diff-filter=ACMRTUXB)
# This is a sample build configuration for PHP.
# Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples.
# Only use spaces to indent your .yml configuration.
# You can specify a custom docker image from Docker Hub as your build environment.
# run composer check-platform-reqs for a list of required extensions.
image: php:7.2-fpm
pipelines:
default:
# Not needed unless you're doing feature tests.
# - step:
@henriqueramos
henriqueramos / Magic SQL Statement
Last active January 28, 2020 18:32
Find points (a.k.a users) within a distance using MySQL
# :lat as your requested latitude
# :lon as your requested longitude
# :r as your Earth's radius - Could be 6371 for KM or 3959 for miles
# :rad as your radius search distance
SELECT
`userId`,
`name`,
`address`,
AsText(`spatialData`) AS 'spatialData',
@henriqueramos
henriqueramos / WebinarJam.php
Created May 27, 2019 20:23 — forked from coryjthompson/WebinarJam.php
Implements the WebinarJam API.
<?php
/**
* Class WebinarJam
* Implements the WebinarJam API as documented
* https://s3.amazonaws.com/webinarjam/files/WebinarJamAPI.pdf
*/
class WebinarJam {
public static $API_URL = 'https://app.webinarjam.com/api/v2/';