koszty szczepień w Warszawie 2008

Poniżej koszty szczepienia niemowlaka w różnych prywatnych placówkach w Warszawie.

Rotarix – szczepionka na rota wirusa

Infanrix Hexa – szczepionka skojarzona

medicover
- własne
szczepionki
Medicover Lim – Mariot enel-med

Blue City

Babka
Medica
wizyta 160 160 100 140 120
rotarix 346.87 360 400 340 350
infanrix hexa 209.16 242 225 180 200
suma 716.03 762 725 660 670

how to add leading zeros to numbers in filenames perl

This one-line command
- creates new  folder  – ‘new’ in current working folder
- process all files which contains numbers in file name
- number is substitute with missing zeros (maximum 3 zeros)

mkdir new;  perl -e ‘foreach (<*>){ if (/(\d+)/) {;  $name=sprintf “%03d“, $1; $f=$_; $f=~s/(\d+)/$name/; `cp “$_” “new/$f”`}}’

weblogic cluster multicast tets

java -cp ../../../server/lib/weblogic.jar utils.MulticastTest -P 7001 -A 239.192.0.0 -N srv1

-P port
-A multicast address
-N message send to other members

support patterns found:

https://support.bea.com/application_content/product_portlets/support_patterns/wls/MulticastErrorsPattern.html

How to browser Weblogic’s embeddedLDAP

first change EmbeddedLDAP password (i.e. weblogic) from console.

ldapsearch -x -w weblogic -D “cn=Admin” -b “dc=test” -h localhost -p 7001 uid=weblogic

where -w weblogic – EmbeddedLDAP administrator password

-x            – selects simple authentication method
-D “cn=Admin” – we are binding LDAP Administrator
-b dc=test    – where ‘test’ – domainname
-h localhost  – Weblogic’s listen address
-p 7001       – Welogic’s listen port
uid=weblogic  – search filter – here we are looking for weblogic entry

full ldap search:

ldapsearch -x -w weblogic -D “cn=Admin” -b “dc=test” -h localhost -p 7001 *