Skip to content

Instantly share code, notes, and snippets.

@boodle
boodle / reminders.md
Created June 28, 2023 09:58
developer reminders
  1. Delete branches when they are merged in on github
  2. Go over the once-per-sprint update procedure
  3. Go over testing environments
  4. Check everyone has access to LambdaTest and is using it
@boodle
boodle / woo.md
Last active March 10, 2020 13:50
Useful Wordpress and WooCommerce stuff
@boodle
boodle / console.save.js
Created May 14, 2018 10:08
Add console.save functionality
// Usage from the console:
// console.save(myVariable)
(function(console){
console.save = function(data, filename){
if(!data) {
console.error('Console.save: No data')
return;
}
@boodle
boodle / Re-sign Windows and iOS apps.md
Last active April 9, 2023 19:16
Unpack, edit, repack, and re-sign Windows Phone apps
@boodle
boodle / On screen debugger.md
Last active June 26, 2020 10:44
On screen debug window for debugging mobile devices

Add to the body of the page you want to inspect; it redirects js errors to a div attached to the bottom of the window:

<style type="text/css">
#debugWindow {
position:fixed;
display:block;
bottom:0;
left:0;
width:100%;
@boodle
boodle / gist:c3a508186c5ac8440683
Last active October 29, 2015 10:53
Creating & managing PhoneGap apps - per platform notes

Blackberry OS 7

Compile

  • Navigate to the project directory: cd \PhoneGap\com.serco.saynotoolkit
  • Compile with ant blackberry build

Deploy to a device

@boodle
boodle / gist:5321accc7be72431b086
Created February 26, 2015 10:26
Testing IMAP and SMTP via command line
IMAP testing:
openssl s_client -connect [service ip address]:993
a1 LOGIN [username] [password]
a2 LIST "" "*"
a3 EXAMINE INBOX
SMTP testing:
telnet localhost 25
@boodle
boodle / Making Apple Developer certificates on Linux.md
Last active May 5, 2024 09:07
Making Apple Developer certificates on Linux
  1. Create a new directory;
mkdir Apple\ Enterprise
cd Apple\ Enterprise
  1. Generate a certificate signing request
openssl req -nodes -newkey rsa:2048 -keyout ios_enterprise.key -out CertificateSigningRequest.certSigningRequest