Skip to content

Instantly share code, notes, and snippets.

View thegrid22593's full-sized avatar

Garrett Sanderson thegrid22593

View GitHub Profile
### Check Admin Password
```
cat bitnami_application_password
```
### Accessing PhpMyAdmin on Linux and Mac OSX
```
ssh -N -L 8888:127.0.0.1:80 -i KEYFILE bitnami@SERVER-IP
**Get Pods**
`kubectl get pods --context [context]`
**Get Services**
`kubectl get services --context [context]`
**Get All Keys**
`KEYS *`
**Redis CLI**
`redis-cli`
**Close Redis CLI**
**Start a new container**
`docker run -d -p 6379:6379 --name [name] [container-type]`
**Check its running**
`docker ps`
**Log output**
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

SSH Into Server

Be in the foler that the certificate is in or else write the path to certificate. Dont include '[ ]'

CD into folder containing SSH Key

ssh bitnami@[ip-address] -i [name-of-certificate]

Remove all files in current directory rm -rf *

@thegrid22593
thegrid22593 / claraio
Last active May 9, 2018 15:26
list of ways to use the api
## Change Visiblity on an Object
```
// visible
api.scene.setAll({ name: 'object_name', plug: 'Properties', property: 'visible' }, true);
// invisible
api.scene.setAll({ name: 'object_name', plug: 'Properties', property: 'visible' }, false);
```
## Get All Materials
```
array.sort(function(a, b) {
return a.prop - b.prop;
});
<?php
function get_browser_name($user_agent)
{
if (strpos($user_agent, 'Opera') || strpos($user_agent, 'OPR/')) return 'Opera';
elseif (strpos($user_agent, 'Edge')) return 'Edge';
elseif (strpos($user_agent, 'Chrome')) return 'Chrome';
elseif (strpos($user_agent, 'Safari')) return 'Safari';
elseif (strpos($user_agent, 'Firefox')) return 'Firefox';
elseif (strpos($user_agent, 'MSIE') || strpos($user_agent, 'Trident/7')) return 'Internet Explorer';