Skip to content

Instantly share code, notes, and snippets.

View luser's full-sized avatar

Ted Mielczarek luser

View GitHub Profile
2021-03-03 12:37:40:741 [HTTP] --> POST /wd/hub/session/c3491ff0-a516-4c53-b508-d79a55777fc9/appium/device/push_file
2021-03-03 12:37:40:741 [HTTP] {"path":"@com.fullstory.reftest/shared_prefs/com.fullstory.reftest.FS_PREFS.xml","data":"..."}
2021-03-03 12:37:40:741 [W3C (c3491ff0)] Calling AppiumDriver.pushFile() with args: ["@com.fullstory.reftest/shared_prefs/com.fullstory.reftest.FS_PREFS.xml","...","c3491ff0-a516-4c53-b508-d79a55777fc9"]
2021-03-03 12:37:40:742 [AndroidDriver] Parsed package identifier 'com.fullstory.reftest' from '@com.fullstory.reftest/shared_prefs/com.fullstory.reftest.FS_PREFS.xml'. Will put the data into '/data/data/com.fullstory.reftest/shared_prefs/com.fullstory.reftest.FS_PREFS.xml'
2021-03-03 12:37:40:742 [ADB] Running '/Users/ted/Library/Android/sdk/platform-tools/adb -P 5037 -s emulator-5554 shell run-as com.fullstory.reftest "mkdir -p '/data/data/com.fullstory.reftest/shared_prefs'"'
2021-03-03 12:37:40:766 [ADB] Running '/Users/ted/Library/Android/sdk/platform-tools/adb -P 5
@luser
luser / canonicalpath.py
Created February 1, 2021 17:03
Canonicalize filename case in system Python 2.7 on macOS
#!/usr/bin/python
from __future__ import print_function
from Carbon.File import FSPathMakeRef
import os
import sys
import unicodedata
def actual_path(path):
@luser
luser / README.md
Created January 14, 2021 16:05
Illustration of a potential issue with subprocesses in Go

I ran into this issue at work in a test runner we have that is written in Go and runs a test suite which is a node module, which itself spawns several subprocesses. The issue was that one of the subprocesses inherited its parents' stdout file descriptor, but would outlive the parent process being killed. If you use Go's exec.Cmd to run a process and set its Stdout or Stderr to something that is not a File, a goroutine will be spawned to drive that I/O when calling Cmd.Start, and all such goroutines will be run to completion as part of Cmd.Wait. In this situation, because the grandchild process stays alive, it keeps the stdout pipe open, thus Cmd.Wait blocks until it exits.

subprocess.go is a minimal testcase to display the issue. It spawns itself as a child process with piped stdout, then waits one second before killing the subprocess and waiting on it. The child process spawns itself as a grandchild with inherited stdout and sleeps for 5 seconds before exiting. The grandchild process simply

use std::char::{decode_utf16, DecodeUtf16Error};
#[allow(non_camel_case_types)]
pub struct wstr([u16]);
impl wstr {
pub fn to_wstring(&self) -> WString {
self.to_owned()
}
In file included from /build/mcpelauncher/fake-jni/examples/src/main.cpp:3:
In file included from /build/mcpelauncher/fake-jni/include/fake-jni/jvm.h:5:
/build/mcpelauncher/fake-jni/include/fake-jni/internal/meta/field.h:61:73: error: conversion from 'FakeJni::JString' to 'jvalue' is ambiguous
((T*)inst)->*((type_t)field) = ValueTranslator<F>::convert_set(env, *((F*)value));
^~~~~~~~~~~~
/build/mcpelauncher/fake-jni/include/fake-jni/jvm.h:1465:59: note: in instantiation of member function 'FakeJni::_CX::FieldAccessor<FakeJni::JString ExampleClass::*>::set' requested here
proxySetFunc((void (*)())&_CX::FieldAccessor<T (M::*)>::set),
^
/build/mcpelauncher/fake-jni/include/fake-jni/jvm.h:1386:38: note: in instantiation of function template specialization 'FakeJni::JFieldID::JFieldID<FakeJni::JString, ExampleClass>' requested here
return clazz->registerField(new JFieldID(fie
This file has been truncated, but you can view the full file.
#![feature(prelude_import)]
#[prelude_import]
use std::prelude::v1::*;
#[macro_use]
extern crate std;
pub use bevy_hecs::{Query as HecsQuery, *};
mod resource {
mod resource_query {
@luser
luser / idle.rs
Created April 29, 2020 17:22
idle_timeout_reset
/// Create a `Future` that will resolve after `idle_period` has elapsed, along with an `IdleReset` that can be used to reset the time period or cancel the timeout.
///
/// This can be used to trigger an event that should happen after a period of inactivity. Activity in this situation is indicated by calling
/// `idle_reset` on the returned `IdleReset`. The timeout can be cancelled by calling `cancel` on the `IdleReset`.
///
/// Returns a tuple of (`IdleReset`, `Future`)
pub fn idle_timeout_reset(
idle_period: Duration,
) -> (IdleReset, impl Future<Output = bool> + Send + 'static) {
// ...
ExifTool Version Number : 11.65
File Name : moco-group-april-2007.jpg
Directory : /mnt/photos
File Size : 3.0 MB
File Modification Date/Time : 2008:02:21 08:50:50-05:00
File Access Date/Time : 2008:02:21 08:50:50-05:00
File Inode Change Date/Time : 2008:02:21 08:50:50-05:00
File Permissions : rwxr-xr-x
File Type : JPEG
File Type Extension : jpg
@luser
luser / Image2Map.py
Last active October 24, 2019 18:52 — forked from bjorn/Image2Map.py
# Filename : Image2Map.py
# Authors : Georg Muntingh and Bjorn Lindeijer
# Version : 1.2
# Date : June 16, 2010
# Copyright : Public Domain
import os, sys, networkx
from PIL import Image
class TileMap:

Firefox committers touching Rust code

  1. Clone the mozilla-central Mercurial repository:

    hg clone https://hg.mozilla.org/mozilla-central

  2. Clone the version-control-tools repository:

    hg clone https://hg.mozilla.org/hgcustom/version-control-tools/

  3. Enable the mozext and firefoxtree extensions in .hgrc: