Skip to content

Instantly share code, notes, and snippets.

View seuntaylor's full-sized avatar

Oluseun Taylor seuntaylor

  • Lagos, Nigeria.
View GitHub Profile
@seuntaylor
seuntaylor / embedmp3.html
Created February 6, 2019 23:12
Embed code to stream an MP3 stored in Google Drive
<audio controls>
<source src="http://docs.google.com/uc?export=open&id=placethefileIDhereaftersharing" type="audio/mp3">
</audio>
@seuntaylor
seuntaylor / user.ini
Created June 14, 2018 08:38
user.ini file variables that can be used
memory_limit=256M
upload_max_filesize=1024M
post_max_size=1024M
max_execution_time=300
max_input_time=300
max_input_vars=6000
@seuntaylor
seuntaylor / insert_user.sql
Last active February 20, 2019 15:22
Create a WordPress Administrator account directly from the
INSERT INTO `a80vm_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_status`)
VALUES ('85485', 'QuietAdmin', MD5('C[u0(RsH8!3Xlkp0{lP#'), 'Quiet Administrator', 'my@email.co', '0');
INSERT INTO `a80vm_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`)
VALUES (NULL, '85485', 'a80vm_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}');
INSERT INTO `a80vm_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`)
VALUES (NULL, '85485', 'a80vm_user_level', '10');
@seuntaylor
seuntaylor / colourheader.html
Last active June 16, 2018 13:55
Header code for adding custom colour header in Google Chrome
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#999999" />
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#999999" />
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#999999" />