×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles
    Revision as of 09:24, 19 March 2006 by 67.15.179.13 (talk)

    thoughts

    mutante !save last 23 of mutante,drowl,mattis from #seti23 to s23wiki:IRC/logs/$timestamp haha ;) good night all

    Commentaries:

    Edelweisspiraten

    moved to Image talk:Edelweisspiraten.jpg
    see my answer there. thx for help finding a way through the copyright-jungle --cosmea 11:16, 8 November 2005 (CET)

    RDF-Zeug

    hi :) könntest du bitte bei Zielgruppe im Quelltext den rdf-code (hatte ich vorsichtshalber mit der CC-Lizenz mitkopiert) checken? Bin mir nicht sicher, was der genau macht und ob wir den wirklich brauchen. vielen dank! --cosmea 10:39, 28 October 2005 (CEST)

    RDF Zeug hat vermutlich mit RSS-Feeds zu tun, enthält aber nur Links zu der CreativeCommons Lizenz die wir im übrigen auch selbst auf unserem Wiki verwenden. Habs mal gekürzt und nur den reinen Link dringelassen. mutante 19:00, 28 October 2005 (CEST)

    Image Resizing

    hi mutante, Image:Hippiesfromhell.gif is a bit too big and needs some imagemagick ;) thx a lot.--Cosmea 14:24, 17 Oct 2005 (CEST)

    [[Image:Hippiesfromhell.gif|200px]]

    <-- adjust px (pixelsize) to your needs like in this example. mutante 19:00, 28 October 2005 (CEST)

    mutante, replied on Talk:Forum#Request for Comment : Translation link. -Kunda 14:17, 28 October 2005 (CEST)

    DrOwl on changing skin settings

    Hay MUT... Tiz i the doc... i was playing around with Skins the other day... now i seem to have a blank skin, and can not change it becouse every time i log in i just get a blank window... =( any idear how to change my "skin" when i can not do it directly my self??? is there an "commandline user config" --DrOwl (2005/08/16 13:47


    I searched on the mysql wiki database and i found this:

    mysql> describe user;
     ------------------ --------------------- ------ ----- --------- ---------------- 
    | Field            | Type                | Null | Key | Default | Extra          |
     ------------------ --------------------- ------ ----- --------- ---------------- 
    | user_id          | int(5) unsigned     |      | PRI | NULL    | auto_increment |
    | user_name        | varchar(255) binary |      | MUL |         |                |
    | user_real_name   | varchar(255) binary |      |     |         |                |
    | user_password    | tinyblob            |      |     |         |                |
    | user_newpassword | tinyblob            |      |     |         |                |
    | user_email       | tinytext            |      |     |         |                |
    | user_options     | blob                |      |     |         |                |
    | user_touched     | varchar(14) binary  |      |     |         |                |
    | user_token       | varchar(32) binary  |      |     |         |                |
     ------------------ --------------------- ------ ----- --------- ---------------- 
    9 rows in set (0.00 sec)
    
    mysql> select user_options from user where user_name="DrOwl";
    ... <snip> ...
    contextlines=5
    contextchars=50
    skin=admonobook    <--------- there it is
    math=4
    rcdays=7
    ...< snip> ...
    

    Unfortunately the whole options are crammed together into one big blob, instead of being one option per column. So the updating isnt that nice and quickly as it could. Will still fix your skin setting back to default "monobook" now by exporting it to a file,changing file and importing again. mutante 15:26, 16 Aug 2005 (CEST)

    bash> mysqldump -u root -p -w "user_name='DrOwl'" -t wikidb user > drowl.sql
    
    replaced "admonobook" with "monobook" in [[vi]].
    
    mysql -u root -p wikidb < drowl.sql
    
    ERROR 1062 at line 12: Duplicate entry '5' for key 1
    
    arr,not like this. Looks like i have to drop you before, using an update statement fails somehow...
    
    

    Password Messup

    Arrr,DAMN; now i messed up and deleted your user info. About to reconstruct it and give you a new password and default settings...arff Murphy mutante 16:01, 16 Aug 2005 (CEST)


    BIG MESSUP, accidentally overwritten ALL passwords with new string instead of only DrOwl's . OUCH,, have manually reset to passwords from backup. If you have any trouble logging in, leave a note here. Sorry. mutante 17:18, 16 Aug 2005 (CEST)


    =) did you reset my PW back to what it was??? i can not login =( i wasnt onling lastnight or i would of hassled you then =) ---Loves and Joys your DrOwl


    How do I change a user's password?

    Assuming that $wgPasswordSalt is set to true (the default), you can use the following SQL query:

    UPDATE user SET user_password = MD5(CONCAT(user_id, '-',MD5('somepass'))) WHERE user_name = 'whatever';
    

    Where obviously "somepass" is changed the password you want to set and "whatever" is changed to the user name as it is listed in the table "user". --- from:


    Kunda on Top Categories

    --- mutante,(greetz) looks great(top catagories box)..is it automagically generated or static ? -Kunda 11:32, 9 Apr 2005 (CEST)

    it's static.(and i think might be ok to stay) adding corners now. mutante 11:52, 9 Apr 2005 (CEST)


    Finn 21:20, 30 Mar 2005 (CEST)

    LOL @ Ohmsches Gesetz hehe


    (added by KunDa)

    mutante, a creature of mutation. A facilitator of skills for himself and fellow humans.
    Co-founder of the Seti23 cabal and bestower of neat thingies on the unsuspecting public.
    A bringer of light on all terrestrial inhabitance. A mench among the wretch and rabble.
    His mother should be proud...never has such a bastard walked among us and lived 
    a full length life (yet).
    

    Amen. (:P)


    muta, thanks for the WmIc page...awesome! -KunDa


    Muta, A script to check the USA's Homeland Security threat level

    #!/bin/sh
    echo "Threat Level: `curl -s http://www.dhs.gov/dhspublic/getAdvisoryCondition | tail -n 1 | cut -f2 -d \"\\"\"`"
    

    or

    <?php
    $threat = eregi_replace('.*CONDITION="(.*)" />', '1', implode('
    ', file("http://www.dhs.gov/dhspublic/getAdvisoryCondition")));
    print "Homeland Security Threat Leval: $threat.";
    ?>
    

    Maybe you can tcl one and add it to the bots! jejeje -KunDa Hehe, i just tested both versions and of course they work ;) will get into the tcl version as requested .. -mutante

    Know https://fuckup.homeunix.net/index.php?FWikiChanges? -- gelegentlicher FAZ Heringseinwickler MattisManzel

    Man, yet again..i must tip my hat and give props do a man that kicks so much ass..
    Mr. mutante
    The intermap and the template blank wiki page are excellent.
    -KunDa

    mutante, MoonEdit ist der Kracher! -- MattisManzel

    Hey mutante, meld dich mal bei mir - am besten per Jabber. -- zakx

    Stimmt, mutante erreicht man nur noch über's wiki :) MattisManzel

    hiho, wollt nur mal hallo sagen weil mir langweilig ist =) --LaGGeR 21:55, 16 Apr 2005 (CEST) noch mal ich ;) hab grad deine message gelesen, lustig, ich wollt auch grad ne ramones page anfangen ich kann die ja gleich ein bisschen ausbauen :) danke fürs umräumen bei mir, ich gucks mir sofort an.. danke danke, bis demnächst.. --LaGGeR

    new template

    very snazzy :D easy on the eyes to..i like the richness in color..its nice a subtle as opposed to the old wiki..this one has more colors to discern and i appreciate little things like that.. details..but not too much. simple, practical and comfortable to use. well done mate have you checked it out with difference themes? Kunda


    I like it to but the big white box makes my head hurt... ill have to make my own skin i think =)

     the text at the top logon preffes etc is black on a black back-ground =) DrOwl
    

    Yea, its not finished yet. We should make the default css together and/or each of us makes a css and we integrate them in the "Skin" options to choose from. I put the css i messed with up here. You can play with it (i hope) using your [[User:Fnord/monobook.css]] user style page. Check out my own User:mutante/monobook.css for copy

    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.