surfmuggle

Results 12 comments of surfmuggle

@nbpalomino By "twig > razor" do you mean that twig is better than razor? What is php razor missing?

@leek One reason for us would be if php razor and asp.net razor were identical that we could modernize the frontend (all echo now) by using razor and have synergies...

I was wondering if there is such a thing like a "trivial code". For example i am grateful to have found [`performance.js`](https://github.com/bgrins/devtools-snippets/blob/master/snippets/performance/performance.js) but it has only 78 sloc to get...

Atlassian offers [smart commits](https://support.atlassian.com/bitbucket-cloud/docs/use-smart-commits/). This command ``` git commit -m "myIssue-123 #resolve #time 3h20m #comment the bug 123 took 3h and 20m to fix" ``` Should do the following -...

## partly off topic I did run into proxy issues. From [vs code settings](https://code.visualstudio.com/docs/getstarted/settings) ``` // The proxy setting to use. If not set, will be inherited from // the...

I would love to have the option to use [multiroot-workspaces](https://code.visualstudio.com/docs/editor/workspaces#_multiroot-workspaces). Inside a multiroot-workspace each folder would contain one collection and its requests as a single or multiple files ### Example...

@DamianSuess I could not find a way to switch to a dark mode in Roslynpad 18. Is there already an option (config file, command line argument) to start roslynpad in...

Hello @anantanandgupta regarding your comment `They may have different paths on my drive` i wondered if this folder and file structure would be possible with a [multiroot workspace](https://code.visualstudio.com/docs/editor/multi-root-workspaces). ``` javascript...

I understand that the docs about a [Map](https://dart.dev/language/collections#maps) has a sample > You can create the same objects using a Map constructor: ```dart var gifts = Map(); gifts['first'] = 'partridge';...

We have a similar use case to import some common actions (find element, get value) to a helper file ```javascript async function Login_user_foo(page) { await page.goto(''); await page.getByLabel('Remember me').check(); await...