JAPBE AND PANDA SOFTWARE

Applications, Games, Tools, User libs and useful stuff coded in PureBasic
KIKI
Enthusiast
Enthusiast
Posts: 145
Joined: Thu Dec 28, 2006 11:49 am
Location: FRANCE

JAPBE AND PANDA SOFTWARE

Post by KIKI »

I have a problem with Panda and Japbe
Japbe freeze when i open the procedure About.... if i desactviate Panda JAPBE works well.
Has somone had this problem ? if yes how did it solve it
ricardo
Addict
Addict
Posts: 2438
Joined: Fri Apr 25, 2003 7:06 pm
Location: Argentina

Post by ricardo »

Delete Panda from your PC
User avatar
Kiffi
Addict
Addict
Posts: 1493
Joined: Tue Mar 02, 2004 1:20 pm
Location: Amphibios 9

Post by Kiffi »

ricardo wrote:Delete Panda from your PC
It would be a pity! Pandas are sooo cute...

Greetings ... Kiffi

P.S.: What is Panda?
Hygge
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

Kiffi wrote:P.S.: What is Panda?
A Antivirus Program, so good that you can never work on your pc :lol:
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
Image
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Post by DoubleDutch »

Panda is one of the best anti-virus programs. Pity there is a conflict.
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Re: JAPBE AND PANDA SOFTWARE

Post by gnozal »

KIKI wrote:I have a problem with Panda and Japbe
Japbe freeze when i open the procedure About.... if i desactviate Panda JAPBE works well.
Has somone had this problem ? if yes how did it solve it
jaPBe.exe is packed with PECompact2, hence the (false) alarm I guess ...
Maybe panda antivirus software throws an alarm because it is unable to unpack it (unlike other av software).
Kiffi wrote:What is Panda?
Panda is most probably the largest scientology company in the world :D
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post by blueznl »

One of the things that keeps puzzling me is this drive for packed executables. I can understand you want the installable to be as small as possible, but why would you pack an executable? Isn't that slowing down loading and execution of the program?
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Post by gnozal »

blueznl wrote:One of the things that keeps puzzling me is this drive for packed executables. I can understand you want the installable to be as small as possible, but why would you pack an executable? Isn't that slowing down loading and execution of the program?
From PECompact website :
Why would one want to compress an executable/module?

There are many reasons. One of the most common is that compression offers an inherent degree of tamper resistance and obfuscation. Another is that since the usual compression ratio is greater than 70% (that is, the compressed file is 30% of the original), larger executables and modules may load much quicker from the network or disk hosting them. Since storage medium is often the largest bottleneck in overall system performance, the time spent decompressing can be much less than the time saved by not having to load as much data from the storage medium.

Add tamper resistance.

Obfuscate and help deter reverse engineering.

Compression is typically 70% or greater on large files, far better than popular file compression software. This is because compression is targeted to a specific file/data format.

Load time can be improved by having a smaller image to load from the storage medium (disk, network, etc..).
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post by blueznl »

may load
They key word here is 'may'...

I've just done two quick tests, and the difference between packed and unpacked was absolutely marginal on my machine (in fact, I think the unpacked one loaded even faster). Could be my raid 0 raptors, but I think modern hardware is a lot faster than in the past... even on the disk side.
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
UserOfPure
Enthusiast
Enthusiast
Posts: 469
Joined: Sun Mar 16, 2008 9:18 am

Post by UserOfPure »

blueznl wrote:One of the things that keeps puzzling me is this drive for packed executables. I can understand you want the installable to be as small as possible, but why would you pack an executable? Isn't that slowing down loading and execution of the program?
It doesn't slow down loading, in fact it loads faster because the byte size on disk is so much smaller. And on USB sticks this smaller speed makes it load and run WAY faster. Unpacking is usually around 99% of realtime speed, so it's no big deal. Packing = good. :)
Post Reply