z cyklu powiedzonka

‘How do You do’ – praktycznie nie uzywane. Przetestowani anglicy odpowiadaja ‘fine, ok’
A standardowa opowiedz powinna byc ‘How do You do’
Wedlug ich wyczycia jest to bardzo rzadko uzywane, a jezeli juz to do ew. kogos eleganckiego nieznajomego spotkanego np. na ulicy kiedy go mijasz. Wtedy moze to zafuncjonuje . Nie jest to w kazdym razie zaproszenie do nawiazania rozmowt

resseting weblogic password

This is update for password reset procedure for weblogic 7 described in

http://dev2dev.bea.com/pub/a/2004/07/WLSAdmin_bpr.html

* At the command line, change directory to the domain and run the setEnv script to set the PATH and CLASSPATH.
* Backup the existing DefaultAuthenticatorInit.ldift file in a different directory.
* java -cp D:\bea\weblogic700\server\lib\weblogic.jar weblogic.security.utils.AdminAccount adminuser weblogic . (Be careful: there is a dot at the end of the command).
* rm myserver/ldap/DefaultAuthenticatormyrealmInit.initialized
* rm boot.properties (if any)
* Reboot the admin server with “adminuser” as administrator userid
file and replace it with the backed up file.
* After the server has successfully booted, delete the new DefaultAuthenticatorInit.ldift * login into weblogic console with adminuser username
* change password for user system
* delete user adminuser
* refresh boot.properties with new password for user system
* refresh rest of files with authentication data
java weblogic.Admin -username system -password **** -userconfigfile WebLogicConfig.properties -userkeyfile WebLogicKey.properties STOREUSERCONFIG

changing password for system user for weblogic 7

- change password from console
- put new username and password in boot.properties in cleartext
- remowe WeblogicConfig.properties and WeblogicKey.properties used with -userconfigfile WebLogicConfig.properties -userkeyfile WebLogicKey.properties parametres to weblogic.Admin class
- generate new properties files via STOREUSERCONFIG command
java weblogic.Admin -username system -password ****** -userconfigfile WebLogicConfig.properties -userkeyfile WebLogicKey.properties STOREUSERCONFIG

slownictwo

raining cats and dogs – ciezki deszcz/ulewa
Opis pochodzenia tego wyrażnienia http://www.phrases.org.uk/meanings/raining%20cats%20and%20dogs.html

Pewnie z 17 wieku kiedy po ulewie znajdowano martwe zwierzęta zmyte z dachu

Jeszcze jedno ciekawe często używane  :

not a sausage – w kontekście otrzymania wiadomości – brak wieści , zero wiadomości od kogoś

O cholera

Teraz mogę stwierdzić, że bez ani cienia wątpliwości jestem żoną absolutnego informatyka.

Na dziesięć poniższych wpisów rozumiem trzy. Nie więcej.

zdegenerowany przykład na działanie wywołania funkcji z argumentami w bashu

wwwadm@host<!>/tmp/a.sh
000
[][]
[111][]
[222][333]
wwwadm@host<!>cat /tmp/a.sh
#!/bin/bash
myfunc() {
echo [$1][$2];
}
echo 000
myfunc
myfunc 111
myfunc 222 333