Displaying 20 results from an estimated 70 matches similar to: "Raspberry PI 3B+ with Ubuntu Mate and NUT"
2020 Jun 21
4
Inclusive language in LLVM: can we rename `job` in source code?
<div>Here we've began discussion about "master"</div><div><a href="https://lists.llvm.org/pipermail/llvm-dev/2020-June/142448.html">https://lists.llvm.org/pipermail/llvm-dev/2020-June/142448.html</a></div><div> </div><div>Lets remove Job word completely</div><div><pre>But as one can easily fact-check,
2020 Jun 21
8
Inclusive language in LLVM: can we rename `job` in source code?
<div> </div><div>Yes, broad. But what guys say: "You LLVM developers are all racists, because you use 'master' word"</div><div>Or broader: "You all developers are all racists, because you use 'master' word". We are not racists, but other guys think so.</div><div>So let's begin consistent and take into account all
2019 Aug 07
0
NUT and Raspberry pi 3b+
I have a Powercom SPD-850U UPS. I try to connect this UPS with my
Raspberry PI 3B + via NUT,
I came to the conclusion - all works nice with Raspbian (2018-03-13),
the first one that supports 3B +, but does not work with the latest
version of Raspbian (2019-04-08). I think, the algorithm for working
with the USB bus has changed in the latest versions of the kernel. And
this is bad, because it
2019 May 02
0
NUT on Raspberry PI 3b+
I was able to make NUT and my Powercom SPIDER UPS (USB port) work under
the Raspberry Pi Desktop (Debian). Everything works in VMware
Workstation 15 Player. But my Raspberry Pi 3b + (with raspbian) doesn’t
work with the same UPS, and with same NUT configuration. Raspberry sees
the UPS, but the driver does not cling.
Here is the response of Raspberry 3b + to some commands.
pi at raspberrypi:~
2019 May 06
0
NUT on Raspberry PI 3b+
On May 2, 2019, at 6:22 PM, Vladimir Zaitchikov wrote:
>
> pi at raspberrypi:~ $ lsusb -v
>
> Bus 001 Device 004: ID 0d9f:0004 Powercom Co., Ltd
What are the permissions on /dev/bus/usb/001/004?
If the group is not "nut", and you installed NUT after plugging in the UPS USB cable, you may need to run udevadm as mentioned here:
2019 Jun 27
0
NUT and Raspberry pi 3b+
I have a Powercom SPD-850U UPS. I try to connect this UPS with my
Raspberry PI 3B + via NUT,
I came to the conclusion - all works nice with Raspbian (2018-03-13),
the first one that supports 3B +, but does not work with the latest
version of Raspbian (2019-04-08). I think, the algorithm for working
with the USB bus has changed in the latest versions of the kernel. And
this is bad, because it
2019 May 02
2
NUT on Raspberry PI 3b+
I was able to make NUT and my Powercom SPIDER UPS (USB port) work under
the Raspberry Pi Desktop (Debian). Everything works in VMware
Workstation 15 Player. But my Raspberry Pi 3b + (with raspbian last
version) doesn’t work with the same UPS, and with same NUT
configuration. Raspberry sees the UPS, but the driver does not cling.
Here is the response of Raspberry 3b + to some commands.
pi at
2007 Feb 22
1
Diagnostic Tests: Jarque-Bera Test / RAMSEY
Hello R-Users,
The following questions are not R-technical, but more of general statistical
nature.
1. NORMALITY
I built a normal linear regression model and now I want to check for the
residual normality assumption. If I check the distribution graphically and
look at the descriptive characteristics (skewness and kurtosis are below 1),
I would confirm that the residuals are normally
2017 Nov 18
2
Is llvm capable of doing loop interchange optimization?
Hello,
I've been playing around with the really simple example of not cache
friendly loop like this:
#define N 100
void foo(int** __restrict__ a,
int** __restrict__ b)
{
for (int i = 0; i < N; ++i)
for (int j = 0; j < N; ++j)
a[j][i] += b[j][i];
}
link to compiler explorer:
2012 Oct 30
4
horizontal space/indent and HTML/PDF
What is the best method to introduce horizontal space in text in a
Pandoc document? Preferably something that would work for both HTML
and PDF output?
I need this for some poetry that has indented lines, ala the 2nd and 3rd lines:
hickory dickory dock
the most ran up the clock
the clock struck one
the mouse ran down
c
--
Chris Lott <chris at chrislott.org>
2019 Jan 17
3
[patch 1/2] use chacha20 from openssl (1.1.0+) when possible
On some cpu's optimized chacha implementation in openssl (1.1.0+) is
notably faster (and on others it is just faster) than generic C
implementation in openssh.
Sadly, openssl's chacha20-poly1305 (EVP_chacha20_poly1305) uses
different scheme (with padding/etc - see rfc8439) and it looks it is not
possible to use in openssh.
OpenSSL 1.1.1+ also exports "raw" poly1305 primitive,
2020 Mar 30
3
Multithreaded encoding?
I am interested in being able to encode a single Opus stream using
several CPU cores.
I get a raw audio input and "opusenc" can transcode it at 1200% speed
(Raspberry PI 3B+). It saturates a single CPU core, but the other three
are idle.
Is out there any project to add multithreading options to "opusenc", or
something in that line?
Looking around, I have found this:
2006 Apr 20
0
problem in "depot" app - cart contents not shown on checkout
Hi all -
I''m working my way through the "depot" tutorial. I''m having a problem
with the section where the cart contents are displayed on the order
page. The cart contents display fine after I add an item to the cart,
but simply does not show up on the order page.
Any help would be appreciated.
I''m running Locomotive 1.0.0c on Tiger with MySQL from
2020 Jul 08
3
USB-serial adapter for CentOS 7
I've several USB <-> RS-232 dongles around. As well as a few embedded
devices. They all "Just Work (tm)" on Redhat, CentOS, Fedora, Debian,
Raspian and Kali.
Knock on wood - never had a problem using any of them. As the drivers are
part of the kernel, I'd expect any distro using a recent kernel to do well.
On Wed, Jul 8, 2020 at 9:24 AM Leroy Tennison <leroy at
2020 Jan 16
3
[patch 1/2] use chacha20 from openssl (1.1.0+) when possible
On Fri, 2019-07-12 at 15:54 +1000, Damien Miller wrote:
> On Thu, 17 Jan 2019, Yuriy M. Kaminskiy wrote:
>
> > On some cpu's optimized chacha implementation in openssl (1.1.0+)
> > is
> > notably faster (and on others it is just faster) than generic C
> > implementation in openssh.
> >
> > Sadly, openssl's chacha20-poly1305
2020 Mar 30
0
Multithreaded encoding?
I'm not aware of any other attempts, and there have never been official
plans. It's difficult to partition input for opus at anything other than
the track level, because of the way the decoder derives its adaptive
state from recently-seen audio. I guess cutting together streams with at
least an 80ms overlap wouldn't glitch too much?
You could probably do something to try different
2020 Jul 08
0
USB-serial adapter for CentOS 7
On 2020-07-08 11:28, Tate Belden wrote:
> I've several USB <-> RS-232 dongles around. As well as a few embedded
> devices. They all "Just Work (tm)" on Redhat, CentOS, Fedora, Debian,
> Raspian and Kali.
Even if you did have an RS232 port on the box, the serial drivers for
CentOS 7 have
never worked correctly. I had an application using RS232 that worked
perfectly
2019 Oct 06
0
Failed building any Samba version starting with v4.10.0
Hi team.
I've used to be able to successfully build Samba from source starting from version 4.2.3 on Raspbian.I've built and created packages from all minor & major releases until v4.10.0 was released.After that particular version, the "configure" step of the build process gets stuck all the time and never continues.
The platform I'm using for build now is the following:?
2020 Mar 31
1
Antw: [EXT] Re: Multithreaded encoding?
>>> Ralph Giles <giles at thaumas.net> schrieb am 30.03.2020 um 23:17 in Nachricht
<11930_1585603054_5E8261ED_11930_50_1_c110a52d-de95-3bbb-35b2-eca12c79f143 at thaum
s.net>:
> I'm not aware of any other attempts, and there have never been official
> plans. It's difficult to partition input for opus at anything other than
> the track level, because of the way
2005 Jun 09
1
astGUIclient installation problem
Hello,
This issue was just handled Monday on the astguiclient-users list:
http://sourceforge.net/mailarchive/forum.php?thread_id=7448401&forum_id=4358
6
You just need to use OLD_PASSWORD in the SET PASSWORD for your mysql server
to get the auth method for that account back to the pre 4.1.12 version
default method of login authentication.
Also, consider joining the astguiclient-users list, a