prasad83

Results 51 issues of prasad83

Python 3.x changes - print "ABC" to print ("ABC") - [] + map( ... ) to [] + list(map( .... ) ) Pytorch 2.x changes - hidden_size should be int...

NamedSelect and NamedGet APIs to be consistent with Select and Get variants were missing. Kindly consider this merge request.

Follow updates on https://github.com/prasad83/fbootstrapp

For TSV files use command line option ```-s="\t"```

HTTP API will be protected with Auth (Basic / JWT / oAuth) - provide option to accept it during runtime.

Using logger set to handler enables client to capture details. ``` memlog := &bytes.Buffer{} handler := gofast.NewHandler{ ... } handler.SetLogger(log.New(memlog, "", log.LstdFlags)) handler.ServeHTTP(...); println( memlog ) ```

In this example, **merge_all** function will be defined to receive args and kwargs arguments. ```go tpl, _ := gonja.FromString("{{merge_all('jack', 'jill', 'jimmy', went='up-the-hill')}}") if data, e := tpl.Execute(gonja.Context{ "merge_all": func(name *exec.VarArgs)...

On successful auth mailbox select was failing due to missing mailstore initialization.

When site_url is configured make it available for hbs to set base href (using base_url)

S-waiting-on-review