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
defmodule KV.RegistryTest do | |
use ExUnit.Case, async: true | |
alias KV.Registry, as: Reg | |
# test helper module | |
defmodule Forwarder do | |
use GenEvent | |
def handle_event(event, parent) do | |
send parent, event |
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
Sub expCurrent() | |
Call Application.ActiveDocument.ExportAsFixedFormat(visFixedFormatPDF, ActiveDocument.Path & "\Images\" & Application.ActivePage.Name & ".pdf", visDocExIntentPrint, visPrintCurrentPage) | |
End Sub | |
Sub expAll() | |
Dim p As Page | |
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; | |
using System.Linq; | |
using System.Windows.Data; | |
using System.Windows.Media.Imaging; | |
namespace WPNearestNeighbor | |
{ | |
public class PixelImageConverter : IValueConverter | |
{ | |
/// <summary> |
NewerOlder