-
Search currently searches all default fields and groups without the ability to narrow in on your goal. Logic keywords are also not utilized
This feature would allow named fields to be used in the…
-
```cs
private int myField;
public int myProperty {get; private set;}
public int myNonAutoProperty {get{return myField;}}
public int myNonAutoProperty2 {get{return myField;} set{myField = value;}}
…
-
I think that dealing with package scopes and internal/external APIs needs work.
Starting with `@api`, which I find to be extremely backwards:
> The @api tag represents those "Structural Elements" wi…
-
After reading this article in Visual Studio Magazine:
https://visualstudiomagazine.com/articles/2018/06/26/tiobe-june.aspx
I felt sad after I read this debate:
https://www.quora.com/Is-anyone-still…
ghost updated
6 years ago
-
Currently when defining a class, the default values assigned to property are set by the constructor of the class:
```typescript
class A {
map: { [key: string]: string } = {};
}
```
Gener…
-
This is a design and philosophy issue with discord.js that frankly makes me look for other libs that don't have this problem.
Throwing errors in javascript is equivalent of fatal errors in other la…
ghost updated
6 years ago
-
C:\Python27\Scripts>C:\Python27\python.exe vy.py
Traceback (most recent call last):
File "vy.py", line 16, in
root = App()
File "C:\Python27\lib\site-packages\vyapp\app.py", line 41, in **ini…
-
Following on from #459 ... here's the contentious change I've currently got in the patch: pin numbering.
Yeah, that old chestnut. Funny story...
So, @bennuttall and I are at PyConUK and we bump into…
-
This project looks interesting, but I'm not seeing any documentation around the possible advantages over other package managers? Are there any particular strengths you can outline in the README or wik…
-
Episode 3 has this challenge
```
left = 'L'
right = 'R'
left, right = [right, left]
```
but there is no explanation as to why a list is used instead of
```
left, right = right, left
```
wh…