Questions tagged [stripping]

72 questions
1
vote
0 answers

What factors prevent offline browsing software from downloading a site?

Why is it not possible to download the pages on this site - http://www.judicialcollege.vic.edu.au/eManuals/VSM/index.htm#13888.htm - using offline browsing software? Not sure if the issue is programming-related but I have a feeling some programming…
SandyAAJ
  • 49
  • 1
  • 7
1
vote
1 answer

Jena: reading model using inputstream

I'm using Jena to read a RDFa file. After creating the Model I read the RDFa file into the model. (Basic usage of Jena) When I store the file online and pass the URL to the model, everything works as expected and the contents of the file together…
1
vote
0 answers

Stripped-down FlexSlider

I'm considering using FlexSlider 2 for an image gallery on one page of a website. FlexSlider seems to use both jQuery and a ~50kB function-defining script. I'm probably more anal about stuff like this than I need to be, but the idea of using such…
randomhead
  • 111
  • 1
1
vote
0 answers

IE9 strips part of url

Internet Explorer 9 is stripping (a large) part of a url - as entered into the address bar - why would it do this? The complete url is (domain has been…
Colin G
  • 309
  • 3
  • 14
0
votes
1 answer

How to strip a text file into a single line, and then split that into a relevant list in python?

I'm a noob right now with pygame and I was wondering how to load a textfile, then strip that into a a single line. I believe that i would need to use the .rstrip('/n') function on my variable with the openned text file. But now, how do I turn this…
0
votes
1 answer

Hide specific exported symbol with gcc

I need to hide a specific exported symbol. Which is "___udivdi3" But i don't know how. I have a script the strip symbols after the build. Then i have to pass the binary into a third party tool (wrapper)that complain about this exported symbol. Any…
Tosh
  • 2,097
  • 3
  • 13
  • 8
0
votes
1 answer

Mark code for stripping automatically based on attribute arguments

I have made a minimalistic multiplayer game netcode framework where client and server code are located in the same classes. Instances of those classes appear on both, the server and the clients. These classes can have properties marked as to be…
Sebastian Barth
  • 4,079
  • 7
  • 40
  • 59
0
votes
0 answers

Stripping symbols in Xcode framework

We are trying to create a framework in XCode, this framework is like a Wrapper, joining the two libraries (libA.a and libB.a) and some extra code in swift. libA.a: Mach-O universal binary with 2 architectures. libB.a: Mach-O universal binary with 4…
0
votes
0 answers

strip all comments from helm package

I have a lot of comments in my helm chart in my repository. I want to deliver my helm chart to others without these comments. I am hoping to be able to do this during my CI pipeline. I have a step in my pipeline which performs the helm package…
0
votes
2 answers

stripping singular / from a csv file

I have a csv file which has a few areas where / proceeded by nothing and proceeded by nothing that I'd like to strip out. The catch is, I also have other items in the file which have a / that I don't want to strip out. an example: /abc, /,…
MarkL
  • 147
  • 2
  • 8
0
votes
1 answer

Stripping whitespace in python

I'm reading the python crash course book. The author talks about stripping whitespace, and how to eliminate them in strings: He gives an example like this: favorite_language='python ' print(favorite_language.rstrip()) -- 'python' You can see the…
0
votes
1 answer

PHP: Unwanted text stripping

I've been encountering this problem for a while now and I have no idea how to solve it. There is this "guestbook" that I made where people write a message and it prints out under the form. So a normal guestbook. But it sometimes strips messages from…
Martin
  • 1
0
votes
1 answer

Remove comma from middle of string in python

My problem is stripping a comma out from a string. This string contains two commas and when this second comma is included in my list of strings, it interferes when writing to a CSV in the proper manner. The string I would like to strip the comma…
cinemod
  • 27
  • 1
  • 7
0
votes
1 answer

How to prevent Particle System Physics Module from being stripped in Unity build?

When running my game on device, I see the following warning in the debug log: The ParticleSystem uses a gravityModifier, but the Physics Module is stripped, so using a default value of 9.81m/sec/sec for gravity. Disable stripping in Player…
Bilal Akil
  • 4,716
  • 5
  • 32
  • 52
0
votes
1 answer

Removing spaces from a string using Powershell

I have an issue where extracting data from database it sometimes (quite often) adds spaces in between strings of texts that should not be there. What I'm trying to do is create a small script that will look at these strings and remove the…
B. Baxter
  • 133
  • 1
  • 10