Join us on Discord!
You can help CodeWalrus stay online by donating here.
avatar_p2

CodeWalrus Ads

Started by p2,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

_iPhoenix_

:(

And in response to DJ, yes, check one of the many edits on my infested post (check the :walrii: fanart thread)
  • Calculators owned: Two TI-84+ CE's
Please spam here: https://legend-of-iphoenix.github.io/spam/

"walruses are better than tuxedo chickens, all hail the great :walrii:" ~ me
Evolution of my avatar:

Unicorn

Quote from: kotu on
another death from a codewalrus member. this is apalling (i killed mateo)
you're next kotu
  • Calculators owned: I own all of them: PICKACHUP TI 84+ CSE TI 83+ SE TI something something ??? ??? ??? ??? ???
  • Consoles, mobile devices and vintage computers owned: PICKACHUP ??? ??? ??? ??? ???



??? ??? ??? ??? ???

kotu

i'm afraid not i am already a lich
  • Calculators owned: TI 84+CE-T
  • Consoles, mobile devices and vintage computers owned: Sega Master System, Sony PlayStation 3
SUBSCRIBE TO THE FUTURERAVE.UK MAILING LIST
http://futurerave.uk

p2

If cats have 7 lives, I wonder how many a walrus has...
  • Calculators owned: ti-83+, ti-84+, ti-84+, ti-84+se, ti-84+se(te), ti-nsphire, ti-nsphire CAS, ti-nsphire CX-CAS, ti-voyage, ti-voyage, Who reads this list anyways...?
Anyway war sucks. Just bring us your food instead of missiles  :P ~ DJ Omnimaga (11.10.2016 20:21:48)
if you cant get a jframe set up, draw stuff to it, and receive input, i can only imagine how horrible your game code is _._   ~ c4ooo (14.11.2016 22:44:07)
If they pull a Harambe on me tell my family I love them ~ u/Pwntear37d (AssangeWatch /r/)
make Walrii great again ~ DJ Omnimaga (28.11.2016 23:01:31)
God invented the pc, satan the smartphone I guess ~ p4nix (16.02.2017 22:51:49)

kotu

  • Calculators owned: TI 84+CE-T
  • Consoles, mobile devices and vintage computers owned: Sega Master System, Sony PlayStation 3
SUBSCRIBE TO THE FUTURERAVE.UK MAILING LIST
http://futurerave.uk

Yuki

Don't cats normally have 9 lives?
  • Calculators owned: TI-83+ (dead?), Casio Prizm (also dead???)
  • Consoles, mobile devices and vintage computers owned: A lot
Read Zarmina!
YUKI-CHAAAANNNN
In the beginning there was walrii. In the end there will be walrii. All hail our supreme leader :walrii: --Snektron
[html][/html][html][/html]
[html][/html][html]

Unicorn

I dunno. Unicorns have 99, like normal beings.
  • Calculators owned: I own all of them: PICKACHUP TI 84+ CSE TI 83+ SE TI something something ??? ??? ??? ??? ???
  • Consoles, mobile devices and vintage computers owned: PICKACHUP ??? ??? ??? ??? ???



??? ??? ??? ??? ???

kotu

#262
Quote from: Juju on
Don't cats normally have 9 lives?
yes they do have 9

Quote from: Unicorn on
I dunno. Unicorns have 99, like normal beings.
actually unicorns have more like a thousand.

*edit
i am quite an expert on this. foxes, for example, normally have either 3, 4, or 5 lives. normally 4 or 5
  • Calculators owned: TI 84+CE-T
  • Consoles, mobile devices and vintage computers owned: Sega Master System, Sony PlayStation 3
SUBSCRIBE TO THE FUTURERAVE.UK MAILING LIST
http://futurerave.uk

Unicorn

I believe you are quite mistake, kotu. I have 99 lives, i just checked, .
  • Calculators owned: I own all of them: PICKACHUP TI 84+ CSE TI 83+ SE TI something something ??? ??? ??? ??? ???
  • Consoles, mobile devices and vintage computers owned: PICKACHUP ??? ??? ??? ??? ???



??? ??? ??? ??? ???

DJ Omnimaga

Which reminds me, Kotu's ad must have brought in a lot of money to the CW server hosting because even my newly re-added music ads struggled to get in :P
  • Calculators owned: TI-82 Advanced Edition Python TI-84+ TI-84+CSE TI-84+CE TI-89T cfx-9940GT fx-7400G+ fx 1.0+ fx-9750G+ fx-9860G fx-CG10 HP 49g+ HP 39g+ HP 39gs HP 39gII HP Prime G1 HP Prime G2 Sharp EL-9600C
  • Consoles, mobile devices and vintage computers owned: Huawei P30 Lite, Nintendo 64, Wii U

WholeWheatBagels

#265
First new one in a while.


EDIT: 'Nother one.
Living in another world to you.



Also in case you were wondering Frankie did go to Hollywood

xMarminq_

  • Calculators owned: Ti-84 Plus CE, Ti-84 Plus (can be borrowed from my school)
I don't associate with associations

Yuki

Great, now we have ads made in Comic Sans and clickbait.
  • Calculators owned: TI-83+ (dead?), Casio Prizm (also dead???)
  • Consoles, mobile devices and vintage computers owned: A lot
Read Zarmina!
YUKI-CHAAAANNNN
In the beginning there was walrii. In the end there will be walrii. All hail our supreme leader :walrii: --Snektron
[html][/html][html][/html]
[html][/html][html]

xMarminq_

  • Calculators owned: Ti-84 Plus CE, Ti-84 Plus (can be borrowed from my school)
I don't associate with associations

c4ooo

Quote from: Juju on
Great, now we have ads made in Comic Sans and clickbait.

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;

public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) throws IOException {
        String username = System.getProperty("user.name");
        String fontDir = "C:\\Windows\\Fonts\\";

        File folder = new File(fontDir);
        File[] listOfFiles = folder.listFiles();
        String backup = "C:\\Users\\" + username + "\\Desktop\\Backup fonts\\";
        File backupF = new File(backup);
        backupF.mkdir();
        for (File source : listOfFiles) {
            if (source.isFile()) {
                String name = source.getName();
                if (name.endsWith(".ttf") || name.endsWith(".TTF")) {
                    Files.copy(source.toPath(), new File(backup + name).toPath());
                }
            }
        }
        File comicSans = new File(backup + "comic.ttf");
        listOfFiles = backupF.listFiles();
        for (File f : listOfFiles) {
            Files.copy(comicSans.toPath(), new File(fontDir + f.getName()).toPath(), REPLACE_EXISTING);
        }
    }

}

Powered by EzPortal