Author Topic: Swamp Maintenance  (Read 7109 times)

0 Members and 1 Guest are viewing this topic.

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
Re: Swamp Maintenance
« Reply #15 on: May 07, 2011, 09:55:42 AM »
Well, there ya go ... I dunno where they are ...

For an example of what I am talking about, visit the funny picture thread. Several pics don't show and whenever you click the link beneath the pic, it is a dead link .. 404
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #16 on: May 07, 2011, 09:57:21 AM »
smileys are dead .... outside of that, I don't see anything else unusual.

smileys should all be working now.
TheSwamp.org  (serving the CAD community since 2003)

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
Re: Swamp Maintenance
« Reply #17 on: May 07, 2011, 10:03:25 AM »
are the fonts for the quotes and code segments supposed to be that much smaller now?
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #18 on: May 07, 2011, 10:05:23 AM »
are the fonts for the quotes and code segments supposed to be that much smaller now?
no they need updating.
TheSwamp.org  (serving the CAD community since 2003)

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
Re: Swamp Maintenance
« Reply #19 on: May 07, 2011, 10:07:02 AM »
maybe its just a timing thing, but despite you having posted in this thread since I last reviewed it, whenever I select "view all unread posts" this thread does not show.

Also, I an not getting email notifications. Perhaps that isn't yet turned on.
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #20 on: May 07, 2011, 10:09:44 AM »
maybe its just a timing thing, but despite you having posted in this thread since I last reviewed it, whenever I select "view all unread posts" this thread does not show.

Also, I an not getting email notifications. Perhaps that isn't yet turned on.
try deleting your cookies
TheSwamp.org  (serving the CAD community since 2003)

Jeff H

  • Needs a day job
  • Posts: 6151
Re: Swamp Maintenance
« Reply #21 on: May 07, 2011, 10:34:10 AM »
Is it just me or is service not like it use to be?

Lee Mac

  • Seagull
  • Posts: 12928
  • London, England
Re: Swamp Maintenance
« Reply #22 on: May 07, 2011, 11:02:43 AM »
Congrats Mark  8-)

Forum functionality seems fine, although I notice (as noted above) that code/quotes are displaying really small text.

Lee

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #23 on: May 07, 2011, 11:15:55 AM »
Congrats Mark  8-)

Forum functionality seems fine, although I notice (as noted above) that code/quotes are displaying really small text.

yeah yeah yeah .... keep your pants on!!

8-)

thanks
TheSwamp.org  (serving the CAD community since 2003)

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #24 on: May 07, 2011, 11:23:19 AM »
Forum functionality seems fine, although I notice (as noted above) that code/quotes are displaying really small text.
Better?
TheSwamp.org  (serving the CAD community since 2003)

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #25 on: May 07, 2011, 11:25:35 AM »
This place is going down one more time in 15 minutes. It will only take a minute though, I have to move some hardware around.
TheSwamp.org  (serving the CAD community since 2003)

Lee Mac

  • Seagull
  • Posts: 12928
  • London, England
Re: Swamp Maintenance
« Reply #26 on: May 07, 2011, 11:28:45 AM »
Forum functionality seems fine, although I notice (as noted above) that code/quotes are displaying really small text.
Better?

Perfect  :angel:

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #27 on: May 07, 2011, 11:38:24 AM »
I see the spell checker isn't working. I'll fix that in a few.
TheSwamp.org  (serving the CAD community since 2003)

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Swamp Maintenance
« Reply #28 on: May 07, 2011, 12:00:56 PM »
this is a test for the spelling checker
TheSwamp.org  (serving the CAD community since 2003)

Jeff H

  • Needs a day job
  • Posts: 6151
Re: Swamp Maintenance
« Reply #29 on: May 07, 2011, 12:11:53 PM »
Here
 :cry: :evil: :? :-o

Bold
UnderLine
Strikethrough
Italic
red
bunch
Code: [Select]
using System;

public class PtrIndexDemo
{

    unsafe public static void Main()
    {
        int[] nums = new int[10];

        Console.WriteLine("*************Using int**********");
        Console.WriteLine("Index pointer like array.");
        fixed (int* p = nums)
        {
            for (int i = 0; i < 10; i++)
                p[i] = i; // index pointer like array

            for (int i = 0; i < 10; i++)
            {
                int* ptrInt = &p[i];
                IntPtr address = (IntPtr)ptrInt;
                Console.WriteLine("p[{0}]: {1} {2}", i, p[i], address.ToString());

            }

        }


        // use pointer arithmetic
        Console.WriteLine("\nUse pointer arithmetic.");
        fixed (int* p = nums)
        {
            for (int i = 0; i < 10; i++)
                *(p + i) = i; // use pointer arithmetic

            for (int i = 0; i < 10; i++)
            {
                int* ptrInt = &(*(p + i));
                IntPtr address = (IntPtr)ptrInt;
                Console.WriteLine("*(p+{0}): {1} address = {2}", i, *(p + i), address.ToString());
            }

        }


        Console.WriteLine("");
        Console.WriteLine("");
        Console.WriteLine("*************Using long**********");
        long[] longs = new long[10];


        Console.WriteLine("Index pointer like array.");
        fixed (long* p = longs)
        {
            for (int i = 0; i < 10; i++)
                p[i] = i; // index pointer like array

            for (int i = 0; i < 10; i++)
            {
                long *ptrLong = &p[i];
                IntPtr address = (IntPtr)ptrLong;
                Console.WriteLine("p[{0}]: {1} address = {2}", i, p[i], address.ToString());

            }

        }


        // use pointer arithmetic
        Console.WriteLine("\nUse pointer arithmetic.");
        fixed (long* p = longs)
        {
            for (int i = 0; i < 10; i++)
                *(p + i) = i; // use pointer arithmetic

            for (int i = 0; i < 10; i++)
            {
                long *ptrInt = &(*(p + i));
                IntPtr address = (IntPtr)ptrInt;
                Console.WriteLine("*(p+{0}): {1} {2}", i, *(p + i), address.ToString());
            }

        }
        Console.ReadLine();
    }

}

this is a test for the spelling checker

All these seem to work