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
Process: wsjtx [25389] | |
Path: /Applications/wsjtx.app/Contents/MacOS/wsjtx | |
Identifier: org.k1jt.wsjtx | |
Version: v2.1.0 (2.1.0) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
Responsible: wsjtx [25389] | |
User ID: 504 | |
Date/Time: 2019-08-15 18:29:40.462 +0100 |
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 https://arduino-info.wikispaces.com/LCD-Blue-I2C | |
#include <LiquidCrystal_I2C.h> | |
#include <Wire.h> | |
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); | |
void setup() { | |
lcd.begin(16, 2); |
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
<html> | |
<head> | |
<title>N0NBH Solar Forecast</title> | |
</head> | |
<body> | |
<center> | |
<a href="http://www.hamqsl.com/solar.html" title="Click to add Solar-Terrestrial Data to your website!"><img src="http://www.hamqsl.com/solar2.php"></a> | |
</center> | |
</body> |
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
diff -bruN unixODBC-2.3.0.orig/configure unixODBC-2.3.0/configure | |
--- unixODBC-2.3.0.orig/configure 2010-02-23 12:30:55.000000000 +0000 | |
+++ unixODBC-2.3.0/configure 2014-07-18 15:54:10.504355989 +0100 | |
@@ -15892,7 +15892,7 @@ | |
$as_echo "#define UNIXODBC_SOURCE /**/" >>confdefs.h | |
-LIB_VERSION="1:0:0" | |
+LIB_VERSION="2:0:0" |
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
Summary: A complete ODBC driver manager for Linux | |
Name: unixODBC | |
Version: 2.3.0 | |
Release: 1%{?dist} | |
Group: System Environment/Libraries | |
URL: http://www.unixODBC.org/ | |
# Programs are GPL, libraries are LGPL, except News Server library is GPL. | |
License: GPLv2+ and LGPLv2+ | |
Source: http://www.unixODBC.org/%{name}-%{version}.tar.gz |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
~ Copyright 2013 The Netty Project | |
~ | |
~ The Netty Project licenses this file to you under the Apache License, | |
~ version 2.0 (the "License"); you may not use this file except in compliance | |
~ with the License. You may obtain a copy of the License at: | |
~ | |
~ http://www.apache.org/licenses/LICENSE-2.0 | |
~ |
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
@Test | |
public void test() { | |
NarSystem.loadLibrary(); | |
UnpooledNativeByteBufAllocator allocator = UnpooledNativeByteBufAllocator.DEFAULT; | |
ByteBuf buf = allocator.directBuffer(); | |
Assert.assertTrue(buf.isDirect()); | |
buf.release(); | |
Assert.assertEquals(0, buf.refCnt()); | |
} |
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
<properties> | |
<MSC>C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC</MSC> | |
<SDK>C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A</SDK> | |
<!-- Tests via nar are run in the integration test phase, so turn off the normal test phase. --> | |
<skipTests>true</skipTests> | |
</properties> | |
... | |
<plugin> | |
<!-- Not officially released into Central Maven yet, so use a version that is. --> |