Skip to content
#

web-application

A web application is any program that is accessed over a network connection using HTTP, usually via a web browser. Web apps do not have to be installed on a user's device; they are run from a remote server. This differs from mobile apps, which are installed on the user's mobile device, and desktop applications, which are installed on the user's computer. Common examples of web apps include Flash games, online calculators, calendars, Gmail, and Facebook.

Here are 4,322 public repositories matching this topic...

torstenzander
torstenzander commented Jan 13, 2022

Issue Summary

The asset helper does not work with svg images using # because it adds a query param.

Steps to Reproduce

 <svg class="icon icon__primary quote__line">
        <use xlink:href="{{asset "images/solid.svg#minus"}}"></use>
</svg>

Using this does not show the svg images it renders to:
xlink:href="/assets/images/solid.svg#minus?v=094ca0c660"

When I remov

writefreely
colin-axner
colin-axner commented Oct 9, 2020

on latest develop, if I run:

go test
ERROR: 2020/10/09 16:43:21 oauth.go:148: viewOauthInit error: pretend unable to write state error
--- FAIL: TestViewOauthCallback (0.00s)
    --- FAIL: TestViewOauthCallback/success (0.00s)
        oauth_test.go:248: 
            	Error Trace:	oauth_test.go:248
            	Error:      	Received unexpected error:
            	            	/logi
crate

👕 👖 📦 A sample web and mobile application built with Node, Express, React, React Native, Redux and GraphQL. Very basic replica of stitchfix.com / krate.in (allows users to get monthly subscription of trendy clothes and accessories).

  • Updated Mar 27, 2021
  • JavaScript
MisterY
MisterY commented May 13, 2019

As an intermediate step towards #1015, and various parts thereof, would it be possible to ignore the syntax for features not currently supported, yet use the parts which are supported in trades?
I'm thinking out loud and wondering what effects this may have.

My end goal here is to be able to read a data file https://gitlab.com/snippets/1856416 without errors. Hledger would be able to parse thi

diskover-community