Tuesday, March 19, 2013

qiewer extractor 0.8.0

The new features are:
  • New decompression methods for zip:
    wavpack, deflate64, ppmd, zip-jpeg
  • zip64 support
  • Solid rar archives

Download at: http://ssbssa.dyndns.org/qiewer-extractor.html

Tuesday, January 1, 2013

Formulas

A simple calculator and function graph.

Supported operations: +, -, *, /, ^
Predefined variables: pi, e, i
Predefined functions:
  • ln(x)
  • sin(x)
  • cos(x)
  • tan(x)
  • asin(x)
  • acos(x)
  • atan(x)
  • atan(y,x)
  • sinh(x)
  • cosh(x)
  • tanh(x)
  • arsinh(x)
  • arcosh(x)
  • artanh(x)
  • fac(x)
  • min(x1,x2,x3,...)
  • max(x1,x2,x3,...)
  • abs(x)
Functions for complex numbers:
  • phi(c)
  • x(c)
  • y(c)

Lets you define variables:
a=30
b=40
c=(a^2+b^2)^0.5

and functions:
pyth(a,b)=(a^2+b^2)^0.5
pyth(30,40)


You may use hexadecimal, octal or binary numbers:
# hexadecimal
hex1=0x10
hex2=0h20

# binary
bin=0b1010

# octal
oct=0o3


Draw function graph with:
f(x)=3*sin(x)+x/5
:graph(f())


Draw polar function graph with:
flower(x)=5+cos(x*8)
:polar(flower())

Or specify the interval:
spiral(x)=x
:polar(spiral(),0,4pi,0.1)


Draw parameter graph with:
f(p)=5*sin(p)
g(p)=5*sin(p*10)

:param(f(),g(),-pi,pi,0.001)

All graphs have an additional parameter for the color in RGB:
:graph(sin(),0xff0000)

p(x)=3
:polar(p(),0x00ff00)

px(p)=sin(p)
py(p)=p
:param(px(),py(),-20,20,0.1,0x0000ff)


Find it embedded at: http://ssbssa.dyndns.org/formulas.html
Download at: http://ssbssa.dyndns.org

Monday, December 31, 2012

comic qiewer 0.7.6

This is a very simple (and small) comic reader.
Supports zip / cbz / rar / cbr archives, containing bmp / png / jpeg / gif images.

To add comic qiewer to the context menu, press 'F1', and then the first button 'register filetypes' (possible administrator rights are needed).
Drag&drop works as well.

Keyboard functions:
  • move with arrow keys
  • page through with page up/down
  • show current page / goto page with 'p'
  • exit with 'Esc'

Mouse functions:
  • move up/down with wheel, left/right with middle-click + wheel
  • page through with right-click + wheel

Download at: http://ssbssa.dyndns.org

Sunday, December 30, 2012

qiewer extractor 0.7.6

The new features are:
  • New archive format: lzip (.lz)
  • Extract with drag&drop
    Drag archives with right-click to the destination folder, then "Extract..." in the context menu.
  • Extract from clipboard
    Copy archives to the clipboard, and "Extract..." in the destination folder.

A context menu shell extension makes it now possible that multiple archives are extracted with one process (and not one process per archive like before).

Download at: http://ssbssa.dyndns.org/qiewer-extractor.html

Friday, December 28, 2012

qiewer extractor 0.7.5

Supports most common archive formats:
  zip, rar, 7zip (7z), split files (001), tar, gzip (gz), bzip2 (bz2), lzma, xz

Main feature is of course the browsing of these archives with the Windows Explorer.
From there you can:
  • open the file
  • "open with", when shift + right-click
  • open all, when shift + enter
    this means all files (no sub-folders) of the current folder are extracted, and the selected file opened
  • copy to clipboard
  • drag&drop out of the archive

The archives can simply be extracted with the new option "Extract..." in the context menu.
And in case the archive is already associated with another program, the option "Explore" will also be added to the context menu.

Download at: http://ssbssa.dyndns.org/qiewer-extractor.html