The Wayback Machine - https://web.archive.org/web/20200627075905/https://github.com/topics/modular
Skip to content
#

modular

Here are 820 public repositories matching this topic...

Aarbel
Aarbel commented Mar 1, 2020

Problem

I'd like to send many files in the same time but with different files metaData.
The combination of uppy.setMeta uppy.addFile doesn't wok because the upload is asynchronous, and when files finish to upload they will heritate the last uppy.setMeta configuration.

Moreover the uppy.setFileMeta method is quite impossible to use, because on uppy.addFile we can't declared an id

as-dr
as-dr commented Feb 13, 2018

Expected behavior

In the Choo docs on Routing, in the section "Listening for Route Changes" implementing:

var html = require('choo/html')
var choo = require('choo')
var app = choo()

var app = choo()
app.use((state, emitter) => {            // 1.
  emitter.on('navigate', (route) => {    // 2.
    console.log(`Navigated to ${route}`) // 3.
  })
})

Should return a conso

trusktr
trusktr commented Feb 10, 2019

I see the "Welcome" doc page mentions "component system", but it is very vague. Can you describe what are all the reasons that I'd want to use Whitestorm over plain Three.js, f.e. what are all the things I get that Three.js does no offer, so that I can better understand?

Thanks!

OrchardCore
Piedone
Piedone commented Apr 13, 2020

ImageTagHelper in the Media module provides an asset-src attribute for img tags to easily generate images with proper URL. We could have the same for the a tag too, so links can be easily generated too.

Since this just needs another HtmlTargetElement on the class, maybe a good first issue?

perguth
perguth commented Jun 9, 2019

This a 🐛 bug report.

.documents is not accepting an object as second parameter even though it's documented in the README.

Expected Behavior

var someState = { render: 'me' }

// Documented API:
// `compiler.documents(routename, [opts], done(err, { buffer, hash }))`
compiler.documen
elonzh
elonzh commented Jul 17, 2017
u := "http://httpbin.org/post"
// Using net/http
v := make(url.Values) // url.Values has methods for value manipulating
v.Set("k1", "v1")
http.PostForm(u, v)
// or
http.PostForm(u, url.Values{"k1": []string{"v1"}})
// Using gentleman
r := gentleman.NewRequest()
// multipart.DataFields is actually same as url.Values, but without methods
d := make(multipart.DataFields)
d["k1"] = mu
mattjcowan
mattjcowan commented Jan 9, 2020

The following is a suggestion (low priority), up for discussion.

I've use the AddExtCore(...) method as follows on a number of projects:

const string DefaultIncludeAssemblyScanningRegex = "^(app.ext.*)$";
services.AddExtCore(null, new DefaultAssemblyProvider(services.BuildServiceProvider())
{
    IsCandidateCompilationLibrary = lib => Regex.IsMatch(lib.Name, DefaultIncludeAssem

Improve this page

Add a description, image, and links to the modular topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the modular topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.