Forum Replies Created

Viewing 25 posts - 101 through 125 (of 193 total)
  • Author
    Posts
  • in reply to: VJing #1247414
    dubstep_joe
    Participant

      Interesting! I know virtual dj (free) has a video cue/scratch thing.

      Could you post a video of something your want similar to? As what I seem to find on youtube is a visualizer mixed up with image and some video effects?

      in reply to: Stupid Laws #1084131
      dubstep_joe
      Participant

        @manaman 459842 wrote:

        I was working nights in canada sq, canary wharf, in 2009 me and a few asians were in the canteen down in undergound car park having lunch,when the fire alarm went off, they looked at me and i just flicked my head and carried on eating, they shrugged to one another and carried on to. This bloke comes in all excited saying come on we have to get out cant you hear the alarm?We all started laughing at him, he stood there shocked for awhile then ran out. We were on night shifts for christ sakes, interupting a mans lunch like that at two o clock in the morning,but i’d expect that kind of carry on to be illegal everywhere.

        Are fire alarm gatherings enforced by law? I wonder how effective they are…

        in reply to: What is this? Video effect #1247372
        dubstep_joe
        Participant

          And we now have colour! Need to figure out how to zoom/move now 😀

          Interestingly, the mandrelbot does not actually include the ‘colour’ parts. It’s only the blue bug structure.
          We can however generate colour by exploiting the algorithm. And there is tons of ways to do it…

          There’s also other algorithms out there that generate different structures!

          There even seems to be a image sharpening software (photoshop plugins) (Workflow Technique #028 @Digital Outback Photo) that uses fractals. Those results look amazing, and I’d say technically impossible unless they somehow figure out a ‘pattern’ that is on the image or something..:weee::weee:

          :weee:

          in reply to: What is this? Video effect #1247371
          dubstep_joe
          Participant

            I’m wondering if fractal art plays a big part in milkdrop (winamps music visualator)…

            As it doesn’t seem to be a very-resource hungry, and fractal math calculations is what’s behind it (I’m guessing).

            in reply to: What is this? Video effect #1247370
            dubstep_joe
            Participant

              I’ve found an C++ algorithim on the net (Mandelbrot set tutorial).

              I’ve rewritten(translated rather) into python. If anyones interested 😀

              import Image, ImageDraw

              image = Image.new(‘RGB’, (600, 600))
              ImageHeight = 600
              ImageWidth = 600

              MinRe = -2.0
              MaxRe = 1.0
              MinIm = -1.2
              #Calculate a sutible ‘max Imaginary number’ so it will be in scale
              MaxIm = MinIm+(MaxRe-MinRe)*ImageHeight/ImageWidth
              #Calculate the ‘range’ of the real/imaginary number per pixel width
              #Eg if we are looking at a range of 10, divide by 100 will give us 0.1
              #meaning each ‘0.1’ ranges maps to one pixel width/block
              Re_factor = (MaxRe-MinRe)/(ImageWidth-1)
              Im_factor = (MaxIm-MinIm)/(ImageHeight-1)

              MaxIterations = 2000

              for y in range(0, ImageHeight):
              c_im = MaxIm – y*Im_factor

              for x in range(0, ImageWidth):
              c_re = MinRe + x * Re_factor
              Z_re = c_re
              Z_im = c_im
              isInside = True
              for n in range(0, MaxIterations):
              Z_re2 = Z_re * Z_re
              Z_im2 = Z_im * Z_im

              if Z_re2 + Z_im2 > 4:
              isInside = False
              break

              Z_im = 2 * Z_re * Z_im + c_im
              Z_re = Z_re2 – Z_im2 + c_re

              if isInside == True:
              image.putpixel((x,y), (100, 255, 128))

              image.save(‘test.jpg’)[/CODE]

              May I add that I still have yet to figure out what it’s doing? 😀 getting there slowly…. grr[CODE]

              import Image, ImageDraw

              image = Image.new(‘RGB’, (600, 600))
              ImageHeight = 600
              ImageWidth = 600

              MinRe = -2.0
              MaxRe = 1.0
              MinIm = -1.2
              #Calculate a sutible ‘max Imaginary number’ so it will be in scale
              MaxIm = MinIm+(MaxRe-MinRe)*ImageHeight/ImageWidth
              #Calculate the ‘range’ of the real/imaginary number per pixel width
              #Eg if we are looking at a range of 10, divide by 100 will give us 0.1
              #meaning each ‘0.1’ ranges maps to one pixel width/block
              Re_factor = (MaxRe-MinRe)/(ImageWidth-1)
              Im_factor = (MaxIm-MinIm)/(ImageHeight-1)

              MaxIterations = 2000

              for y in range(0, ImageHeight):
              c_im = MaxIm – y*Im_factor

              for x in range(0, ImageWidth):
              c_re = MinRe + x * Re_factor
              Z_re = c_re
              Z_im = c_im
              isInside = True
              for n in range(0, MaxIterations):
              Z_re2 = Z_re * Z_re
              Z_im2 = Z_im * Z_im

              if Z_re2 + Z_im2 > 4:
              isInside = False
              break

              Z_im = 2 * Z_re * Z_im + c_im
              Z_re = Z_re2 – Z_im2 + c_re

              if isInside == True:
              image.putpixel((x,y), (100, 255, 128))

              image.save(‘test.jpg’)[/CODE]

              May I add that I still have yet to figure out what it’s doing? 😀 getting there slowly…. grr

              in reply to: Chris changes the world #1247106
              dubstep_joe
              Participant

                @General Lighting 459468 wrote:

                they’ve got a fairly active drugs culture there as well influenced by the UK and NL as well as the natives of all racial groups, which developed in the wake of the euphoria caused by the end of apartheid. I used to work with a number of South African accountants and they said there was loads of raves in some areas, as well as all the pills and weed you could want..

                I only became aware of this few weeks back :(… There were/are goa parties very near to where I used to live… Grrr

                in reply to: p0ly’s Occupy Awareness #1246746
                dubstep_joe
                Participant

                  @HSB 459462 wrote:

                  I just worry that reality is a hallucination and one day I will wake up and realise theres no protest…

                  Is it just me or has the past few days/weeks been very fishy and funny? :O

                  This thing looks absolutely huge! :O THERE IS/was a thing happening in brighton too… 😀 I wanna go there

                  http://www.theargus.co.uk/news/9369439.Tea_and_biscuits_with_Occupy_Brighton_protesters/

                  😀

                  in reply to: p0ly’s Occupy Awareness #1246745
                  dubstep_joe
                  Participant

                    @HSB 459328 wrote:

                    I really really wish that I believed in the whole occupy thing, sounds like it could be well interestingll day.

                    What do you mean ‘believed in the ‘occupy thing’? How do you ‘believe’ in a protest/gathering?

                    in reply to: Chris changes the world #1247105
                    dubstep_joe
                    Participant

                      @manaman 459337 wrote:

                      You changed your fathers world, How is he with you about it?

                      He seems quite fine about it I guess. Surprisingly 😀

                      in reply to: What is this? Video effect #1247369
                      dubstep_joe
                      Participant

                        Sounds interesting 😀 gonna look it up thanks

                        in reply to: Hello #1247281
                        dubstep_joe
                        Participant

                          Hello there! Warm welcome to partyvibe! =D

                          in reply to: Chris changes the world #1247104
                          dubstep_joe
                          Participant

                            @General Lighting 459106 wrote:

                            Drugs like MXE and Ketamine dull the hearing as well, making it easy to do this, also if you are not careful its easy to send noisy/distort signals into your amp.

                            I hardly listen to anything on a moderatly loud volume, find things sound better when it’s at a medi-core-low volume.
                            As for mxe, I find it uncomfortable to listen to anything at a loud volume, usually have something playing at the lowest volume setting on my phone.

                            I have only found myself putting it to max volume on mpa or something, in normal use though this become uncomfortable.

                            So it’s perhaps that or possibly that I’ve given them many many drops/wacks?

                            in reply to: Chris changes the world #1247103
                            dubstep_joe
                            Participant

                              I was in an epic mxe session last nigh or early morning… And woke up to reading about this occupy thing… Feels amazing 😀

                              So I did change the world :D?

                              in reply to: p0ly’s Occupy Awareness #1246744
                              dubstep_joe
                              Participant

                                Does anyone think anything is gonna happen due to this?

                                in reply to: Chris changes the world #1247102
                                dubstep_joe
                                Participant

                                  😀 😀 😀 just ‘found’ out about ‘occupy’

                                  in reply to: Chris changes the world #1247101
                                  dubstep_joe
                                  Participant

                                    @DaftFader 458912 wrote:

                                    I once tried to explain the meaning of the universe to my dad when I was peaking on a massive line of K once … very bad idea lol

                                    Atleast I don’t feel alone now 😀

                                    in reply to: Chris changes the world #1247100
                                    dubstep_joe
                                    Participant

                                      @HSB 458910 wrote:

                                      In the nicest possible way, I have no idea what you are talking about.

                                      I am questioning why the average person works his entire life like a maniac 8am-5pm 5 days a week. Isn’t this too much effort that people go through to put ‘food’ on the table?

                                      Does all this effort go into paying for ‘technology’ or does it go to big research experiments?

                                      Does THIS make sense now? Hence why I ‘suggest’ that we live in a very in-efficient world, and all our effort/energy is being ‘wasted’.

                                      Wouldn’t it take less effort to actually grow your own vegetables by hand-labour. If we ignored things like rent/taxes?

                                      in reply to: Chris changes the world #1247099
                                      dubstep_joe
                                      Participant

                                        Short summary: I think the world is using very inefficient ‘tools’ and I don’t see where all human effort is being put into, research?
                                        Thoughts?

                                        in reply to: Chris changes the world #1247098
                                        dubstep_joe
                                        Participant

                                          @p0ly 458663 wrote:

                                          if i hear the word tool again i thing i’m gonna stick some tools through my brain like a screwdriver!

                                          Well that’s the best way to describe it I guess.

                                          in reply to: Chris changes the world #1247097
                                          dubstep_joe
                                          Participant

                                            @dubstep_joe 458597 wrote:

                                            This is my personal thread..

                                            Where I post stuff 😀

                                            Here are some of my thoughts? Why am I shy? Why do I have anxiety in situations?

                                            Why do we work all our life? Why are we not sustainable orginisims? Why does poverty exist?

                                            I’ll have a go at them now :D.
                                            1. I am shy because it makes me think more/before about what I should say, which helps me from saying something to offensive to a murderer hence I won’t get killed!
                                            2. Anxiety? Making my body being prepared for a potential kick to the gut hence small more chance of saving my life?
                                            3. We use inefficient tools?
                                            4. As above…
                                            5. Poverty is ‘struggling orginisims that are litreally fighting for life’ hence which they are using inefficient tools.

                                            Please take all the above with a pinch of salt. It’s my 5min guestimate oppinoun.

                                            (off topic) I think religoin is actually a good ‘tool’ too if we see it that way. If we had an organism that was incapable of of questioning it, would you consider it a good tool? I say yes.

                                            in reply to: Chris changes the world #1247096
                                            dubstep_joe
                                            Participant

                                              @p0ly 458654 wrote:

                                              what do you hope to achieve from this? do you not think you’ll regret this tomorrow.

                                              I achieved rational answers to why I use drugs besides ‘they make me feel good and see stuff’.
                                              Regret it tomorrow? Don’t think so… So why did I not mention it before? I guess… I don’t think it was the amt that did this, far from it. It was actually the talk I had with my dad. I wanted to make him understand why I do ‘drugs’ in the first place.. And it was his ‘understandment’ of this that made think up this thing. Amazing how it did happen.

                                              I couldn’t ‘justify’ drugs as not ‘bad’ to him. I’ve wondered before what I would say if I got caught or something.
                                              But when I did justify ‘drug’ use to my dad, somehow I was being so honest that when I explained my rationelle behind it, it was words I couldn’t come up with before (edit: translated ‘thoughts’ into words that described it almost perfectly). I’m not saying its due to mind-expanding-awareness I’m saying it’s due no having no hestation/anxiety to speak to it about my dad.

                                              And when he realised ‘tools’ are used by us human beings, it was like omg drugs really are ok!
                                              Obviously he was worried that I’m using a ‘bad tool’ but thats a personal matter, and it was semi-sorted aswell. 🙂

                                              in reply to: Chris changes the world #1247095
                                              dubstep_joe
                                              Participant

                                                @p0ly 458652 wrote:

                                                if you haven’t sent this to your dad yet please don’t for your own sake. i couldn’t read most of it.

                                                Uhm I spoke to him for like 4 hours going through this lol… Was gonna send it to him in case he didn’t get what I was saying.. More time to understand written sentences right?

                                                in reply to: Chris changes the world #1247094
                                                dubstep_joe
                                                Participant

                                                  @HSB 458650 wrote:

                                                  see if you can sumerise it all into 3 bullet points.

                                                  😀 legend ^

                                                  I’ll do that tomorrow or something

                                                  in reply to: Chris changes the world #1247093
                                                  dubstep_joe
                                                  Participant

                                                    First objection (from myself): My theory states that orginisms want to ‘live/survive/prevail’ longer.

                                                    Do orginisms strive to live longer/survive. My knowledge so far says yes. We don’t need to know why though.
                                                    We can use the fact that they do to our advantage though because it helps us live longer anyway.

                                                    I realise I’m over complicating this thing but my basic principle still stands.
                                                    When I meant ‘lives longer’ I basically mean anything that extends it’s lifetime as a whole. So perhaps the lifetime of each indivual orginisim is small, it does not mean its survival life is small aswell.

                                                    Living longer: Stronger/faster/intelligence…
                                                    That reminds me of a saying (‘It’s not the most intelligent orginisms that surive, its the most adaptable’) read it somewhere in a science class 😀

                                                    in reply to: Chris changes the world #1247092
                                                    dubstep_joe
                                                    Participant

                                                      @HSB 458645 wrote:

                                                      I aint slagging you off man just trying to help you and others make more sense of it.

                                                      Thank you! Much love!

                                                    Viewing 25 posts - 101 through 125 (of 193 total)