Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - XVicarious

Pages: 1 ... 5 6 [7] 8 9 ... 33
91
Miscellaneous / Re: Do u think this is fair?
« on: October 23, 2011, 09:15:55 pm »
I don't know.  I'm pretty sure if you go to a public school, during the school day (from the time HR starts, to the time you leave) the school is considered your guardian (to a point).  So they can take it away, but they have no right to keep it for longer than the school day.

92
Computer Projects and Ideas / Re: IrmageBoard -- X-Chat Python Script
« on: October 21, 2011, 09:03:33 pm »
That is a good idea... I'll look into it.  It will require a configuration file... I'll just use YAML again since INI was giving me problems for XTranzlator

93
Computer Projects and Ideas / Re: IrmageBoard -- X-Chat Python Script
« on: October 20, 2011, 11:49:09 pm »
But if people want to use it here, please give me some ideas for filters here :)

94
Computer Projects and Ideas / Re: IrmageBoard -- X-Chat Python Script
« on: October 20, 2011, 11:42:59 pm »
I know its allowed, but just the types of words I used I have never heard here, so yeah.

95
Computer Projects and Ideas / Re: IrmageBoard -- X-Chat Python Script
« on: October 20, 2011, 11:20:29 pm »
Taht is true.  Oh and a note, most of the filters are inappropriate for Omnimaga since it was made for another server where the rules are more lax.  If you guys want, I'll host a special version of the filter for Omnimaga use.  But you have to come up with the filter ideas.
IE, lobster filters to Netham45

96
Computer Projects and Ideas / Re: IrmageBoard -- X-Chat Python Script
« on: October 20, 2011, 10:55:06 pm »
v0.5.5 released.  Fixed the bug and added /facepalm <facepalm at this>

97
Miscellaneous / Re: Any speedcubers here? ;D
« on: October 20, 2011, 03:10:57 pm »

98
Introduce Yourself! / Re: Greetings Calc-lings!
« on: October 19, 2011, 10:29:47 pm »
Just one topic.  The Axe Releases topic.  But thankfully we were able to restore it :)

99
Miscellaneous / Re: Any speedcubers here? ;D
« on: October 19, 2011, 09:36:19 pm »
I used to be... I stopped a few years ago.  Best time was like 39 seconds.

edit: for all of you who used petroleum jelly (or the brand Vaseline), that is actually really bad for the plastic.

100
Computer Projects and Ideas / IrmageBoard -- X-Chat Python Script
« on: October 19, 2011, 08:34:53 pm »
Hey all, I have been working on a new script called IrmageBoard and it is for X-Chat!  It is written in Python.  Here are the features:

-- >greentext
-- Filters (if you don't know what they are,  it changes words like "moot" into "missingno" , and "missingno" is colored)
-- /facepalm command (*XVicarious facepalms at Juju :P)
-- Update the filter list (stored on a webserver) without reloading the plugin with "/irmage update filter"
-- See the update log of the script with "/irmage log"

Upcoming Features:
-- Update the script with "/irmage update script"
-- Add configurations for servers and channels!

Bugs:
-- NONE! (I hope :D)

Download: http://xvicario.us/getfile.php?f=IrmageBoard.py (v0.5.0)

Development Version:
Spoiler For CODE:
Code: [Select]
NO CURRENT DEV VERSION!

You need to have PyYaml for this plugin installed!

Here is an example of a filters.yml (the first word is the word to be replaced, the second is the word to replace with)
Code: [Select]
lol : Laughing Out Loud
jkag : Pure Awesomeness :D

The readme for the next version (v0.7.0)
Spoiler For Spoiler:
Quote
------------------
IRMAGEBOARD v0.7.0
      README
------------------

IrmageBoard adds some features you see on imageboards on the internet like that of 4chan.  These features are completely useless, and just for fun! This document gives you an overview of the syntax for the plugin and its configuration files.

------------
REQUIREMENTS
------------
X-Chat with the Python Plugin
Python 2.7
PyYaml

--------
COMMANDS
--------
Note the command is in the brackets

[irmage] -- See the introduction text
[irmage log] -- See the changelog for the script
[irmage about] -- See an about screen
[irmage update <filter/script>] -- Updates the filters or script
[irmage add server] -- Adds the server you are currently on (where you executed the command) to the configuration file
[irmage add channel] -- Adds the current channel you are on to the server you are on to the configuration file
[irmage set filter <0/1>] -- Sets the filter on or off for the channel you are on
[irmage set filter-url <url>] -- Sets the location of the filter file to the configuration file of the channel you are currently on
[irmage set greentext <0/1>] -- Sets greentext on or off for the channel you are currently on


-------------
FILTER FORMAT
-------------
The filters use YAML for replacing certain words.

<word-to-replace> : <word to replace with>

Super easy to set new filters.  Just save it as a *.yml file and upload it somewhere!


--------------------
CONFIGURATION FORMAT
--------------------
The configuration uses YAML for adding servers and channels and options as well. Please note that the script can automagically add new servers and channels to this list from a simple command!

irc.ircserver.com:
    MyChannel:
        greentext: <0/1>
        filters: <0/1>
        filter-url: <url>

A very simple configuration format!


-----
LEGAL
-----
Use, improve, and abuse.  Please if you do improve it give credit to: XVicarious (Brian Maurer, [email protected]).

Also, I need suggestions on features to add to my plugin!  I know it needs more features!

101
TI Z80 / Re: Program concatenation
« on: October 19, 2011, 07:59:29 pm »
Wow.  This is nice :D Very helpful.

102
TI Z80 / Re: MUSEINC: Make musicmaking in Axe easier!
« on: October 19, 2011, 02:56:07 pm »
Wow. This is amazing. Just a question, and I'm very musically ignorant (at least how to read and write it), what about whole and half notes and rests?

103
Computer Programming / Re: urllib is not being nice :(
« on: October 16, 2011, 11:02:15 pm »
Actually that isn't true about installing an obscure version.  I have 2.7.  IDK if its Active Python or just vanilla but they operate almost the same.
The problem with your code is that filters() will be optional in the future (the function to change this is commented out in hte full script) so disabling filters() would disable the whole thing.  I can just use another return.

104
Computer Programming / Re: urllib is not being nice :(
« on: October 16, 2011, 10:46:49 pm »
Its kinda funny because just switching them fixed it.  Both things work now.  This is my third script for XChat.  Its really fun doing this lol.

105
Computer Programming / Re: urllib is not being nice :(
« on: October 16, 2011, 09:02:54 pm »
That is how you are supposed to intercept outgoing messages...  See the filters() function.  that does ALMOST the same thing.

edit: Somehow it was in my last two lines.  I switched the order of them (so the filter got hooked first, then the greenText) and it works... Idk why...

Pages: 1 ... 5 6 [7] 8 9 ... 33