Skip to content
#

language

Here are 2,967 public repositories matching this topic...

DanielRosenwasser
DanielRosenwasser commented Oct 9, 2019

https://twitter.com/rauschma/status/1181852019264503808

We should give a more helpful message when missing "lib": ["dom"].

If accessing a property on a type that was

  • empty and
  • declared in the global scope and
  • named after a pattern that matches /^HTML\w+Element$/

it is likely a forward declaration for DOM environments, and we should provide an error message like:

Pro
ilanpillemer
ilanpillemer commented Oct 5, 2019

It would be nice if there was a terminal tool that provides quick access to documentation on parts of the language, with a switch to also get the source code.

For example Go provides go doc.. or go doc -all to also get the source code to read.
This could be used by tools, but also if you did it with | less its a nice easier way to spelunk code based on what you are interested in.

bkawakami
bkawakami commented Feb 12, 2019

I am trying to integrate ChatterBot into my Django application, but I would like ChatterBot to work in a database other than the default.

Django itself gives you the option of model routing when you want to use multiple databases:

https://docs.djangoproject.com/en/2.1/topics/db/multi-db/

But even following the Django standard, ChatterBot insists on running only on the default database.

Nim
SoftwareApe
SoftwareApe commented Oct 1, 2019

When you run finish.exe twice you get (I decided I wanted the start menu entry after the fact)
C:\Users\<USERNAME>\.nimble\bin is not in your PATH environment variable.

This was an installation without admin rights. The variable is placed correctly in the user path without requiring (unnecessary) admin permissions.

Example

Run finish.exe twice without admin privileges on Windows 10

chriseth
chriseth commented Oct 2, 2019

When generating the Yul intermediate code of Solidity programs, strings are always translated to hex numbers. This prevents readability of IR code. Because of that, the code generator should detect if a string can be represented in printable ascii chars (for safety) and use that instead.

How to implement:

Add a function std::string formatAsStringOrNumber(std::string const& _value) in `l

creativecreatorormaybenot
creativecreatorormaybenot commented Oct 22, 2019

Documentation: https://dart-lang.github.io/observatory/

I think that the documentation is missing features, e.g. CPU profile information in code coverage. Additionally, the screenshots look outdated, i.e. I cannot pinpoint what exactly is missing from the documentation, but it seems like quite a lot has changed.

The link for filing feature requests in the documentation is dartbug.com and w

Red is a next-generation programming language strongly inspired by Rebol, but with a broader field of usage thanks to its native-code compiler, from system programming to high-level scripting and cross-platform reactive GUI, while providing modern support for concurrency, all in a zero-install, zero-config, single 1MB file!

  • Updated Oct 28, 2019
  • 10 commits
  • Red
sjrd
sjrd commented Jun 21, 2019

It was blacklisted in #3702/#2703, but it is unclear if it is caused by an actual bug in our implementation of BigDecimal or not at this point. We should investigate.

If someone wants to tackle this, use the following steps to reproduce:

  • Move the line scala/collection/immutable/NumericRangeTest.scala from scala-test-suite/src/test/resources/2.13.0/BlacklistedTests.txt to `WhitelistedT
skybrian
skybrian commented Feb 24, 2018

The docs are a bit unclear about initializers and super calls, so I figured it out from experimenting and reading the source.

From: http://wren.io/classes.html

re: "A constructor is actually a pair of methods."

It should clarify here that while an initializer method's body runs just like any other instance method, it's not actually visible like a normal method. You can't call it excep

iamrecursion
iamrecursion commented May 13, 2019

Summary

The reasoning behind choosing our eventual backend should be documented separately to the design for the new runtime. A document containing this information should be located in doc/design/backend/potential-backends.md or similar.

Value

This information is important as not only does it let us reference the materials used to make the decision in the past, it also gives us so

elsassph
elsassph commented Oct 18, 2019

Haxelib allows to get a library from git like:

haxelib git hamcrest https://github.com/mikestead/hamcrest-haxe.git master src

With arguments: library name, git URL, branch name, subfolder (undocumented).

Likewise you should be able to declare it it using -lib/-L/--library:

-lib hamcrest:git:https://github.com/mikestead/hamcrest-haxe.git#master#src

(found the #src arg

TheBricktop
TheBricktop commented Dec 6, 2018

Describe the bug
The Unity usage example assumes that user has Rantionary.rpkg file in assets/resources folder but there is no step by step information on how to import those and from what source.
The Rant3.zip from github doesn't contain said file.

To Reproduce
Steps to reproduce the behavior:

  1. Follow the Running in Unity tutorial
  2. Run the example in Unity
  3. See the erro
You can’t perform that action at this time.