This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| """Merge multiple JUnit XML results files into a single results file.""" | |
| # MIT License | |
| # | |
| # Copyright (c) 2012 Corey Goldberg | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| KERNEL=="raw1394", NAME="%k", GROUP="users" | |
| # Save to /etc/udev/rules.d/10-ieee1394.rules |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import os | |
| import logging | |
| import subprocess | |
| import trimesh | |
| import lxml.etree as et | |
| import numpy as np | |
| from trimesh.decomposition import convex_decomposition |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # List of plugins | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| set -g @plugin 'tmux-plugins/tmux-yank' | |
| set -g @plugin 'tmux-plugins/tmux-resurrect' | |
| set -g mouse on | |
| bind m \ | |
| set -g mouse on \;\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine.Networking; | |
| using UnityEngine; | |
| using System.Text; | |
| public class SendJSON : MonoBehaviour | |
| { | |
| private static string BASE_URL = "http://127.0.0.1:8000/healthprofile"; //http://healthbookdemo.herokuapp.com/healthprofile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/Rscript | |
| # | |
| library(googleway) # install by running in the R shell: install.packages("googleway") | |
| library(rjson) # install by running in the R shell: install.packages("rjson") | |
| library(stringr) # install by running in the R shell: install.packages("stringr") | |
| # Change this to hold your own api key | |
| key = Sys.getenv("MAPS_API_KEY") |