Questions tagged [progressive]

Do NOT use this tag: it is ambiguous. Depending on context, prefer tags like [progressive-web-apps] or [jpeg].

81 questions
1
vote
1 answer

Convert uploaded JPEG to progressive and upload to server in PHP

I am trying to take a user uploaded jpeg, convert it to a progressive jpg, and then upload it to my CDN (Cloudinary) in PHP. I currently have the following code: $data = file_get_contents($_FILES["file"]["tmp_name"]); $img =…
Rick Bunch
  • 31
  • 1
  • 4
1
vote
2 answers

iPad 2 Safari not showing progressive .jpg files

Using iPad 2 with OS 5.1.1. In Safari, trying to display a jpg image through img tag but doesn't shows (shows only ? icon). The same image displays if url directly typed on address bar. Also noted that if the image saved as non-progressive jpg, it…
user1106995
  • 780
  • 1
  • 7
  • 14
0
votes
2 answers

Streaming/progressive C++ XML creation library?

I'm looking for an XML library that writes out the XML stream as it goes. I've looked at TinyXML, pugixml, etc. and it seems these only write the stream when the entire DOM is built in memory. I want a library that will write each object as soon…
paperjam
  • 8,321
  • 12
  • 53
  • 79
0
votes
0 answers

pandas dataframe: progressive number into e among categories

I would write an instruction, in Pandas, to add two variables, "m" e "n", on a dataframe, so that: letter m n a 1 1 a 2 1 a 3 1 a 4 1 b 1 2 b 2 2 c 1 3 c 2 3 c 3 3 c 4 3 Something like the SAS instruction: proc sort…
0
votes
0 answers

Progressive Web App install it via Chrome and Firefox browsers it show different shape How it resolve?

Problem statement: We are developing PWA (Progressive Web App), it can be installed via browser. #1: For Android device (specially OnePlus), when it is installed it creates app icon with small browser icon with it. #2: I tried to install it via…
0
votes
2 answers

PWA App open manifest.json instead of page when installed on Chrome

I made an app in PWA and it was working perfectly but after a few days it started opening the manifest file instead of going into the app page every time I access the installed App. This only happens when accessing the app installed by Chrome, if…
MichaelHasfel
  • 41
  • 1
  • 1
  • 7
0
votes
1 answer

Ruby : combined if statements : why does my code always prints the same value ? (Example : progressive tax scale)

Im very bad but I need this for practical reason : why does my code always prints "2500" when 'revenus" is superior to 15000 ? It's about progressive tax scale : we give him a revenue, and he gives us the tax we have to pay. Scale 1 : NOT any tax…
0
votes
1 answer

Progressive web apps and ASP.net routing

What I’m trying to achieve is provide users with a personalised ASP.net routed URL that they can add to their phone’s home screen. When they tap the icon it opens their personalised page PWA standalone looking almost like a native app. For example…
0
votes
1 answer

PWA (Uncaught (in promise) TypeError: Request failed) error

this is my code I don't understand where this error is coming from i have tired methods from provious post but this doesnt seem to work. pls help thanks in advance. this is the error this is my service worker code
slyde
  • 3
  • 1
0
votes
1 answer

Partial Views in Progressive Web App

We are looking to move to Progressive Web Applications. We are looking at Partial Views for better efficiency. Does PWA have more options for Partial View or do we have to use Ajax?
0
votes
1 answer

Eloqua Forms - Progresive Profie / Profiling

I'm quite new in Eloqua. I'm trying to generate Progressive Profiling Forms, and as I can find in the web, there are two ways: Adding Rules, or setting Stages or Linear flow. But, I am not being able to do either. Any help? By the way, the most I…
korbo
  • 1
  • 2
0
votes
1 answer

How do I open iframe links in parent window on android native app?

I'm trying to build this directory type of app and I'm using iframe to embed other sites into the app.I'd also like the links of the embedded sites to open within the parent window. With the Progressive web app version, this works great and there…
Kit Mateyawa
  • 197
  • 2
  • 15
0
votes
1 answer

JPEG compression and progressive JPEG

I have a high res Baseline JPEG which I want to compress from 6MB to +- 300kb for my website and make it progressive. Now I know how to do both, progressive with photoshop and compression with a tool online or gulp/grunt task. I am wondering what is…
user234562
  • 631
  • 9
  • 20
0
votes
1 answer

Customize multiple progressive jpeg config in Fresco

The progressive jpeg config can be setted when initializing Fresco. ImagePipelineConfig config = ImagePipelineConfig.newBuilder(context) .setProgressiveJpegConfig(progressiveJpegConfig) .build(); Fresco.initialize(context, config); Now I…
Katy
  • 1
  • 2
0
votes
2 answers

Progressive LOOP Statement ORACLE

How to create a function that returns a float(ChargeTotal)? ChargeTotal is based on a progressive table using number of batches. num of batches | charge ---------------------------- 1-10 | 0 11-20 | 50 21-30 …
DEwok
  • 73
  • 2
  • 3
  • 11