Skip to content
#

mit

Here are 894 public repositories matching this topic...

altechzilla
altechzilla commented Jun 23, 2022

Hey, can you guys add a cancel event to this? Thanks!

uppy.on('file-editor:cancel', () => {
    console.log('File Editor Cancelled')
})

Thanks!

Help Wanted Feature Triage Good first issue
SwifterSwift
TheStalwart
TheStalwart commented Mar 11, 2021

🚀
Is your feature request related to a problem? Please describe.
Doc string states:
Date().weekday -> 5 // fifth day in the current week.
Guess what, 5 is not friday. It's thursday. It makes some sense after i dug deeper, but as a programmer, i assumed monday could be 0 or 1, therefore thursday should be 3 or 4. Monday is 2! Because sunday is 1!

**Describe the solution you'd li

foolip
foolip commented Nov 20, 2018

System information

  • node version: v10.13.0
  • npm or yarn version: 6.4.1
  • OS/version/architecture: gLinux 64-bit (Google-internal, like Debian Testing)
  • Applicable nodegit version: v0.23.0 built from source

https://www.nodegit.org/api/tree/ has an example of how to use tree.walk(), but it doesn't mention a critical detail, which is mentioned in an example:
https://github.com

pharo
Ducasse
Ducasse commented Jun 12, 2022
printProtocol: protocol sourceCode: sourceCode

	^ String streamContents: [ :stream |
		stream
			nextPutAll: '"protocol: '; 
			nextPutAll: protocol printString;
			nextPut: $"; cr; cr;
			nextPutAll: sourceCode ]	

protocol printString

  • Creates a new stream
  • Get its contents to be able to put in the first stream
    =>
printProtocol: protocol sourceCode: sourceCode

Improve this page

Add a description, image, and links to the mit 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 mit topic, visit your repo's landing page and select "manage topics."

Learn more