Nightmare Fuel

A place where you can chat about anything that isn't to do with games!
User avatar
null1024
Posts: 3810
Joined: Sat Dec 15, 2007 8:52 pm
Location: ʍoquıɐɹ ǝɥʇ ɹǝʌo 'ǝɹǝɥʍǝɯos
Contact:

Re: Nightmare Fuel

Post by null1024 »

Image
@MOSQUITO FIGHTER
You did that intentionally, didn't you. :shock:

Individually, the two pictures aren't that freaky. At least to me.

but combined, they create an unholy abomination :lol:
Come check out my website, I guess. Random stuff I've worked on over the last two decades.
User avatar
SuperSoaker360
Posts: 745
Joined: Thu Jan 05, 2012 2:19 am

Re: Nightmare Fuel

Post by SuperSoaker360 »

MOSQUITO FIGHTER wrote:[images of scary fish]
Thanks for evoking my fear of aquatic monsters. Now I remember why I also have a bit of a fear of open water...
1CC List | YouTube Channel | Twitter | RebKMG/KMG
RegalSin wrote:Wait a minute, everything else is better then an aerodactyle, with a man face on it.
User avatar
MOSQUITO FIGHTER
Posts: 1720
Joined: Sat Aug 13, 2005 7:32 pm

Re: Nightmare Fuel

Post by MOSQUITO FIGHTER »

Ha! I didn't notice that about the fish head. He's not looking so good.

Sedlec Ossuary

Image

Image
User avatar
RNGmaster
Posts: 2388
Joined: Mon Aug 02, 2010 9:08 pm
Location: Seattle, WA

Re: Nightmare Fuel

Post by RNGmaster »

Please change the title so I don't have to worry that your vocabulary and capacity for original thought has been taken over by tee vee tropes dot oh arr gee
User avatar
Ruldra
Posts: 4222
Joined: Wed Mar 05, 2008 1:27 am
Location: Brazil

Re: Nightmare Fuel

Post by Ruldra »

Image
[Youtube | 1cc list | Steam]
mastermx wrote:
xorthen wrote:You guys are some hardcore MOFOs and masochists.
This is the biggest compliment you can give to people on this forum.
User avatar
Gozer
Posts: 245
Joined: Wed Jan 26, 2005 2:52 pm
Location: West Chester, Pennsylvania

Re: Nightmare Fuel

Post by Gozer »

Xtro! Just saw that on redlettermedia.com. I'll have to check out that movie if I come across it.



Image
User avatar
MOSQUITO FIGHTER
Posts: 1720
Joined: Sat Aug 13, 2005 7:32 pm

Re: Nightmare Fuel

Post by MOSQUITO FIGHTER »

User avatar
Ruldra
Posts: 4222
Joined: Wed Mar 05, 2008 1:27 am
Location: Brazil

Re: Nightmare Fuel

Post by Ruldra »

Pingu's The Thing

Someone else added the stupid subtitles so just ignore them.
[Youtube | 1cc list | Steam]
mastermx wrote:
xorthen wrote:You guys are some hardcore MOFOs and masochists.
This is the biggest compliment you can give to people on this forum.
User avatar
Lord Satori
Posts: 2061
Joined: Thu Jul 26, 2012 5:39 pm

Re: Nightmare Fuel

Post by Lord Satori »

Gotta love that church of human remains. one of my favorite places of a dark nature.
Ruldra wrote:Image
Whats so scary about that? It's so polite, stepping out of the way and all. :lol:

It's funny, I was think about drawings and stuff when I made this thread, I never expected results like these.

some of the things people draw...
Image

I only wish I had great artistic talent, I have some of the most disturbing abominations locked inside my head, ready to unleash their nightmarishness into the world.

edit: huh... I never noticed it moved...
BryanM wrote:You're trapped in a haunted house. There's a ghost. It wants to eat your friends and have sex with your cat. When forced to decide between the lives of your friends and the chastity of your kitty, you choose the cat.
User avatar
shmuppyLove
Posts: 3708
Joined: Thu Apr 07, 2011 1:44 pm
Location: Toronto

Re: Nightmare Fuel

Post by shmuppyLove »

Y HALO THAR
Image
User avatar
MOSQUITO FIGHTER
Posts: 1720
Joined: Sat Aug 13, 2005 7:32 pm

Re: Nightmare Fuel

Post by MOSQUITO FIGHTER »

Very upsetting footage of dog head transplants. Gruesome, but it paved the way for organ transplants.

Demikhov
Russian Dog Experiment - Living without a body!
User avatar
trap15
Posts: 7835
Joined: Mon Aug 31, 2009 4:13 am
Location: 東京都杉並区
Contact:

Re: Nightmare Fuel

Post by trap15 »

Code: Select all

#!/usr/bin/env ruby1.9.1
# Copyright (C) 2013 Alex Marshall "trap15" <trap15@raidenii.net>

require_relative 'x86.rb'

def m86k_get_regs()
  return x86_get_regs()
end

def m86k_convert_insn(insn, op)
  x86_convert_insn(insn, op)
end

OPTYPE_NONE    = 0
OPTYPE_NUM     = 1
OPTYPE_REG     = 2
OPTYPE_DISP    = 3
OPTYPE_PHRASE  = 4
OPTYPE_POSTINC = 5
OPTYPE_POSTDEC = 6
OPTYPE_PREINC  = 7
OPTYPE_PREDEC  = 8
OPTYPE_ADDR    = 9
OPTYPE_UNK     = -1

class Operand
  attr_accessor :type, :val, :reg, :reg2, :addr
  def initialize
    @type = OPTYPE_NONE
    @val = ""
    @reg = ""
    @reg2 = ""
  end
end

def structifyOperand(op)
  oper = Operand.new
  if /^#.+/.match(op)
    oper.type = OPTYPE_NUM
    /^#(?<val>.+)$/ =~ op
    oper.val = val
  elsif /^\([a-zA-Z0-9]+\)\+$/.match(op)
    oper.type = OPTYPE_POSTINC
    /^\((?<reg>[a-zA-Z0-9]+)\)\+$/ =~ op
    oper.reg = reg
  elsif /^\([a-zA-Z0-9]+\)\-$/.match(op)
    oper.type = OPTYPE_POSTDEC
    /^\((?<reg>[a-zA-Z0-9]+)\)\-$/ =~ op
    oper.reg = reg
  elsif /^\+\([a-zA-Z0-9]+\)$/.match(op)
    oper.type = OPTYPE_PREINC
    /^\+\((?<reg>[a-zA-Z0-9]+)\)$/ =~ op
    oper.reg = reg
  elsif /^\-\([a-zA-Z0-9]+\)$/.match(op)
    oper.type = OPTYPE_PREDEC
    /^\-\((?<reg>[a-zA-Z0-9]+)\)$/ =~ op
    oper.reg = reg
  elsif /^.*\([a-zA-Z0-9]+,\s*[a-zA-Z0-9]+\)$/.match(op)
    oper.type = OPTYPE_DISP
    /^(?<num>.*)\((?<reg>[a-zA-Z0-9]+),\s*(?<reg2>[a-zA-Z0-9]+)\)$/ =~ op
    oper.val = num
    oper.reg = reg
    oper.reg2 = reg2
  elsif /^\([a-zA-Z0-9]+,\s*[a-zA-Z0-9]+\)$/.match(op)
    oper.type = OPTYPE_PHRASE
    /^\((?<reg>[a-zA-Z0-9]+),\s*(?<reg2>[a-zA-Z0-9]+)\)$/ =~ op
    oper.val = "0"
    oper.reg = reg
    oper.reg2 = reg2
  elsif /^.*\(.+\)$/.match(op)
    oper.type = OPTYPE_DISP
    /^(?<num>.*)\((?<val>.+)\)$/ =~ op
    if num == "" and m86k_get_regs().rindex(val) == nil
      oper.type = OPTYPE_ADDR
      oper.val = val
    elsif num == ""
      oper.val = "0"
      oper.reg = val
    else
      oper.val = num
      oper.reg = val
    end
  else
    if m86k_get_regs().rindex(op) != nil
      oper.type = OPTYPE_REG
      oper.reg = op
    else
      oper.type = OPTYPE_UNK
      oper.val = op
    end
  end
  return oper
end

def rewriteInsn(insn, ops)
# Default width is word
  if insn[-2] != '.'
    insn += ".W"
  end

  puts insn
  for i in ops
    puts i
  end

  opers = Array.new
  for i in ops
    opers.push structifyOperand(i)
  end

  line = m86k_convert_insn(insn, opers)
  return line
end

def parseLine(line)
  /^(?<pfx>.*:)?\s*(?<insn>[a-zA-Z\.]+)\s+(?<ops>.+)$/ =~ line
  opers = ops.scan(/(?:\(.*?\)|[^,])+/)
  for i in opers
    i.gsub!(/ /,"")
  end
  return pfx, insn, opers
end

def rewriteLine(line)
  pfx, insn, ops = parseLine(line)
  insn.upcase!

  return pfx + " " + rewriteInsn(insn, ops)
end

You done screaming yet?
@trap0xf | daifukkat.su/blog | scores | FIRE LANCER
<S.Yagawa> I like the challenge of "doing the impossible" with older hardware, and pushing it as far as it can go.
User avatar
system11
Posts: 6275
Joined: Tue Jan 25, 2005 10:17 pm
Location: UK
Contact:

Re: Nightmare Fuel

Post by system11 »

I hope I won't have to lock this thread. Posting something relevant so it's in my 'view your posts' summary - you have been warned.

Interview with a Cannibal, a chilling documentary. Some of the images are pretty strong so I'll throw out a NSFW here. This guy will scare the living hell out of you, as well as inspiring pity for him. It's about a Japanese man who killed and ate someone, but due to loopholes remains free - he's pathetic and a monster at the same time, it's brutally honest and open, as well as a damning expose on some exploitative aspects of Japanese culture.

http://www.youtube.com/watch?v=BosZxa1bYcE
System11's random blog, with things - and stuff!
http://blog.system11.org
User avatar
Ruldra
Posts: 4222
Joined: Wed Mar 05, 2008 1:27 am
Location: Brazil

Re: Nightmare Fuel

Post by Ruldra »

I clicked on the link but scrolled down quickly to read the description:
Russian scientists detach a dogs head for the purpose of testing and research artificial life support in pre-soviet republic. The dog is awakened in this video after having it's head surgically severed and is experimented on to determine if the animal is lucid, and to document the technology in this film reel
Yeeeeah...not watching that. I have a weak stomach for those things...
[Youtube | 1cc list | Steam]
mastermx wrote:
xorthen wrote:You guys are some hardcore MOFOs and masochists.
This is the biggest compliment you can give to people on this forum.
User avatar
Krimzon Kitzune
Posts: 331
Joined: Wed Jun 15, 2005 8:31 pm

Re: Nightmare Fuel

Post by Krimzon Kitzune »

You guys want nightmare fuel? Try Reddit's Morbid Reality. Be advised that most content is very disturbing and possibly NSFW.
".... that would be rubbish."
User avatar
Specineff
Posts: 5754
Joined: Wed Jan 26, 2005 12:54 am
Location: Ari-Freaking-Zona!
Contact:

Re: Nightmare Fuel

Post by Specineff »

MOSQUITO FIGHTER wrote:Very upsetting footage of dog head transplants. Gruesome, but it paved the way for organ transplants.

Demikhov
Russian Dog Experiment - Living without a body!
I thought this had been discounted as fake. In the middle of the Cold War, the Soviets would have no problem cooking up something like this with some stage magic and edits to make it appear real. That dog was at most sedated, and whole.

EDIT: I mean, yeah, the theory makes sense and I don't discount it ended up having a practical use in medicine, but the severed dog head stunt? Nah.
Don't hold grudges. GET EVEN.
User avatar
Lord Satori
Posts: 2061
Joined: Thu Jul 26, 2012 5:39 pm

Re: Nightmare Fuel

Post by Lord Satori »

system11 wrote:I hope I won't have to lock this thread.
What do you mean? Why?
BryanM wrote:You're trapped in a haunted house. There's a ghost. It wants to eat your friends and have sex with your cat. When forced to decide between the lives of your friends and the chastity of your kitty, you choose the cat.
User avatar
system11
Posts: 6275
Joined: Tue Jan 25, 2005 10:17 pm
Location: UK
Contact:

Re: Nightmare Fuel

Post by system11 »

Lord Satori wrote:
system11 wrote:I hope I won't have to lock this thread.
What do you mean? Why?
The potential for idiots posting things they shouldn't.
System11's random blog, with things - and stuff!
http://blog.system11.org
User avatar
Mischief Maker
Posts: 4802
Joined: Thu May 08, 2008 3:44 am

Re: Nightmare Fuel

Post by Mischief Maker »

system11 wrote:
Lord Satori wrote:
system11 wrote:I hope I won't have to lock this thread.
What do you mean? Why?
The potential for idiots posting things they shouldn't.
He means boobs.
Two working class dudes, one black one white, just baked a tray of ten cookies together.

An oligarch walks in and grabs nine cookies for himself.

Then he says to the white dude "Watch out for that black dude, he wants a piece of your cookie!"
User avatar
MOSQUITO FIGHTER
Posts: 1720
Joined: Sat Aug 13, 2005 7:32 pm

Re: Nightmare Fuel

Post by MOSQUITO FIGHTER »

Image

Image
User avatar
drauch
Posts: 5638
Joined: Thu Oct 30, 2008 6:14 am

Re: Nightmare Fuel

Post by drauch »

I think mosquito fighter wins. Pinky donut seems quite enthralling.
BIL wrote: "Small sack, LOTS OF CUM" - Nikola Tesla
User avatar
null1024
Posts: 3810
Joined: Sat Dec 15, 2007 8:52 pm
Location: ʍoquıɐɹ ǝɥʇ ɹǝʌo 'ǝɹǝɥʍǝɯos
Contact:

Re: Nightmare Fuel

Post by null1024 »

drauch wrote:I think mosquito fighter wins. Pinky donut seems quite enthralling.
mosquito fighter has consistently won in this thread
Seriously, that donut is freaky as hell.
Come check out my website, I guess. Random stuff I've worked on over the last two decades.
User avatar
drauch
Posts: 5638
Joined: Thu Oct 30, 2008 6:14 am

Re: Nightmare Fuel

Post by drauch »

Ruldra wrote:Image
Didn't even notice! Yep, that scene in Xtro has always stuck out for me. From what I remember, most of the movie is kind of a dud. But man, that poster...

Image

Anyone ever see the sequel?
BIL wrote: "Small sack, LOTS OF CUM" - Nikola Tesla
User avatar
guigui
Posts: 2092
Joined: Mon May 26, 2008 1:02 pm
Location: France

Re: Nightmare Fuel

Post by guigui »

Ok guys, you got me. I will just stop reading this thread... brrrrrrrrrr
Bravo jolie Ln, tu as trouvé : l'armée de l'air c'est là où on peut te tenir par la main.
User avatar
The Coop
Posts: 2939
Joined: Wed Mar 01, 2006 2:57 am
Location: Outskirts of B.F.E.

Re: Nightmare Fuel

Post by The Coop »

MOSQUITO FIGHTER wrote:Image

Image

Image

Image

Image

Image

Image

Image

Image
And here are most of the bosses for the next Darius game.
User avatar
system11
Posts: 6275
Joined: Tue Jan 25, 2005 10:17 pm
Location: UK
Contact:

Re: Nightmare Fuel

Post by system11 »

Image

Image
System11's random blog, with things - and stuff!
http://blog.system11.org
User avatar
Mischief Maker
Posts: 4802
Joined: Thu May 08, 2008 3:44 am

Re: Nightmare Fuel

Post by Mischief Maker »

system11 wrote:Image
That dude is scarier than the spider crab.
Two working class dudes, one black one white, just baked a tray of ten cookies together.

An oligarch walks in and grabs nine cookies for himself.

Then he says to the white dude "Watch out for that black dude, he wants a piece of your cookie!"
User avatar
MommysBestGames
Posts: 462
Joined: Thu Jan 21, 2010 7:46 pm
Location: Cornfields of Indiana
Contact:

Re: Nightmare Fuel

Post by MommysBestGames »

The 'Hominid Animation' short is very nice looking and fairly lurid. Not exactly "AHhhh!" but sort of lingering.
http://www.youtube.com/watch?v=dgMpoi23LuA
Made a giant arcade-adventure: Pig Eat Ball. Also made shmup with multi-ships: Shoot 1UP DX, Gunstacking game: Serious Sam Double D XXL, and more shooters.
Image
User avatar
Raytrace
Posts: 2172
Joined: Fri Oct 14, 2011 6:42 pm
Location: Éire

Re: Nightmare Fuel

Post by Raytrace »

how come no Coconut Crab or Horseshoe Crab yet?

of course the Giant Isopod made it though :)
Last edited by Raytrace on Sun Feb 24, 2013 10:28 pm, edited 1 time in total.
User avatar
xbl0x180
Posts: 2117
Joined: Mon Jul 04, 2011 5:28 pm

Re: Nightmare Fuel

Post by xbl0x180 »

The giant weta and potato bug need a hug 8)
Post Reply