Skip to content
#

io

Here are 549 public repositories matching this topic...

PetrochukM
PetrochukM commented Mar 3, 2020

🐛 Bug

In order to enable inversion of an STFT via the inverse STFT in istft, it is sufficient that the signal windowing obeys the constraint of “Constant OverLap Add” (COLA). This ensures that every point in the input data is equally weighted, thereby avoiding aliasing and allowing full reconstruction.
https://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.check_COLA.html

Le

chainsawriot
chainsawriot commented Oct 13, 2016

I think it will be a good idea to specify a standard for import methods in the CONTRIBUTING.md. For standard I mean argument names such as path, which and header because there are two "standards" for these arguments:

  1. base functions use file, which and header
  2. readxl uses path, sheet and col_names

By reading the code, rio is using file, which and header but I thi

Pro100AlexHell
Pro100AlexHell commented Sep 20, 2016

Please make a tutorial and docs: how to create in-memory (off-heap) objects, how to allocate, how to serialize/deserialize (if need, i can't understand) this to byte array (located off-heap), how to change it fields.
For example now (in current system) I have class
User
{
long Id;
List[ItemA] ItemsA; // class ItemA { .. }
List[ItemB] ItemsB; // class ItemB { .. }
// and many more field
}

// and g

mattn
mattn commented Nov 12, 2018
go func() {
	ctx := context.Background()
	progressChan := progress.NewTicker(ctx, r, size, 1*time.Second)
	for p := range progressChan {
		fmt.Printf("\r%v remaining...", p.Remaining().Round(time.Second))
	}
	fmt.Println("\rdownload is completed")
}()

I guess the line ctx := context.Background() should be deleted since ctx is already defined outer goroutine.

kinverarity1
kinverarity1 commented Apr 29, 2020

Analogous to dict.get but with extra "add" kwarg.

SectionItems.get should accept strings or HeaderItem objects for the "default" arg. If it is a string, it should be converted to a HeaderItem with the appropriate mnemonic.

Always returns a HeaderItem.

If add is True, the returned value should also be appended to the SectionItems instance.

How do we handle CurveItems? Set the data attribute to

glennsl
glennsl commented Mar 29, 2020

Luv.Loop.run returns a boolean value whose meaning does not seem to be documented and, judging by the examples, in most cases is not used, but usually just ignored.

I would argue that using ignore without any type annotation is very error-prone because it sets the trap for accidental partial application. It should be considered bad style IMO, and therefore should be avoided particularly i

Improve this page

Add a description, image, and links to the io topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the io topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.