Skip to content

Instantly share code, notes, and snippets.

View kenlog's full-sized avatar
๐Ÿ‘จโ€๐Ÿ’ป
"Hands on!"

Valentino Pesce kenlog

๐Ÿ‘จโ€๐Ÿ’ป
"Hands on!"
View GitHub Profile
@kenlog
kenlog / stripe-keys-and-ids.tsv
Created April 11, 2021 16:39 — forked from fnky/stripe-keys-and-ids.tsv
Stripe keys and IDs
Prefix Description Notes
sk_live_ Live secret key Secret key in a live environment.
pk_live_ Live public key Public key in a live environment.
pst_live_ Live Connection token Connection token in a live environment.
sk_test_ Test secret key Pecret key in a test environment.
pk_test_ Test public key Public key in a test environment.
pst_test_ Test Connection token Connection token in a test environment.
ac_ Platform Client ID Identifier for an auth code/client id.
acct_ Account ID Identifier for an Account object.
ch_ Charge ID Identifier for a Charge object.
@kenlog
kenlog / Info
Created October 29, 2018 10:16 — forked from Cumquat/Info
Basic encryption on Silverstripe
*****************
*The Data Object*
*****************
<?php
class TheData extends DataObject {
public static $db = array(
'Name' => 'Varchar',
'SecretData' => 'Varchar'
@kenlog
kenlog / EmailPage.php
Created July 17, 2018 11:05 — forked from frankmullenger/EmailPage.php
Simple GPG encryption test
<?php
class EmailPage extends Page {
}
class EmailPage_Controller extends Page_Controller {
private static $allowed_actions = array(
'Form'
);
@kenlog
kenlog / webdev_online_resources.md
Created July 17, 2018 10:45 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)