A little bit of silly.

General discussion on mikroElektronika website & forums.
Post Reply
Author
Message
DigitalDunc
Posts: 67
Joined: 11 Oct 2013 20:25
Location: Leicester, England

A little bit of silly.

#1 Post by DigitalDunc » 20 Nov 2013 20:15

Anyone care to add to this?

Code: Select all

short success = 0;

do        // A little tongue in cheek code.
{
    succes = try();
} while( !success );
Why use a half a dozen transistors when 3 billion will do. :-)

User avatar
filip
mikroElektronika team
Posts: 11874
Joined: 25 Jan 2008 09:56

Re: A little bit of silly.

#2 Post by filip » 21 Nov 2013 09:18

Hi,

Please, can you explain what are you trying to achieve with this ?

Regards,
Filip.

MaGiK
Posts: 897
Joined: 19 Apr 2013 10:00

Re: A little bit of silly.

#3 Post by MaGiK » 21 Nov 2013 11:02

Hi Filip.
I believe this post is just to have fun using a programming language to give jokes or similar funny stuff. Not an actual issue that needs your attention.

Keep up the amazing work Filip :D
Best Regards
My hobby is collecting MikroElektronika products.
Gotta catch them all!

DigitalDunc
Posts: 67
Joined: 11 Oct 2013 20:25
Location: Leicester, England

Re: A little bit of silly.

#4 Post by DigitalDunc » 21 Nov 2013 13:58

Quite so! Nobody has to worry about this. It is exactly as stated. Oh and the english saying this code expresses is ' If at first you don't succeed, try try again'.
Why use a half a dozen transistors when 3 billion will do. :-)

User avatar
filip
mikroElektronika team
Posts: 11874
Joined: 25 Jan 2008 09:56

Re: A little bit of silly.

#5 Post by filip » 22 Nov 2013 13:35

Hi,

Oh, I didn't realize this, I have used to a more formal approach on the forum. :)

Regards,
Filip.

Megahurts
Posts: 900
Joined: 01 Oct 2009 22:48
Location: Rocky Mountains, USA.

Re: A little bit of silly.

#6 Post by Megahurts » 26 Nov 2013 20:12

:lol: :lol: :lol:

Love it!!!

@ DigitalDunc, spot on mate! nice one. I was starting to wonder if anyone here had a sense of humor. Comes with the territory I suppose, but I will keep trying to put smiles out there too. :D :D
I'll have to do some thinking to see what else can be quantified into code... could be fun..

@ Filip, All work and no play = .......

@ MaGiK, sooo how many have you captured yet btw??? (your hobby)

Just enjoy the day all,, that's why its called "the Present", Robert.
HW: easyPIC5|PICFlash2|easyBT|smartGSM|easyGSM|PICPLC16|mmWorkStation|FT800 Eve|PIC Clicker/2|
MMBs:PIC18F,PIC33EP,PIC32|CLICKs:DAC,ADC,GPS L10,Thermo,8x8B LED,Stepper,W/B OLED,9DOF,GPS3,tRF,Hall I|

SW: mP for PIC|mB for PIC-dsPIC-PIC32|Visual-TFT|

MaGiK
Posts: 897
Joined: 19 Apr 2013 10:00

Re: A little bit of silly.

#7 Post by MaGiK » 27 Nov 2013 04:01

Very happy to hear from you Megahurts :D
Long time no see!

These products are driving me crazy! Whenever I capture a product, I realize that they have released ten more products :(
They are certainly on a roll here, but I won't give up until I have them all.

I just noticed that you added mPASCAL to your software. I hope you enjoy it :D
Did that GoPRO Hero2 used to be there? I've never paid enough attention earlier.

Best Regards
Last edited by MaGiK on 27 Nov 2013 12:54, edited 1 time in total.
My hobby is collecting MikroElektronika products.
Gotta catch them all!

Megahurts
Posts: 900
Joined: 01 Oct 2009 22:48
Location: Rocky Mountains, USA.

Re: A little bit of silly.

#8 Post by Megahurts » 27 Nov 2013 04:44

Hi back MaGik,

Ya, been a little bit since last talked. I've been busy at the tutorial. Almost got version 3.0 done.
Added some new topics that needed coverage too and some material editing throughout and using a newer writer app.

Glad to hear you have a small zoo of the critters captured too. I did add mPASCAL recently and I've been busy checking it out too.
So far, I like it. Now to capture the more elite trophies of the middle and upper class species. :P

I got the Gopro last summer (1.4 yrs ago) and have had it listed in signature since. I love it. Having a lot of fun finding ways to use it too.
Its the first video camera that can capture me and my friends Foosball shots (@120 fps) so we can slow it down and see what happened!
(and get great HD full table coverage, I have two mounting bases stuck in the light shades over the tables @ Bar we play at and use the wifi to control it)

Hope there gets to be more code humor put here also....... still thinking on it myself. :lol:

And eyeballing a couple of HW I want to collect myself. Muscles getting ready to pounce 8)

B^) Robert.
HW: easyPIC5|PICFlash2|easyBT|smartGSM|easyGSM|PICPLC16|mmWorkStation|FT800 Eve|PIC Clicker/2|
MMBs:PIC18F,PIC33EP,PIC32|CLICKs:DAC,ADC,GPS L10,Thermo,8x8B LED,Stepper,W/B OLED,9DOF,GPS3,tRF,Hall I|

SW: mP for PIC|mB for PIC-dsPIC-PIC32|Visual-TFT|

VCC
Posts: 463
Joined: 08 Jun 2009 18:31
Location: Romania

Re: A little bit of silly.

#9 Post by VCC » 28 Nov 2013 15:13

How to make the debugger step backwards: :D

Code: Select all

program MoonWalk;

// A Minus Infinite Loop

//from help: "Label should be followed by end of line (CR) otherwise compiler will report an error."
//labels should be highlighted in the syntax (that's when you know there are CR characters after labels):

label
  Step1, Step2, Step3, Step4, Step5;
  
var
  x: Integer;

begin
  Step1:
    Inc(x); goto Step5;
  Step2:
    Inc(x); goto Step1;
  Step3:
    Inc(x); goto Step2;
  Step4:
    Inc(x); goto Step3;
  Step5:
    Inc(x); goto Step4;
end.

Post Reply

Return to “Website & Forums General Discussion”