language
Here are 3,335 public repositories matching this topic...
Example ( JSON decoding/encoding ):
Returns:
You just found a bug. V can't compile this program, but it should. Please create a GitHub issue.
Solution: ?
fn main() { age = 21 }
Using Run works perfectly.
But all other examples like Strings, ...
name := 'Bob' println('Hello, $name!') //
$` is used for strin
-
Updated
May 22, 2020 - Ruby
the link to "Less.js Syntax Highlighting User Defined Language by Raúl Salitrero" is broken at lesscss.org/tools/ in section "Notepad++" (probably because the NPP project moved to github).
The version by azrafe7 (next link) seems to be a further developed version of the version by Raúl Salitrero (who's version is mentioned by azrafe7 as the 'initial version'), so may
Some developers likes dark theme - more gentle on the eyes when codding at night
The CSS media prefers-color-scheme can be used for auto-detection o the light/dark theme user preference
The prefers-color-scheme CSS media feature is used to detect if the user has requested the system use a light or dark
-
Updated
May 6, 2020 - JavaScript
The callable constructor proposal was withdrawn because "the same problems can be solved with decorators" but the readme here doesn't show examples of that. Can you please update that for reference? It would be really helpful.
-
Updated
May 18, 2020
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.
It seems there is a different raises behaviour for newTerminal()
Example
import terminal
proc test() {.raises:[IOError, ValueError].} =
setBackgroundColor(stdout, bgRed)
test()
This will compile on Linux, but not on Windows. Error:
C:\Users\deme\repos\getterminalraises.nim(3, 22) templa
The type checker contains multiple occurrences of
if (noErrors)
for (Source const* source: m_sourceOrder)
if (source->ast)
for (ASTPointer<ASTNode> const& node: source->ast->nodes())
if (ContractDefinition* contract = dynamic_cast<ContractDefinition*>(node.get()))
These should be extracted into some helper "forAllContracts" or something like that, which takes
In the version deployed at http://play.witheve.com/#/examples/quickstart.eve the hover text for sidebar expand/collapse button is reversed. Look through the repo for the offending code but could not find it.
Our docs show:
dart --enable-experiment super-mixins
This format does not work on the VM. It should be:
dart --enable-experiment=super-mixins
Red/System []
s2: declare struct! [
a [integer!]
b [c-string!]
c [struct! [d [integer!] e [float!]] value]
]
probe size? s2
Taken from https://static.red-lang.org/red-system-specs.html#section-4.7.2
Says:
Compiling to native code...
*** Red/System Compiler Internal Error: Script Error : last expected series argument of type: series port tuple
*** Where: for
The embedding example in the documentation suggests to run the code "System.print("I am running in a VM!")" which does not print anything because the vm was not configured with a print function.
Suggesting the user to provide a print/error function would make things clearer.
So currently the doc for EReg.matched
says this:
The index
n
corresponds to the n-th set of parentheses in the pattern
ofthis
EReg. If no such sub-group exists, the result is unspecified.
But it's not immediately clear what "no such sub-group exists" means exactly. I assume it means that the group was not defined in the regex. But it's a bit confusing in case the group was define
Could the generated docs be moved to a separate repo? The CI could then commit to that separate repo to keep them updated...
-
Updated
May 21, 2020 - JavaScript
It seems configurations for proselint are centralized to different canonical files (namely $XDG_CONFIG_HOME/proselint/config
, ~/.config/proselint/config
and ~/.proselintrc
) instead of a per project config basis.
So may I ask how to specify project/folder/files-specific rules? Maybe including some examples in the README.md would be nice?
Thanks
Here I have another suggestion, this time about our Gravity's CLI. I come up with this list of improvements which I think should benefit the project:
- If no arguments passed it should display help section instead of opening
REPL
- To open
REPL
add a new flag for examplegravity --repl
gravity new [project]
- a new simple command to create new project. (A wizard which helps with co
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:
- Follow the Running in Unity tutorial
- Run the example in Unity
- See the erro
-
Updated
Sep 20, 2018
Really nice project.
Writing in coconut files, you lose all the IDE integrations for Python. For example, I use VSCode and all the intellicode and hints of course doesn't work for cocount.
I am not too familiar but perhaps theres needs to be a separate language server or maybe you could leverage the existing Python integrations. Either way, better IDE integration wo
We should expand the contribution guide:
- Installing test / documentation dependencies
- Running the tests
- Detailed explanation of the VIP process
- Team calls
The Atom contribution guide is an excellent example - some of the content isn't valid for Vyper, but it's a great reference point for what a contribution guide can look
const char* getIp(void) {
return "192.168.1.1";
}
above should be
const char* getIp(const el::LogMessage *l) {
return "192.168.1.1";
}
Improve this page
Add a description, image, and links to the language topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the language topic, visit your repo's landing page and select "manage topics."
Hello,
I wanted to reach out and see whether there is an interest in the fix for #34437 being included in the Go release notes. Someone I know was finally working through upgrading to Go 1.14 and ran in to some peculiar issues with their JSON being unmarshaled differently. Here is that commit on our side: