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
<configSections> | |
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/> | |
</configSections> | |
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<targets> | |
<target name="console" xsi:type="Console" layout="${longdate} ${callsite} ${level} ${message}"/> | |
<target name="logfile" xsi:type="File" fileName="C:\temp\log.txt" layout="${longdate} ${callsite} ${level} ${message}"/> | |
<target name="rotatelog" xsi:type="File" | |
layout="${longdate} ${logger} ${message}" | |
fileName="c:/temp/logs/alogfile.txt" |
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
package; | |
import haxe.io.Bytes; | |
import haxe.io.BytesInput; | |
import haxe.io.BytesOutput; | |
import haxe.Resource; | |
import format.abc.Data; | |
using Main; | |
class Main { |
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
def stackString(text): | |
tmp = "','".join([i for i in text]) | |
out = "{{'{0}','\\0'}}".format(tmp) | |
print(out) | |
return out | |
stackString("QueryPerformanceFrequency") |