Will Faught
Will Faught
Had to figure that out the hard way. You have to create a new session to see, for example, a table created with the current session.
A flag that auto instruments packages with breakpoints instead of printing a warning would be useful. Something like: Before: ``` godebug run main.go godebug run: Ignoring breakpoint at foo.com/bar/baz.go:100 because...
I suppose this can always be done manually by putting `_ = "breakpoint"` as the first line in your `main` or `Test*` funcs, but it would be really handy to...
You can print a variable with an interface type and see its underlying value: ``` > p foo Foo{Bar: [pointer syntax]} ``` but you can't dig deeper into it to...
It would be helpful to print the function stack in times I forget where I am in the current goroutine.
- Return from the current function - Quit the program Any plans for these?
I'm experimenting with the [Haskell syntax](https://www.haskell.org/onlinereport/haskell2010/haskellch10.html), which allows any uppercase (Lu) Unicode category character in certain places and not others. Is there a way to do that in gocc? Specifically,...
It'd be useful to have basic validation methods like: ``` Flag(...).Positive().Int() Flag(...).Range(1, 10).Int() Flag(...).MatchRegexp(`\w\d\w`).String() ```
https://github.com/twbs/bootstrap/blob/c3c65911665ab64bdaa15d405db65ee81655dbf3/site/content/docs/5.2/layout/columns.md?plain=1#L281
Hugo should let users group content/, layouts/, and static/ files under content/. It's much simpler for beginners, when starting fresh, and when porting an existing static site incrementally. E.g. ```...