Brian Gernhardt
Brian Gernhardt
I attempted to write the following: ``` perl my $old := $*VAR; my $*VAR := 'new value'; ``` To my surprise, $old ended up undefined due to $_VAR being declared...
I have an API that works like the following (names changed to protect the innocent): `GET /fruits/1.json` => `{"apple": {"id": 1}}` `GET /fruits/2.json` => `{"orange": {"id": 2}}` This is from...
``` class A.B; class A.A; function foo() { var p; p = new A.A; p = new A.B; } ``` Gives me a warning "WARNING: class A.B not found at...
`obj.'!meth'()` in winxed becomes `obj.''!meth''()` in PIR. I'm guessing that the quoted name is how I'm supposed to call methods with non-identifier names, but the extra quotes causes the PIR...
Using classes in multi syntax doesn't match the way the `new` keyword works. - `multi(class ['Foo', 'Bar'])` searches for `Foo.Bar` in scopes. `new ['Foo', 'Bar']` doesn't. - `multi(class 'Foo')` isn't...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior When creating a new account, it says to use punctuation in...
### Description The markup for the sidebar was copy/pasted many many times. This PR adds the following helpers: * `sidebar` - simply adds the appropriate ul wrapper for the sidebar...