This file contains 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
" setting layers, load 'lang#java' layer. | |
call SpaceVim#layers#load('lang#cs') | |
"call SpaceVim#layers#load('incsearch') | |
"let g:spacevim_enable_ycm = 1 | |
let g:spacevim_windows_leader = '<leader>w' | |
let g:spacevim_enable_vimfiler_welcome = 1 | |
" add custom plugins. | |
let g:spacevim_custom_plugins = [ |
This file contains 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 python3 | |
import xml.etree.ElementTree as etree | |
import sys; | |
tree = etree.parse(sys.argv[1]) | |
root = tree.getroot() | |
els = tree.findall(".//test-case[@result='Failed']") | |
def print_test_name(name): |
This file contains 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 UnityEngine; | |
using UnityEditor; | |
using UnityNetworking; | |
public class LanternsClient : MonoBehaviour | |
{ | |
private NetworkClient client; | |
#region Initialization |