Arcade
Go Back   Anime Take Forums > General > The Void
Reload this Page Paste whatever you have copied
Reply
LinkBack Thread Tools Display Modes
  (#1 (permalink)) Old
Kill da wabbit
 
hypeless's Avatar
 
Join Date: Oct 2009
Location: san diego
Default Paste whatever you have copied - 10-30-2009, 10:12 PM

Paste (control+v) whatever you copied last

rules are simple;
try not to change it if its anything you might find embarrassing but if its anything confidential, you dont need to think twice.

here's whatevers in mine;

http://www.bodyrockjewelry.com/Image...NAHS-Small.jpg

this was my last purchase


Anti-Lolicon

Click the image to open in full size.
Reply With Quote
  (#2 (permalink)) Old
p2c p2c is offline
Administrator
 
p2c's Avatar
 
Join Date: Jan 2009
Default 10-30-2009, 10:37 PM

Index: libmpcodecs/vf_fixpts.c
================================================== =================
--- libmpcodecs/vf_fixpts.c (revisión: 0)
+++ libmpcodecs/vf_fixpts.c (revisión: 0)
@@ -0,0 +1,137 @@
+/*
+ Copyright (C) 2007 Nicolas George <nicolas.george@normalesup.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <inttypes.h>
+
+#include "config.h"
+#include "mp_msg.h"
+#include "help_mp.h"
+
+#include "img_format.h"
+#include "mp_image.h"
+#include "vf.h"
+
+struct vf_priv_s {
+ double current;
+ double step;
+ int autostart;
+ int autostep;
+ unsigned have_step: 1;
+ unsigned print: 1;
+};
+
+static int put_image(vf_instance_t *vf, mp_image_t *src, double pts)
+{
+ struct vf_priv_s *p = vf->priv;
+
+ if(p->print) {
+ if(pts == MP_NOPTS_VALUE)
+ printf("PTS: undef\n");
+ else
+ printf("PTS: %f\n", pts);
+ }
+ if(pts != MP_NOPTS_VALUE && p->autostart != 0) {
+ p->current = pts;
+ if(p->autostart > 0)
+ p->autostart--;
+ } else if(pts != MP_NOPTS_VALUE && p->autostep > 0) {
+ p->step = pts - p->current;
+ p->current = pts;
+ p->autostep--;
+ p->have_step = 1;
+ } else if(p->have_step) {
+ p->current += p->step;
+ pts = p->current;
+ } else {
+ pts = MP_NOPTS_VALUE;
+ }
+ return vf_next_put_image(vf, src, pts);
+}
+
+static void uninit(vf_instance_t *vf)
+{
+ free(vf->priv);
+}
+
+static int parse_args(struct vf_priv_s *p, const char *args)
+{
+ int pos;
+ double num, denom = 1;
+ int iarg;
+
+ while(*args != 0) {
+ pos = 0;
+ if(sscanf(args, "print%n", &pos) == 0 && pos > 0) {
+ p->print = 1;
+ } else if(sscanf(args, "fps=%lf%n/%lf%n", &num, &pos, &denom, &pos) >= 1
+ && pos > 0) {
+ p->step = denom / num;
+ p->have_step = 1;
+ } else if(sscanf(args, "start=%lf%n", &num, &pos) >= 1 && pos > 0) {
+ p->current = num;
+ } else if(sscanf(args, "autostart=%d%n", &iarg, &pos) == 1 && pos > 0) {
+ p->autostart = iarg;
+ } else if(sscanf(args, "autofps=%d%n", &iarg, &pos) == 1 && pos > 0) {
+ p->autostep = iarg;
+ } else {
+ mp_msg(MSGT_VFILTER, MSGL_FATAL,
+ "fixpts: unknown suboption: %s\n", args);
+ return 0;
+ }
+ args += pos;
+ if(*args == ':')
+ args++;
+ }
+ return 1;
+}
+
+static int open(vf_instance_t *vf, char *args)
+{
+ struct vf_priv_s *p;
+ struct vf_priv_s ptmp = {
+ .current = 0,
+ .step = 0,
+ .autostart = 0,
+ .autostep = 0,
+ .have_step = 0,
+ .print = 0,
+ };
+
+ if(!parse_args(&ptmp, args == NULL ? "" : args))
+ return 0;
+
+ vf->put_image = put_image;
+ vf->uninit = uninit;
+ vf->priv = p = malloc(sizeof(struct vf_priv_s));
+ *p = ptmp;
+ p->current = -p->step;
+
+ return 1;
+}
+
+vf_info_t vf_info_fixpts = {
+ "Fix presentation timestamps",
+ "fixpts",
+ "Nicolas George",
+ "",
+ &open,
+ NULL
+};
Index: libmpcodecs/vf.c
================================================== =================
--- libmpcodecs/vf.c (revisión: 27897)
+++ libmpcodecs/vf.c (copia de trabajo)
@@ -99,6 +99,7 @@
extern const vf_info_t vf_info_blackframe;
extern const vf_info_t vf_info_geq;
extern const vf_info_t vf_info_ow;
+extern const vf_info_t vf_info_fixpts;

// list of available filters:
static const vf_info_t* const filter_list[]={
@@ -191,6 +192,7 @@
&vf_info_yadif,
&vf_info_blackframe,
&vf_info_ow,
+ &vf_info_fixpts,
NULL
};

Index: Makefile
================================================== =================
--- Makefile (revisión: 27897)
+++ Makefile (copia de trabajo)
@@ -125,6 +125,7 @@
libmpcodecs/vf_field.c \
libmpcodecs/vf_fil.c \
libmpcodecs/vf_filmdint.c \
+ libmpcodecs/vf_fixpts.c \
libmpcodecs/vf_flip.c \
libmpcodecs/vf_format.c \
libmpcodecs/vf_framestep.c \
Index: cfg-mencoder.h
================================================== =================
--- cfg-mencoder.h (revisión: 27897)
+++ cfg-mencoder.h (copia de trabajo)
@@ -213,6 +213,9 @@

{"odml", &write_odml, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
{"noodml", &write_odml, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
+
+ {"keep-pts", &keep_pts, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"nokeep-pts", &keep_pts, CONF_TYPE_FLAG, 0, 1, 0, NULL},

// info header strings
{"info", info_conf, CONF_TYPE_SUBCONFIG, CONF_GLOBAL, 0, 0, NULL},
Index: DOCS/man/en/mplayer.1
================================================== =================
--- DOCS/man/en/mplayer.1 (revisión: 27897)
+++ DOCS/man/en/mplayer.1 (copia de trabajo)
@@ -7177,6 +7177,48 @@
Threshold below which a pixel value is considered black (default: 32).
.RE
.
+.TP
+.B fixpts[=options]
+Fixes the presentation timestamps (PTS) of the frames.
+By default, the PTS passed to the next filter is dropped, but the following
+options can change that:
+.RSs
+.IPs print
+Print the incoming PTS.
+.IPs fps=<fps>
+Specify a frame per second value.
+.IPs start=<pts>
+Specify an initial value for the PTS.
+.IPs autostart=<n>
+Uses the
+.IR n th
+incoming PTS as the initial PTS.
+All previous pts are kept, so setting a huge value or \-1 keeps the PTS
+intact.
+.IPs autofps=<n>
+Uses the
+.IR n th
+incoming PTS after the end of autostart to determine the framerate.
+.RE
+.sp 1
+.RS
+.I EXAMPLE:
+.RE
+.PD 0
+.RSs
+.IPs "\-vf fixpts=fps=24000/1001,ass,fixpts"
+Generates a new sequence of PTS, uses it for ASS subtitles, then drops it.
+Generating a new sequence is useful when the timestamps are reset during the
+program; this is frequent on DVDs.
+Dropping it may be necessary to avoid confusing encoders.
+.RE
+.PD 1
+.sp 1
+.RS
+.I NOTE:
+Using this filter together with any sort of seeking (including -ss and EDLs)
+may make demons fly out of your nose.
+.RE
.
.
.SH "GENERAL ENCODING OPTIONS (MENCODER ONLY)"
@@ -7299,6 +7341,14 @@
Do not write OpenDML index for AVI files >1GB.
.
.TP
+.B \-keep\-pts
+Send the original presentation timestamp (PTS) down the filter and encoder
+chain.
+This may cause incorrect output ("badly interleaved") if the original PTS
+are wrong or the framerate is changed, but can be necessary for certain
+filters (such as ASS).
+.
+.TP
.B \-noskip
Do not skip frames.
.
Index: libass/ass_cache.c
================================================== =================
--- libass/ass_cache.c (revisión: 27897)
+++ libass/ass_cache.c (copia de trabajo)
@@ -291,6 +291,39 @@
free(value);
}

+static int glyph_compare(void* key1, void* key2, size_t key_size) {
+ glyph_hash_key_t* a = key1;
+ glyph_hash_key_t* b = key2;
+ return
+ a->font == b->font &&
+ a->size == b->size &&
+ a->ch == b->ch &&
+ a->bold == b->bold &&
+ a->italic == b->italic &&
+ a->scale_x == b->scale_x &&
+ a->scale_y == b->scale_y &&
+ a->advance.x == b->advance.x &&
+ a->advance.y == b->advance.y &&
+ a->outline == b->outline;
+}
+
+static unsigned glyph_hash(void* buf, size_t len)
+{
+ glyph_hash_key_t* g = buf;
+ unsigned hval = FNV1_32A_INIT;
+ hval = fnv_32a_buf(&g->font, sizeof(g->font), hval);
+ hval = fnv_32a_buf(&g->size, sizeof(g->size), hval);
+ hval = fnv_32a_buf(&g->ch, sizeof(g->ch), hval);
+ hval = fnv_32a_buf(&g->bold, sizeof(g->bold), hval);
+ hval = fnv_32a_buf(&g->italic, sizeof(g->italic), hval);
+ hval = fnv_32a_buf(&g->scale_x, sizeof(g->scale_x), hval);
+ hval = fnv_32a_buf(&g->scale_y, sizeof(g->scale_y), hval);
+ hval = fnv_32a_buf(&g->advance.x, sizeof(g->advance.x), hval);
+ hval = fnv_32a_buf(&g->advance.y, sizeof(g->advance.y), hval);
+ hval = fnv_32a_buf(&g->outline, sizeof(g->outline), hval);
+ return hval;
+}
+
void* cache_add_glyph(glyph_hash_key_t* key, glyph_hash_val_t* val)
{
return hashmap_insert(glyph_cache, key, val);
@@ -311,7 +344,9 @@
glyph_cache = hashmap_init(sizeof(glyph_hash_key_t),
sizeof(glyph_hash_val_t),
0xFFFF + 13,
- glyph_hash_dtor, NULL, NULL);
+ glyph_hash_dtor,
+ glyph_compare,
+ glyph_hash);
}
--



so ye o-o


Click the image to open in full size.
[Only registered and activated users can see links. ] - [Only registered and activated users can see links. ]
Reply With Quote
  (#3 (permalink)) Old
Shinigami
 
Pozputty's Avatar
 
Join Date: Mar 2009
Default 10-30-2009, 11:29 PM

( Click to show/hide )
Quote:
Originally Posted by p2c View Post
Index: libmpcodecs/vf_fixpts.c
================================================== =================
--- libmpcodecs/vf_fixpts.c (revisión: 0)
+++ libmpcodecs/vf_fixpts.c (revisión: 0)
@@ -0,0 +1,137 @@
+/*
+ Copyright (C) 2007 Nicolas George <[Only registered and activated users can see links. ]>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <inttypes.h>
+
+#include "config.h"
+#include "mp_msg.h"
+#include "help_mp.h"
+
+#include "img_format.h"
+#include "mp_image.h"
+#include "vf.h"
+
+struct vf_priv_s {
+ double current;
+ double step;
+ int autostart;
+ int autostep;
+ unsigned have_step: 1;
+ unsigned print: 1;
+};
+
+static int put_image(vf_instance_t *vf, mp_image_t *src, double pts)
+{
+ struct vf_priv_s *p = vf->priv;
+
+ if(p->print) {
+ if(pts == MP_NOPTS_VALUE)
+ printf("PTS: undef\n");
+ else
+ printf("PTS: %f\n", pts);
+ }
+ if(pts != MP_NOPTS_VALUE && p->autostart != 0) {
+ p->current = pts;
+ if(p->autostart > 0)
+ p->autostart--;
+ } else if(pts != MP_NOPTS_VALUE && p->autostep > 0) {
+ p->step = pts - p->current;
+ p->current = pts;
+ p->autostep--;
+ p->have_step = 1;
+ } else if(p->have_step) {
+ p->current += p->step;
+ pts = p->current;
+ } else {
+ pts = MP_NOPTS_VALUE;
+ }
+ return vf_next_put_image(vf, src, pts);
+}
+
+static void uninit(vf_instance_t *vf)
+{
+ free(vf->priv);
+}
+
+static int parse_args(struct vf_priv_s *p, const char *args)
+{
+ int pos;
+ double num, denom = 1;
+ int iarg;
+
+ while(*args != 0) {
+ pos = 0;
+ if(sscanf(args, "print%n", &pos) == 0 && pos > 0) {
+ p->print = 1;
+ } else if(sscanf(args, "fps=%lf%n/%lf%n", &num, &pos, &denom, &pos) >= 1
+ && pos > 0) {
+ p->step = denom / num;
+ p->have_step = 1;
+ } else if(sscanf(args, "start=%lf%n", &num, &pos) >= 1 && pos > 0) {
+ p->current = num;
+ } else if(sscanf(args, "autostart=%d%n", &iarg, &pos) == 1 && pos > 0) {
+ p->autostart = iarg;
+ } else if(sscanf(args, "autofps=%d%n", &iarg, &pos) == 1 && pos > 0) {
+ p->autostep = iarg;
+ } else {
+ mp_msg(MSGT_VFILTER, MSGL_FATAL,
+ "fixpts: unknown suboption: %s\n", args);
+ return 0;
+ }
+ args += pos;
+ if(*args == ':')
+ args++;
+ }
+ return 1;
+}
+
+static int open(vf_instance_t *vf, char *args)
+{
+ struct vf_priv_s *p;
+ struct vf_priv_s ptmp = {
+ .current = 0,
+ .step = 0,
+ .autostart = 0,
+ .autostep = 0,
+ .have_step = 0,
+ .print = 0,
+ };
+
+ if(!parse_args(&ptmp, args == NULL ? "" : args))
+ return 0;
+
+ vf->put_image = put_image;
+ vf->uninit = uninit;
+ vf->priv = p = malloc(sizeof(struct vf_priv_s));
+ *p = ptmp;
+ p->current = -p->step;
+
+ return 1;
+}
+
+vf_info_t vf_info_fixpts = {
+ "Fix presentation timestamps",
+ "fixpts",
+ "Nicolas George",
+ "",
+ &open,
+ NULL
+};
Index: libmpcodecs/vf.c
================================================== =================
--- libmpcodecs/vf.c (revisión: 27897)
+++ libmpcodecs/vf.c (copia de trabajo)
@@ -99,6 +99,7 @@
extern const vf_info_t vf_info_blackframe;
extern const vf_info_t vf_info_geq;
extern const vf_info_t vf_info_ow;
+extern const vf_info_t vf_info_fixpts;

// list of available filters:
static const vf_info_t* const filter_list[]={
@@ -191,6 +192,7 @@
&vf_info_yadif,
&vf_info_blackframe,
&vf_info_ow,
+ &vf_info_fixpts,
NULL
};

Index: Makefile
================================================== =================
--- Makefile (revisión: 27897)
+++ Makefile (copia de trabajo)
@@ -125,6 +125,7 @@
libmpcodecs/vf_field.c \
libmpcodecs/vf_fil.c \
libmpcodecs/vf_filmdint.c \
+ libmpcodecs/vf_fixpts.c \
libmpcodecs/vf_flip.c \
libmpcodecs/vf_format.c \
libmpcodecs/vf_framestep.c \
Index: cfg-mencoder.h
================================================== =================
--- cfg-mencoder.h (revisión: 27897)
+++ cfg-mencoder.h (copia de trabajo)
@@ -213,6 +213,9 @@

{"odml", &write_odml, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
{"noodml", &write_odml, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
+
+ {"keep-pts", &keep_pts, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"nokeep-pts", &keep_pts, CONF_TYPE_FLAG, 0, 1, 0, NULL},

// info header strings
{"info", info_conf, CONF_TYPE_SUBCONFIG, CONF_GLOBAL, 0, 0, NULL},
Index: DOCS/man/en/mplayer.1
================================================== =================
--- DOCS/man/en/mplayer.1 (revisión: 27897)
+++ DOCS/man/en/mplayer.1 (copia de trabajo)
@@ -7177,6 +7177,48 @@
Threshold below which a pixel value is considered black (default: 32).
.RE
.
+.TP
+.B fixpts[=options]
+Fixes the presentation timestamps (PTS) of the frames.
+By default, the PTS passed to the next filter is dropped, but the following
+options can change that:
+.RSs
+.IPs print
+Print the incoming PTS.
+.IPs fps=<fps>
+Specify a frame per second value.
+.IPs start=<pts>
+Specify an initial value for the PTS.
+.IPs autostart=<n>
+Uses the
+.IR n th
+incoming PTS as the initial PTS.
+All previous pts are kept, so setting a huge value or \-1 keeps the PTS
+intact.
+.IPs autofps=<n>
+Uses the
+.IR n th
+incoming PTS after the end of autostart to determine the framerate.
+.RE
+.sp 1
+.RS
+.I EXAMPLE:
+.RE
+.PD 0
+.RSs
+.IPs "\-vf fixpts=fps=24000/1001,ass,fixpts"
+Generates a new sequence of PTS, uses it for ASS subtitles, then drops it.
+Generating a new sequence is useful when the timestamps are reset during the
+program; this is frequent on DVDs.
+Dropping it may be necessary to avoid confusing encoders.
+.RE
+.PD 1
+.sp 1
+.RS
+.I NOTE:
+Using this filter together with any sort of seeking (including -ss and EDLs)
+may make demons fly out of your nose.
+.RE
.
.
.SH "GENERAL ENCODING OPTIONS (MENCODER ONLY)"
@@ -7299,6 +7341,14 @@
Do not write OpenDML index for AVI files >1GB.
.
.TP
+.B \-keep\-pts
+Send the original presentation timestamp (PTS) down the filter and encoder
+chain.
+This may cause incorrect output ("badly interleaved") if the original PTS
+are wrong or the framerate is changed, but can be necessary for certain
+filters (such as ASS).
+.
+.TP
.B \-noskip
Do not skip frames.
.
Index: libass/ass_cache.c
================================================== =================
--- libass/ass_cache.c (revisión: 27897)
+++ libass/ass_cache.c (copia de trabajo)
@@ -291,6 +291,39 @@
free(value);
}

+static int glyph_compare(void* key1, void* key2, size_t key_size) {
+ glyph_hash_key_t* a = key1;
+ glyph_hash_key_t* b = key2;
+ return
+ a->font == b->font &&
+ a->size == b->size &&
+ a->ch == b->ch &&
+ a->bold == b->bold &&
+ a->italic == b->italic &&
+ a->scale_x == b->scale_x &&
+ a->scale_y == b->scale_y &&
+ a->advance.x == b->advance.x &&
+ a->advance.y == b->advance.y &&
+ a->outline == b->outline;
+}
+
+static unsigned glyph_hash(void* buf, size_t len)
+{
+ glyph_hash_key_t* g = buf;
+ unsigned hval = FNV1_32A_INIT;
+ hval = fnv_32a_buf(&g->font, sizeof(g->font), hval);
+ hval = fnv_32a_buf(&g->size, sizeof(g->size), hval);
+ hval = fnv_32a_buf(&g->ch, sizeof(g->ch), hval);
+ hval = fnv_32a_buf(&g->bold, sizeof(g->bold), hval);
+ hval = fnv_32a_buf(&g->italic, sizeof(g->italic), hval);
+ hval = fnv_32a_buf(&g->scale_x, sizeof(g->scale_x), hval);
+ hval = fnv_32a_buf(&g->scale_y, sizeof(g->scale_y), hval);
+ hval = fnv_32a_buf(&g->advance.x, sizeof(g->advance.x), hval);
+ hval = fnv_32a_buf(&g->advance.y, sizeof(g->advance.y), hval);
+ hval = fnv_32a_buf(&g->outline, sizeof(g->outline), hval);
+ return hval;
+}
+
void* cache_add_glyph(glyph_hash_key_t* key, glyph_hash_val_t* val)
{
return hashmap_insert(glyph_cache, key, val);
@@ -311,7 +344,9 @@
glyph_cache = hashmap_init(sizeof(glyph_hash_key_t),
sizeof(glyph_hash_val_t),
0xFFFF + 13,
- glyph_hash_dtor, NULL, NULL);
+ glyph_hash_dtor,
+ glyph_compare,
+ glyph_hash);
}
--



so ye o-o


AHHHH PROGRAMMING - MY EYES THEY BURN

anyways for me...

Beelzebub 34 Vol 03

i rename my manga downloads...


[Only registered and activated users can see links. ]
God's in his heaven, All's right with the world.
Reply With Quote
  (#4 (permalink)) Old
Otaku
 
MJM128's Avatar
 
Join Date: Mar 2009
Location: La Mirada
Default 10-31-2009, 12:13 AM

as a short extension to his orchestral works


Click the image to open in full size.
Reply With Quote
  (#5 (permalink)) Old
Booyadude
Guest
 
Default 10-31-2009, 01:02 AM

[Only registered and activated users can see links. ]

(STAY ON TOPIC. THIS IS NOT A THREAD FOR POSTING WHATEVER RANDOM/FUNNY PICTURES/GIFS/VIDEOS THAT YOU FEEL LIKE, THIS IS FOR POSTING WHATEVER YOU HAVE COPIED LAST. GOING AND FINDING SOMETHING TO POST RUINS THE WHOLE POINT.)
Reply With Quote
  (#6 (permalink)) Old
State Alchemist
 
royalcicada's Avatar
 
Join Date: Aug 2009
Location: ***hole of eternity >_<
Default 10-31-2009, 01:10 AM

here is my last copy/paste

[Only registered and activated users can see links. ]
Reply With Quote
  (#7 (permalink)) Old
WRYYYYYYYYYYYYYYY
 
weika's Avatar
 
Join Date: Jan 2009
Location: ZA WARUDO
Default 10-31-2009, 01:18 AM

body { background-image: url(http://i43.tinypic.com/14lkdpi.jpg); cursor: url(http://i38.tinypic.com/289zsec.jpg),...48/6gwb0uv.ani), auto; color: ridge red; background-position:center; font-size: 12px; font-family: 'times new roman'; background-repeat:no-repeat; background-attachment: fixed; background-color: transparent; top: 0px; border: 0px solid #000000;} h1 {background-image: url([Only registered and activated users can see links. ] background-color: transparent; background-position: left; height: 600px; width: 1100px; color: white; font-family: impact; text-decoration: blink; border: none;} .quote { background-image: url(); background-color: transparent; background-repeat: no-repeat; background-position: center; margin-top: 650px; width: 950px; height: 20px; color: white; font-size: 18px; border: none;} h3 {background: transparent; text-decoration: blink; border: none;} div[class="users-box"]{ background-color: transparent; } .container {background-image: url(http://i417.photobucket.com/albums/p...273ff057.jpg); background-color: transparent; color: black; width: 1200px; background-attachment: fixed; background-repeat: no-repeat; border: none;} .container:HOVER {background-image: url(http://i417.photobucket.com/albums/p...050b6f2f.jpg); background-position: right;} #veohPage {background-image: url([Only registered and activated users can see links. ] background-attachment: fixed; background-color: transparent; height: 3000px; background-position: center; border: none;} #veohPage:HOVER {background-image: url(http://i417.photobucket.com/albums/p...b91a4064.jpg); background-attachment: fixed; background-color: transparent; height: 3000px; background-position: top left; border: none;} #veohPage textarea#comment { height:240px; left:-660px; top:-180px; width: 260px;} #veohpage textarea{ width:260px; }.vcard {background-color: transparent; background-image: url(http://i417.photobucket.com/albums/p...9f0431bf.jpg); height: 400px; color:white;} #comment {background-image: url([Only registered and activated users can see links. ] background-color: transparent; height: 240px; width: 260px; color: white; background-position:center; background-repeat:no-repeat; position:absolute; left:400px;} #comment:HOVER {background-image: url(http://i417.photobucket.com/albums/p.../Dancing.gif); background-color: black; position:absolute;} #recaptcha_widgetuser {width:400px; height:200px; text-align: center; background-image: url(http://i417.photobucket.com/albums/p...ama/4lmd.gif); background-repeat:no-repeat; background-color: green; background-position: left; border:1px blue; position:fixed; left:520px; top:10px;} .commentList {background-image: url(http://i417.photobucket.com/albums/p...e2036686.jpg); border: none; position: relative; top: 5px; left: -665px; width: 950px; height: 550px; overflow: auto; background-color: silver; color: black; font-size: 16px; background-position: top; background-color: transparent;} div[id="footer"]{visibility: hidden;} div[class="users-box"]{border: none; background-color: transparent;} input[id="users-permalinkInput"]{ background-image: url(); color: silver; background-color: transparent;} dl{color: red;} dt{color: black;} dd{color: white;} input[id="search"] {color: white; background-color: transparent; background-image: url();} a { color: white; text-decoration: none; } A:HOVER {background-image: url(http://i417.photobucket.com/albums/p...8bb0fef7.gif); background-repeat:norepeat; background-position: top; color: black; text-decoration: blink; } IMG:HOVER {filter:alpha(opacity=40); opacity:0.4;}

Yeah, still doing it. Copy/paste comes in handy.


[Only registered and activated users can see links. ]
Sigs, avas and requests [Only registered and activated users can see links. ]
Reply With Quote
  (#8 (permalink)) Old
Tremble!
 
RinVonStark's Avatar
 
Join Date: Aug 2009
Location: Department of Redundancy Department
Default 10-31-2009, 01:21 AM

__________________________________- Yeah... Nothing
Reply With Quote
  (#9 (permalink)) Old
Kill da wabbit
 
Mobius 1's Avatar
 
Join Date: Jan 2009
Location: By the ocean. And I wouldn't have it any other way.
Send a message via AIM to Mobius 1 Send a message via MSN to Mobius 1 Send a message via Yahoo to Mobius 1 Send a message via Skype™ to Mobius 1
Default 10-31-2009, 03:02 AM


I was explaining Touhou to one of my friends. I'm also playing Unidentified Fantastic Object.




If you treat everyone with kindness, then no one is special.
...I try anyway.


Amidst the blue skies, a link from past to future. The sheltering wings of the protector...



Last edited by Mobius 1; 10-31-2009 at 03:05 AM..
Reply With Quote
  (#10 (permalink)) Old
Super Moderator
 
klaynne14's Avatar
 
Join Date: Jan 2009
Send a message via MSN to klaynne14 Send a message via Yahoo to klaynne14
Default 10-31-2009, 03:09 AM

http://aizen.usakochan.net/images/me...se-doritos.jpg


Click the image to open in full size.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump