Skip to content
#

Framework

A framework is a reusable set of libraries or classes in software. In an effort to help developers focus their work on higher level tasks, a framework provides a functional solution for lower level elements of coding. While a framework might add more code than is necessary, they also provide a reusable pattern to speed up development.

Here are 8,048 public repositories matching this topic...

YanDevDe
YanDevDe commented Feb 18, 2020

What problem does this feature solve?

It would allow us to use numbers which is larger than MAX_SAFE_INTEGER.

What does the proposed API look like?

In HTML, {{BigInt("100")}}, {{100n}}, {{2n * 50n}} or {{50n + 50n}} should show "100" (it can be just simply string by using .toString()) at frontend.
At the moment using BigInt in "Mustache" syntax just throw error.
Sure, backu

foonlyboy
foonlyboy commented Dec 22, 2019

Hi everyone,
I did setup a fresh rails project (--api)
Rails 5.2.4

wrote some routes,
wrote some assert_routing tests,
everything was fine.

generated a model "releases"
all tests immediately did fail with:
ActiveRecord::StatementInvalid: SQLite3::SQLException: incomplete input: INSERT INTO "releases"

The culprit was fixtures/releases.yml
When I removed that file, that error message

weasteam
weasteam commented Mar 25, 2020

So, the picture is supported in autocomplete:

  document.addEventListener('DOMContentLoaded', function() {
    var elems = document.querySelectorAll('.autocomplete');
    var instances = M.Autocomplete.init(elems, options);
  });


  // Or with jQuery

  $(document).ready(function(){
    $('input.autocomplete').autocomplete({
      data: {
        "Apple": null,
        "Micros
KernelDeimos
KernelDeimos commented Nov 16, 2019

Description

Using the fetch API from WHATWG in Google Chrome, an image upload does not have Content-Type multipart/form-data. Instead, the content type is set to the MIME type (ex: image/jpeg) with a boundary parameter. Setting Content-Type explicitly to multipart/form-data should result in an error (and it does).

How to reproduce

Follow an existing image upload example from

manniL
manniL commented Oct 12, 2019

What problem does this feature solve?

To make sure the user doesn't accidentally generates an SPA while he wants a pre-rendered page, it might be worth to write a short sentence about the mode of the project while generating

What does the proposed changes look like?

Current status: "Generating pages" is logged, which is quite general.

![image](https://user-images.githubusercont

symfony
B-Galati
B-Galati commented Nov 8, 2019

Description
At the moment it's quite hard to debug HTTP errors because the only information we get is:

HTTP/1.1 400 Bad Request returned for "https://example.com/".

It would be nice to have an opt-in option that would automatically open response payload and headers in order to log them in Sentry for example. It may require to handle a max lenght on the response payload.

StephenEsser
StephenEsser commented Oct 25, 2019

Issue

When using postcss v7.0.20 the webpack compilation fails with the following stack trace.

✖ 「wdm」: TypeError: Cannot read property 'value' of undefined
    at /Users/username/workspaces/terra/terra-core/9.css:220:3
    at new Quoted (/Users/username/workspaces/terra/terra-core/node_modules/postcss-values-parser/lib/nodes/Quoted.js:19:28)
    at cloneNode (/Users/username/works
vapor
Jinxiansen
Jinxiansen commented Apr 10, 2020

When I checked the document on the Vapor official website, I found it was still the document of Vapor 3.0, and when I changed the browser address to https://docs.vapor.codes/4.0/, I found that the document content was relatively old, and there was still some content not updated in time.

As a Swift server enthusiast who has been using Vapor for 3 years, can I participate in and how to participat

iris
asyslinux
asyslinux commented Dec 28, 2019

Dear developers. I write my custom specific web server for work with specific archive files, compression, encryption, etc. And i want to publish my web server under BSD-2-Clause license.

In my project i use Iris and Iris logger as basement.
I'm not going to use the name of your project to promote my project.

Can I publish my project under the BSD-2-Clause license?

Thanks.

ianstormtaylor
ianstormtaylor commented Dec 13, 2019

Do you want to request a feature or report a bug?

Improvement.

What's the expected behavior?

Since we're already using the docblock comments to power IntelliSense documentation for VS Code (or anything else that supports it), it would be nice to have the API reference automatically generated from these comments.

I experimented with typedoc a while ago, but the project i

jusw85
jusw85 commented Nov 29, 2019

Issue details

Camera.unproject does not return original value

Reproduction steps/code

    public void create() {
        Vector2 tmpvec = new Vector2();
        tmpvec.set(0, 0);

        Stage stage = new Stage(new ScreenViewport());
        stage.stageToScreenCoordinates(tmpvec); // has the correct screen coords;
        stage.screenToStageCoordinates(tmpvec);
        
egg
Kujo-Jotaro-AAAAA
Kujo-Jotaro-AAAAA commented Apr 12, 2020

定义一个 model 层, comment , 但关联的表为comments

复现步骤,错误日志以及相关配置

  1. 创建一个 migrate
    npx sequelize migration:generate --name=comment
    2 . 创建comment 表

` up: async (queryInterface, Sequelize) => {

const { INTEGER, DATE, STRING } = Sequelize;

return queryInterface.createTable('commont', {
  id: { type: INTEGER, primaryKey: true, autoIncrement: true },
sanic
WeeSee
WeeSee commented Feb 9, 2020

In console/Controller.php we can read:

/**
     * Prints a string to STDOUT.
     *
     * You may optionally format the string with ANSI codes by
     * passing additional parameters using the constants defined in [[\yii\helpers\Console]].
     *
     * Example:
     *
     * ```
     * $this->stdout('This will be red and underlined.', Console::FG_RED, Console::UNDERLINE);
  
fastapi
PowerMogli
PowerMogli commented Sep 9, 2019

We are trying to migrate to v4. But now we are failing because we have no clue how to setup a custom auth (api-key) strategy. In v3 we registered our custom api-key strategy at passport like this:

this.passport.use('apikey', new Strategy(verifier));
// and
app.configure(apikey({ header: config.apiKey.header }));

Is there any documentation how to setup a custom (api-key) authentic

Wikipedia
Wikipedia
You can’t perform that action at this time.