Regular Expressions (REGEX)
Sites that let you test expressions
Sites that let you test expressions
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.SceneManagement; | |
public class CameraSETUP: MonoBehaviour { | |
private Camera m_Camera; | |
private CanvasGroup myCanvas; | |
private GameObject myTexty; | |
public GameObject CamParent; | |
private GameObject myDot; |
A collection of tools for using Bluetooth on Mac.
This command gives you all the details about Bluetooth, including devices paired, with their names, MAC address.
The following debugging information was generated by Atom Beautify
on Mon Jun 15 2020 13:00:34 GMT-0400 (Eastern Daylight Time)
.
#!/bin/bash | |
## Convert non-transparent pixels in a PNG image to a solid color "silhouette" | |
## Uses imagemagick | |
# install imagemagick | |
brew update && brew install imagemagick | |
# convert input.png to silhouette | |
convert input.png -fill "cyan" -colorize 100 output.png |
#!/bin/bash | |
# orginal https://gist.github.com/lukebussey/70fe3b245c7b55fa41300670d2698e54 | |
# make file and run sudo chmod +x kill_sophos | |
# delete all files | |
sudo rm -R /Library/Sophos* | |
sudo rm -R /Library/Application\ Support/Sophos* | |
sudo rm -R /Library/Preferences/com.sophos.* | |
sudo rm /Library/LaunchDaemons/com.sophos.* |
Sophos Anti Virus hogging your processor? Can't remove it because of tamper protection?
# change into preferences
cd /Library/Preferences
# confirm locations of sophos files
ls com.sophos.*
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<!-- Bootstrap CSS --> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://d3js.org/d3.v2.min.js?2.9.3"></script> | |
<style> | |
.link { | |
stroke: #aaa; | |
} |
<?php | |
/** | |
* Convert a Google Takeout JSON file to CSV table format | |
* @author Owen Mundy owenmundy.com | |
* Note: Make sure PHP has enough memory allotted on your system to handle large strings | |
* Instructions: | |
* 1. Download PHP file and place next to your JSON file | |
* 2. Rename string pointing to your data file | |
* 3. On command line run $ php index.php |