Test your Forum Posts

Talk about anything
User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 02 Nov 2018, 17:52

Code: Select all

       df
       .   .
test indent
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 02 Nov 2018, 17:53

Tabs:
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 02 Nov 2018, 18:09

Code: Select all

if (MyVar = 5)
{
    MsgBox, MsyVar equals == %MyVar%!!
    ExitApp
}

Code: Select all

if (MyVar = 5)
{
    MsgBox, MsyVar equals == %MyVar%!!
    ExitApp
}
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 11 Nov 2018, 22:17

inline code test;

spolier3 test
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
nnnik
Posts: 4500
Joined: 30 Sep 2013, 01:01
Location: Germany

Re: Test your Forum Posts

Post by nnnik » 13 Nov 2018, 01:56

dog.jpeg
dog.jpeg (68.66 KiB) Viewed 10357 times
test
Recommends AHK Studio

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 13 Nov 2018, 01:57

epic pic :+1:
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
nnnik
Posts: 4500
Joined: 30 Sep 2013, 01:01
Location: Germany

Re: Test your Forum Posts

Post by nnnik » 13 Nov 2018, 10:58

testetsttetstet Test more test
Recommends AHK Studio

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 13 Nov 2018, 11:44

Sooo doge, such wow, much like.
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 15 Nov 2018, 00:00

C-lang

Code: Select all

char *substr(char *str, int start, int length) {
	int i, len=strlen(str);
	if ((length+start)<=len || start>0 || length>0){
		char *out=calloc(len+1,sizeof(char));
		for (i=start;i<(length+start);i++)
			out[i-start]=str[i];
		//out[len]='\0';
		return out;
	}
	else
	{
		return NULL;
	}
}
ahk

Code: Select all

Loop, % ColorArray.Length() + 1 {
   Opts := (A_Index = 1) ? "xm ym" : (Mod(A_Index, 16) = 1) ? "xm y+-1" : "x+-1 yp"
   Gui, Add, Text, %Opts% w24 h24 +Border gColorSelected vC%I%
   I++
}
js

Code: Select all

{
  "array": [
    1,
    2,
    3
  ],
  "escapechar" : "\\",
  "boolean": true,
  "null": null,
  "number": 123,
  "object": {
    "name": "table",
    "type": "furniture",
    "properties": {
      "solid": true,
      "pos": {
        "x": 23,
        "y": 4,
        "z": 42
      },
      "size": {
        "width": 230,
        "heigth": 80,
        "unit": "cm"
      }
    }
  },
  "string": "Hello World"
}
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
nnnik
Posts: 4500
Joined: 30 Sep 2013, 01:01
Location: Germany

Re: Test your Forum Posts

Post by nnnik » 18 Nov 2018, 07:42

joedf wrote:
15 Nov 2018, 00:00
C-lang

Code: Select all

char *substr(char *str, int start, int length) {
	int i, len=strlen(str);
	if ((length+start)<=len || start>0 || length>0){
		char *out=calloc(len+1,sizeof(char));
		for (i=start;i<(length+start);i++)
			out[i-start]=str[i];
		//out[len]='\0';
		return out;
	}
	else
	{
		return NULL;
	}
}
ahk

Code: Select all

Loop, % ColorArray.Length() + 1 {
   Opts := (A_Index = 1) ? "xm ym" : (Mod(A_Index, 16) = 1) ? "xm y+-1" : "x+-1 yp"
   Gui, Add, Text, %Opts% w24 h24 +Border gColorSelected vC%I%
   I++
}
js

Code: Select all

{
  "array": [
    1,
    2,
    3
  ],
  "escapechar" : "\\",
  "boolean": true,
  "null": null,
  "number": 123,
  "object": {
    "name": "table",
    "type": "furniture",
    "properties": {
      "solid": true,
      "pos": {
        "x": 23,
        "y": 4,
        "z": 42
      },
      "size": {
        "width": 230,
        "heigth": 80,
        "unit": "cm"
      }
    }
  },
  "string": "Hello World"
}
Recommends AHK Studio

guest3456
Posts: 3453
Joined: 09 Oct 2013, 10:31

Re: Test your Forum Posts

Post by guest3456 » 18 Nov 2018, 20:55

joedf wrote:
13 Nov 2018, 11:44
Sooo doge, such wow, much like.
test


User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 18 Nov 2018, 21:06

test
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 18 Nov 2018, 21:18

Code: Select all

{
  "array": [
    1,
    2,
    3
  ],
  "escapechar" : "\\",
  "boolean": true,
  "null": null,
  "number": 123,
  "object": {
    "name": "table",
    "type": "furniture",
    "properties": {
      "solid": true,
      "pos": {
        "x": 23,
        "y": 4,
        "z": 42
      },
      "size": {
        "width": 230,
        "heigth": 80,
        "unit": "cm"
      }
    }
  },
  "string": "Hello World"
}
nnnik wrote:
joedf wrote:
15 Nov 2018, 00:00
C-lang

Code: Select all

char *substr(char *str, int start, int length) {
 int i, len=strlen(str);
 if ((length+start)<=len || start>0 || length>0){
 char *out=calloc(len+1,sizeof(char));
 for (i=start;i<(length+start);i++)
 out[i-start]=str[i];
 //out[len]='\0';
 return out;
 }
 else
 {
 return NULL;
 }
}
ahk

Code: Select all

Loop, % ColorArray.Length() + 1 {
 Opts := (A_Index = 1) ? "xm ym" : (Mod(A_Index, 16) = 1) ? "xm y+-1" : "x+-1 yp"
 Gui, Add, Text, %Opts% w24 h24 +Border gColorSelected vC%I%
 I++
}
js

Code: Select all

{
 "array": [
 1,
 2,
 3
 ],
 "escapechar" : "\\",
 "boolean": true,
 "null": null,
 "number": 123,
 "object": {
 "name": "table",
 "type": "furniture",
 "properties": {
 "solid": true,
 "pos": {
 "x": 23,
 "y": 4,
 "z": 42
 },
 "size": {
 "width": 230,
 "heigth": 80,
 "unit": "cm"
 }
 }
 },
 "string": "Hello World"
}
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 18 Nov 2018, 21:19

Code: Select all

Loop, % ColorArray.Length() + 1 {
 Opts := (A_Index = 1) ? "xm ym" : (Mod(A_Index, 16) = 1) ? "xm y+-1" : "x+-1 yp"
 Gui, Add, Text, %Opts% w24 h24 +Border gColorSelected vC%I%
 I++
}

Code: Select all

Loop, % ColorArray.Length() + 1 {
 Opts := (A_Index = 1) ? "xm ym" : (Mod(A_Index, 16) = 1) ? "xm y+-1" : "x+-1 yp"
 Gui, Add, Text, %Opts% w24 h24 +Border gColorSelected vC%I%
 I++
}
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 18 Nov 2018, 21:34

Ctrl + C
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: Test your Forum Posts

Post by joedf » 18 Nov 2018, 21:35

Testing kbd bbcode
Ctrl + V
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]

guest3456
Posts: 3453
Joined: 09 Oct 2013, 10:31

Re: Test your Forum Posts

Post by guest3456 » 20 Nov 2018, 09:29

testing test


guest3456
Posts: 3453
Joined: 09 Oct 2013, 10:31

Re: Test your Forum Posts

Post by guest3456 » 20 Nov 2018, 09:53

guest3456 wrote:
20 Nov 2018, 09:29
testing test
code:

Code: Select all

if (MyVar = 5)
{
    MsgBox, MyVar equals == %MyVar%!!
    ExitApp
}


test-joedf

Re: Test your Forum Posts

Post by test-joedf » 23 Nov 2018, 13:44

tetestestse

Guest

Re: Test your Forum Posts

Post by Guest » 23 Nov 2018, 15:26

Guest posting works! :dance: :bravo: :clap: :superhappy: :cookie:

Post Reply

Return to “Off-topic Discussion”