How to compress my setup file in nsis? - nsis

I want to compress my setup file in nsis script.I have my original files which will be bundled using nsis is of size 160mb .I am currently using lzma/solid compression so i am getting a setup file of 58mb.Is there any other way to compress it more.I want a setup file of 30 mb .Is it possible .
Thanks in advance

While NSIS does have some compressor options (SetCompressorDictSize for lzma) you are probably not going to get from 58 to 30.
Are you able to do it with 7zip/lzma2 or WinRar?

Related

NetSuite SuiteScript How to bridge the 10MG limit?

HI and thanks for any help. Is there a way to work with files larger than 10mg? I have to check for updates on items in a file that would be uploaded, but the file contains all items in the system and is approximately 20MG. This 10MG limit is killing me. I see streaming for file save and appending but not for file reading. So I am open to any suggestions. The provider in this instance doesn't offer the facility to chunk the files. thanks in advance for your help.
If you are using SS2 to process a file from the file cabinet then if you use file.lines.iterator() to process a file the size limit is 10MB per line.
I believe returning a file object from a map reduce script's getInputStage automatically parses the file into lines.
The 10MB file size limit comes into play if you try to create a file larger than 10MB.
If you are trying to read in a an external file via script then one approach that I've used is to proxy the call via an external service. e.g. query an AWS lambda function that checks for and saves the file to S3. Return the file path and size to your SuiteScript. The SuiteScript then asks for "pages" of the file that are less than 10MB and saves those. If you are uploading something like a .csv then the lambda function can send the header with each paged request.

How to load another file in libROSA?

I am new to LibROSA and wanted to know how to load a file which is not the default?
You're looking for load. Just provide the path to the file you want to load.

mixing audio files in node.js

Is it possible to mix 2 or more audio files(first.mp3, second.mp3) into a seperate file (mixed.mp3) using node.js?
The mixed.mp3 file need be created from the starts of the selected files and not a concatenation of them. any help will be appreciated

About hydra, crunch and 7-zip

I want to create a password list using crunch. As you know the file will become more than 1 petabyte. I know that in 7-zip you can "archive" a file in the format of "7z" and compress it by a lot. If I create a text file then compress it to a "7z" format, then is it possible to get crunch to access the text file while it is compressed in the "7z" format and to add to the list.
Also is it possible to get hydra to read an archive in this format "7z", when you want to use a password list?

meteorjs (CollectionFS) read the files source

I am using CollectionFS for my meteorjs Application and trying to upload a file and then read the source to do other stuff.
The holw list I want to do is the following:
Upload the file
Read out the source
Depends on the content I will delete or will not delete the file
Step 1 and 3 are no problem - but the second step I don't understand how to do. There are some Callbacks where I can "access" the file (like build a readStream and so on) but I do not understand how to use this to read out the hole source code.
In my case I upload a CSV file and after uploading it I want to analyse the content - but how to solve step 2 with using CollectionFS ?

Resources