Bitcoin Forum
June 20, 2024, 08:31:55 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 [94] 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 ... 179 »
1861  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 21, 2015, 01:37:56 AM
Pity having to remind about Bittrex daily volume...


 Tongue
1862  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 21, 2015, 01:35:22 AM

Please stake some coins daily.
The blockchain is stuck.

Thanks.
 Smiley
I only have 1000 kore in my wallet, I'd split it to 4 address to generate 4 block when stacked, maybe other can try this too, eq. 200 KORE per address. If you have 10K KORE, it can generate 50 new block from 1 wallet only.

You're awesome for staking, Thanks!
 Smiley
1863  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 19, 2015, 11:31:02 PM

Please stake some coins daily.
The blockchain is stuck.

Thanks.
 Smiley
1864  Economy / Services / Re: ☑ CALLING All MOBILE APP Coders ⚠⚠⚠ Bounties 4-Apps. ▄︻̷̿┻̿═━一 ⚝ on: September 19, 2015, 09:44:29 PM
9-12-15
UPDATE:
The Coder who fell seriously ill a few months back is feeling well enough to do only the easiest coding work
so they decided they could at least make some simple apps and He recently posted them. If He feels a bit better
in the coming weeks and months He might tackle some of the more difficult apps and eventually be able to get the Æther OS on a device. One step at a time though. Just an hour meeting I recently had totally drained him and anyone who's been that ill knows what that is like.


Copy of his post below
:

 Smiley
It’s been a while since there’s been some activity here and that’s because I’ve been dealing with some serious health issues. I’m finally doing a bit better now and am still committed to this project.
We still have the app bounties up for grabs and I decided to do the 2 easiest ones so long!
Clock: DONE!
Alarm Clock: DONE!

Code and files to follow…

---------- Post added at 10:18 AM ---------- Previous post was at 10:12 AM ----------

Here are the new apps which can be directly loaded into the emulator.
(Remember: The emulator looks for them in C:\Program Files (x86)\Æther\ )
For example: Create a sub folder called Clock (C:\Program Files (x86)\Æther\Clock\ ) and put Clock.dll into it. In the emulator, under ‘Load’, enter “Clock”.



[I tried posting the link, but the forum won't allow me to post links yet. I will ask HD2 Crosshair to post it.]
""The Dev asked me to post this link to his latest work on the apps.
Cheers!""
https://mega.nz/#!fNlB1BpJ!oXW3m4R6fd3kMiBJzH1FwPKQiwDC8JeYqxZTe1iqUio

---------- Post added at 10:22 AM ---------- Previous post was at 10:18 AM ----------

CLOCK APP CODE

Option Strict On
Option Explicit On

Imports System
Imports Æther
Imports Æther.UI
Imports Æther.UI.UIobjects
Imports System.Threading

Public Class Program

Inherits ÆtherAppBase

Private Shared MainThread As Thread

Private Shared Running As Boolean

Shared Sub Main()

Running = True

MainThread = New Threading.Thread(AddressOf DoMainThread)
MainThread.Start()

End Sub

Private Shared B1 As AEtherButton
Private Shared TX As AEtherTextBox

Private Shared BackgroundColour As AEtherColour = New AEtherColour(24, 45, 228)

Private Shared Sub DoMainThread()

_PrimarySurface = New AEtherSurface
_PrimarySurface.BackgroundColour = BackgroundColour

Const X0 As Single = 0.27!
Const Y0 As Single = 0.35!
Const SX As Single = 0.48!
Const SY As Single = 0.35!

Dim C1 = New AEtherRectangle("Display Background",
New AEtherPoint(X0, Y0),
New AEtherSize(SX, SY),
New AEtherColour(255, 255, 0))
_PrimarySurface.AddControl(C1)

Dim T1 = New AEtherLabel("Time",
New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!),
New AEtherColour(30, 144, 255),
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Centre)
T1.Text = "00:00:00"
_PrimarySurface.AddControl(T1)

Dim Pulse = New AutoResetEvent(False)

Dim S As Stopwatch = New Stopwatch
S.Start()

While Running
Dim CurrentTime As DateTime = DateTime.Now
Dim Seconds As Single = CSng(S.Elapsed.TotalSeconds) * 0.72!
Dim Seconds2 As Single = Seconds * 0.333!
T1.Text = String.Format("{0:HH:mm:ss}", CurrentTime)
C1.Position.X = X0 + CSng(Math.Sin(S.Elapsed.TotalSeconds)) * 0.12!
C1.Position.Y = Y0 - CSng(Math.Cos(S.Elapsed.TotalSeconds)) * 0.12!
C1.FillColour = New AEtherColour(CInt(Math.Abs(Math.Sin(Seconds2) * 255)),
CInt(Math.Abs(Math.Sin(Seconds2 + 0.7!) * 255)),
CInt(Math.Abs(Math.Sin(Seconds2 + 1.5!) * 255)))
T1.FillColour = New AEtherColour(CInt(Math.Abs(Math.Cos(Seconds * 1.5!) * 255)),
CInt(Math.Abs(Math.Cos(Seconds * 1.5! + 0.7!) * 255)),
CInt(Math.Abs(Math.Cos(Seconds * 1.5! + 1.5!) * 255)))
T1.Position = New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!)
RaiseEvent_UpdateSurface()
Pulse.WaitOne(48)
End While

End Sub

Public Shared Shadows Sub EndApp()

Running = False

Debug.Print("End App!")

End Sub

Public Shared Shadows Sub PointerDown()

Debug.Print("Pointer Down!")

End Sub

Public Shared Shadows Sub PointerUp()

Debug.Print("Pointer Up!")

End Sub

End Class

---------- Post added at 10:27 AM ---------- Previous post was at 10:22 AM ----------

ALARM CLOCK APP CODE:

Option Strict On
Option Explicit On

Imports System
Imports System.Threading
Imports Æther
Imports Æther.UI
Imports Æther.UI.UIobjects

Public Class Program

Inherits ÆtherAppBase

Private Shared MainThread As Thread

Private Shared Running As Boolean

Shared Sub Main()

Running = True

MainThread = New Threading.Thread(AddressOf DoMainThread)
MainThread.Start()

End Sub

Private Shared B1 As AEtherButton
Private Shared TX As AEtherTextBox

Private Shared AlarmSet As Boolean = False
Private Shared AlarmTime As DateTime

Private Shared AlarmSetColour As AEtherColour = New AEtherColour(0, 192, 0)
Private Shared AlarmNotSetColour As AEtherColour = New AEtherColour(129, 129, 129)
Private Shared AlarmNotifyColour As AEtherColour = New AEtherColour(255, 0, 0)

Private Shared AlarmButtonSetColour As AEtherColour = New AEtherColour(255, 0, 0)
Private Shared AlarmButtonNotSetColour As AEtherColour = New AEtherColour(192, 48, 48)

Private Shared BackgroundColour As AEtherColour = New AEtherColour(24, 45, 228)
Private Shared BackgroundNotifyColour As AEtherColour = New AEtherColour(255, 0, 0)

Private Shared Sub DoMainThread()

_PrimarySurface = New AEtherSurface
_PrimarySurface.BackgroundColour = BackgroundColour

Const SX As Single = 0.48!
Const SY As Single = 0.35!

'Const SX2 As Single = 0.48!
'Const SY2 As Single = SY * 0.66!

Const X0 As Single = 0.27!

Dim C1 = New AEtherRectangle("Display Background",
New AEtherPoint(X0, 0.15),
New AEtherSize(SX, SY),
New AEtherColour(255, 255, 0))
_PrimarySurface.AddControl(C1)

Dim T1 = New AEtherLabel("Time 1",
New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!),
New AEtherColour(30, 144, 255),
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Centre)
T1.Text = "00:00:00"
_PrimarySurface.AddControl(T1)

'C2 = New AEtherRectangle("Display Background 2",
' New AEtherPoint(X0, 0.75),
' New AEtherSize(SX2, SY2),
' AlarmNotSetColour)
'_PrimarySurface.AddControl(C2)

'Dim T2 = New AEtherLabel("Time 2",
' New AEtherPoint(C2.Position.X + SX2 / 2.0!,
' C2.Position.Y + SY2 / 2.0!),
' AlarmNotSetColour,
' "Segoe UI", 35.0!,
' AEtherFontStyle.Bold,
' AEtherTextAlignment.Centre)
'T2.Text = "00:00"
'_PrimarySurface.AddControl(T2)
'AddHandler T2.Focus, AddressOf HandleTextClick1

B1 = New AEtherButton("Button 1",
"Set Alarm",
New AEtherPoint(C1.Position.X + SX / 2.0! - 0.27! / 2.0!,
0.66!),
New AEtherSize(0.27!, 0.084),
AlarmButtonNotSetColour)
AddHandler B1.Focus, AddressOf HandleButton1Down
_PrimarySurface.AddControl(B1)


TX = New AEtherTextBox("TextBox 1",
New AEtherPoint(B1.Position.X - 0.012!,
B1.Position.Y + 0.15!),
New AEtherSize(0.12, 0.012),
AlarmNotSetColour,
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Left)
TX.Text = "00:00"
_PrimarySurface.AddControl(TX)
AddHandler TX.Focus, AddressOf HandleTextClick1
' AddHandler TX.ValueChanged, AddressOf HandleTextChanged1

Dim Pulse = New AutoResetEvent(False)

While Running
Dim CurrentTime As DateTime = DateTime.Now
T1.Text = String.Format("{0:HH:mm:ss}", CurrentTime)
If AlarmSet AndAlso CurrentTime.Hour = AlarmTime.Hour AndAlso CurrentTime.Minute = AlarmTime.Minute Then
AlarmActivated()
End If
HandleTextChanged1()
RaiseEvent_UpdateSurface()
Pulse.WaitOne(48)
End While

End Sub

Private Shared Sub HandleButton1Down()

ToggleAlarmSet()

End Sub

Private Shared Sub HandleTextClick1()

If Not AlarmSet Then
ToggleAlarmSet()
End If

End Sub

Private Shared Sub HandleTextChanged1()

Static TextChanged As String

If TX.Text <> TextChanged Then
If TX.Text.Length > 3 Then
DateTime.TryParse(TX.Text, AlarmTime)
End If
End If

TextChanged = TX.Text

End Sub

Private Shared Sub ToggleAlarmSet()

AlarmSet = Not AlarmSet

If AlarmSet Then
B1.Text = "Alarm Set"
B1.FillColour = AlarmButtonSetColour
TX.FillColour = AlarmSetColour
Else
B1.Text = "Set Alarm"
B1.FillColour = AlarmButtonNotSetColour
TX.FillColour = AlarmNotSetColour
End If

End Sub

Private Shared Sub AlarmActivated()

Static T As Stopwatch = New Stopwatch

If Not T.IsRunning Then
T.Start()
End If

If CInt(T.Elapsed.Seconds) Mod 2 = 0 Then
_PrimarySurface.BackgroundColour = BackgroundNotifyColour
Else
_PrimarySurface.BackgroundColour = BackgroundColour
End If

End Sub

Public Shared Shadows Sub EndApp()

Running = False

Debug.Print("End App!")

End Sub

Public Shared Shadows Sub PointerDown()

Debug.Print("Pointer Down!")

End Sub

Public Shared Shadows Sub PointerUp()

Debug.Print("Pointer Up!")

End Sub

End Class
1865  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: ☑ API'S * Bounties for Apps of All Types *CALLING All MOBILE APP Coders ⚠⚠⚠ on: September 19, 2015, 09:44:20 PM
9-12-15
UPDATE:
The Coder who fell seriously ill a few months back is feeling well enough to do only the easiest coding work
so they decided they could at least make some simple apps and He recently posted them. If He feels a bit better
in the coming weeks and months He might tackle some of the more difficult apps and eventually be able to get the Æther OS on a device. One step at a time though. Just an hour meeting I recently had totally drained him and anyone who's been that ill knows what that is like.


Copy of his post below:

 Smiley
It’s been a while since there’s been some activity here and that’s because I’ve been dealing with some serious health issues. I’m finally doing a bit better now and am still committed to this project.
We still have the app bounties up for grabs and I decided to do the 2 easiest ones so long!
Clock: DONE!
Alarm Clock: DONE!

Code and files to follow…

---------- Post added at 10:18 AM ---------- Previous post was at 10:12 AM ----------

Here are the new apps which can be directly loaded into the emulator.
(Remember: The emulator looks for them in C:\Program Files (x86)\Æther\ )
For example: Create a sub folder called Clock (C:\Program Files (x86)\Æther\Clock\ ) and put Clock.dll into it. In the emulator, under ‘Load’, enter “Clock”.



[I tried posting the link, but the forum won't allow me to post links yet. I will ask HD2 Crosshair to post it.]
""The Dev asked me to post this link to his latest work on the apps.
Cheers!""
https://mega.nz/#!fNlB1BpJ!oXW3m4R6fd3kMiBJzH1FwPKQiwDC8JeYqxZTe1iqUio

---------- Post added at 10:22 AM ---------- Previous post was at 10:18 AM ----------

CLOCK APP CODE

Option Strict On
Option Explicit On

Imports System
Imports Æther
Imports Æther.UI
Imports Æther.UI.UIobjects
Imports System.Threading

Public Class Program

Inherits ÆtherAppBase

Private Shared MainThread As Thread

Private Shared Running As Boolean

Shared Sub Main()

Running = True

MainThread = New Threading.Thread(AddressOf DoMainThread)
MainThread.Start()

End Sub

Private Shared B1 As AEtherButton
Private Shared TX As AEtherTextBox

Private Shared BackgroundColour As AEtherColour = New AEtherColour(24, 45, 228)

Private Shared Sub DoMainThread()

_PrimarySurface = New AEtherSurface
_PrimarySurface.BackgroundColour = BackgroundColour

Const X0 As Single = 0.27!
Const Y0 As Single = 0.35!
Const SX As Single = 0.48!
Const SY As Single = 0.35!

Dim C1 = New AEtherRectangle("Display Background",
New AEtherPoint(X0, Y0),
New AEtherSize(SX, SY),
New AEtherColour(255, 255, 0))
_PrimarySurface.AddControl(C1)

Dim T1 = New AEtherLabel("Time",
New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!),
New AEtherColour(30, 144, 255),
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Centre)
T1.Text = "00:00:00"
_PrimarySurface.AddControl(T1)

Dim Pulse = New AutoResetEvent(False)

Dim S As Stopwatch = New Stopwatch
S.Start()

While Running
Dim CurrentTime As DateTime = DateTime.Now
Dim Seconds As Single = CSng(S.Elapsed.TotalSeconds) * 0.72!
Dim Seconds2 As Single = Seconds * 0.333!
T1.Text = String.Format("{0:HH:mm:ss}", CurrentTime)
C1.Position.X = X0 + CSng(Math.Sin(S.Elapsed.TotalSeconds)) * 0.12!
C1.Position.Y = Y0 - CSng(Math.Cos(S.Elapsed.TotalSeconds)) * 0.12!
C1.FillColour = New AEtherColour(CInt(Math.Abs(Math.Sin(Seconds2) * 255)),
CInt(Math.Abs(Math.Sin(Seconds2 + 0.7!) * 255)),
CInt(Math.Abs(Math.Sin(Seconds2 + 1.5!) * 255)))
T1.FillColour = New AEtherColour(CInt(Math.Abs(Math.Cos(Seconds * 1.5!) * 255)),
CInt(Math.Abs(Math.Cos(Seconds * 1.5! + 0.7!) * 255)),
CInt(Math.Abs(Math.Cos(Seconds * 1.5! + 1.5!) * 255)))
T1.Position = New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!)
RaiseEvent_UpdateSurface()
Pulse.WaitOne(48)
End While

End Sub

Public Shared Shadows Sub EndApp()

Running = False

Debug.Print("End App!")

End Sub

Public Shared Shadows Sub PointerDown()

Debug.Print("Pointer Down!")

End Sub

Public Shared Shadows Sub PointerUp()

Debug.Print("Pointer Up!")

End Sub

End Class

---------- Post added at 10:27 AM ---------- Previous post was at 10:22 AM ----------

ALARM CLOCK APP CODE:

Option Strict On
Option Explicit On

Imports System
Imports System.Threading
Imports Æther
Imports Æther.UI
Imports Æther.UI.UIobjects

Public Class Program

Inherits ÆtherAppBase

Private Shared MainThread As Thread

Private Shared Running As Boolean

Shared Sub Main()

Running = True

MainThread = New Threading.Thread(AddressOf DoMainThread)
MainThread.Start()

End Sub

Private Shared B1 As AEtherButton
Private Shared TX As AEtherTextBox

Private Shared AlarmSet As Boolean = False
Private Shared AlarmTime As DateTime

Private Shared AlarmSetColour As AEtherColour = New AEtherColour(0, 192, 0)
Private Shared AlarmNotSetColour As AEtherColour = New AEtherColour(129, 129, 129)
Private Shared AlarmNotifyColour As AEtherColour = New AEtherColour(255, 0, 0)

Private Shared AlarmButtonSetColour As AEtherColour = New AEtherColour(255, 0, 0)
Private Shared AlarmButtonNotSetColour As AEtherColour = New AEtherColour(192, 48, 48)

Private Shared BackgroundColour As AEtherColour = New AEtherColour(24, 45, 228)
Private Shared BackgroundNotifyColour As AEtherColour = New AEtherColour(255, 0, 0)

Private Shared Sub DoMainThread()

_PrimarySurface = New AEtherSurface
_PrimarySurface.BackgroundColour = BackgroundColour

Const SX As Single = 0.48!
Const SY As Single = 0.35!

'Const SX2 As Single = 0.48!
'Const SY2 As Single = SY * 0.66!

Const X0 As Single = 0.27!

Dim C1 = New AEtherRectangle("Display Background",
New AEtherPoint(X0, 0.15),
New AEtherSize(SX, SY),
New AEtherColour(255, 255, 0))
_PrimarySurface.AddControl(C1)

Dim T1 = New AEtherLabel("Time 1",
New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!),
New AEtherColour(30, 144, 255),
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Centre)
T1.Text = "00:00:00"
_PrimarySurface.AddControl(T1)

'C2 = New AEtherRectangle("Display Background 2",
' New AEtherPoint(X0, 0.75),
' New AEtherSize(SX2, SY2),
' AlarmNotSetColour)
'_PrimarySurface.AddControl(C2)

'Dim T2 = New AEtherLabel("Time 2",
' New AEtherPoint(C2.Position.X + SX2 / 2.0!,
' C2.Position.Y + SY2 / 2.0!),
' AlarmNotSetColour,
' "Segoe UI", 35.0!,
' AEtherFontStyle.Bold,
' AEtherTextAlignment.Centre)
'T2.Text = "00:00"
'_PrimarySurface.AddControl(T2)
'AddHandler T2.Focus, AddressOf HandleTextClick1

B1 = New AEtherButton("Button 1",
"Set Alarm",
New AEtherPoint(C1.Position.X + SX / 2.0! - 0.27! / 2.0!,
0.66!),
New AEtherSize(0.27!, 0.084),
AlarmButtonNotSetColour)
AddHandler B1.Focus, AddressOf HandleButton1Down
_PrimarySurface.AddControl(B1)


TX = New AEtherTextBox("TextBox 1",
New AEtherPoint(B1.Position.X - 0.012!,
B1.Position.Y + 0.15!),
New AEtherSize(0.12, 0.012),
AlarmNotSetColour,
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Left)
TX.Text = "00:00"
_PrimarySurface.AddControl(TX)
AddHandler TX.Focus, AddressOf HandleTextClick1
' AddHandler TX.ValueChanged, AddressOf HandleTextChanged1

Dim Pulse = New AutoResetEvent(False)

While Running
Dim CurrentTime As DateTime = DateTime.Now
T1.Text = String.Format("{0:HH:mm:ss}", CurrentTime)
If AlarmSet AndAlso CurrentTime.Hour = AlarmTime.Hour AndAlso CurrentTime.Minute = AlarmTime.Minute Then
AlarmActivated()
End If
HandleTextChanged1()
RaiseEvent_UpdateSurface()
Pulse.WaitOne(48)
End While

End Sub

Private Shared Sub HandleButton1Down()

ToggleAlarmSet()

End Sub

Private Shared Sub HandleTextClick1()

If Not AlarmSet Then
ToggleAlarmSet()
End If

End Sub

Private Shared Sub HandleTextChanged1()

Static TextChanged As String

If TX.Text <> TextChanged Then
If TX.Text.Length > 3 Then
DateTime.TryParse(TX.Text, AlarmTime)
End If
End If

TextChanged = TX.Text

End Sub

Private Shared Sub ToggleAlarmSet()

AlarmSet = Not AlarmSet

If AlarmSet Then
B1.Text = "Alarm Set"
B1.FillColour = AlarmButtonSetColour
TX.FillColour = AlarmSetColour
Else
B1.Text = "Set Alarm"
B1.FillColour = AlarmButtonNotSetColour
TX.FillColour = AlarmNotSetColour
End If

End Sub

Private Shared Sub AlarmActivated()

Static T As Stopwatch = New Stopwatch

If Not T.IsRunning Then
T.Start()
End If

If CInt(T.Elapsed.Seconds) Mod 2 = 0 Then
_PrimarySurface.BackgroundColour = BackgroundNotifyColour
Else
_PrimarySurface.BackgroundColour = BackgroundColour
End If

End Sub

Public Shared Shadows Sub EndApp()

Running = False

Debug.Print("End App!")

End Sub

Public Shared Shadows Sub PointerDown()

Debug.Print("Pointer Down!")

End Sub

Public Shared Shadows Sub PointerUp()

Debug.Print("Pointer Up!")

End Sub

End Class
1866  Economy / Services / Re: ☑ * LIVE VIDEO APP Asap! CALLING All MOBILE APP Coders ⚠⚠⚠ Bounties 4-Apps on: September 19, 2015, 09:43:20 PM
9-12-15
UPDATE:
The Coder who fell seriously ill a few months back is feeling well enough to do only the easiest coding work
so they decided they could at least make some simple apps and He recently posted them. If He feels a bit better
in the coming weeks and months He might tackle some of the more difficult apps and eventually be able to get the Æther OS on a device. One step at a time though. Just an hour meeting I recently had totally drained him and anyone who's been that ill knows what that is like.


Copy of his post below:

 Smiley
It’s been a while since there’s been some activity here and that’s because I’ve been dealing with some serious health issues. I’m finally doing a bit better now and am still committed to this project.
We still have the app bounties up for grabs and I decided to do the 2 easiest ones so long!
Clock: DONE!
Alarm Clock: DONE!

Code and files to follow…

---------- Post added at 10:18 AM ---------- Previous post was at 10:12 AM ----------

Here are the new apps which can be directly loaded into the emulator.
(Remember: The emulator looks for them in C:\Program Files (x86)\Æther\ )
For example: Create a sub folder called Clock (C:\Program Files (x86)\Æther\Clock\ ) and put Clock.dll into it. In the emulator, under ‘Load’, enter “Clock”.



[I tried posting the link, but the forum won't allow me to post links yet. I will ask HD2 Crosshair to post it.]
""The Dev asked me to post this link to his latest work on the apps.
Cheers!""
https://mega.nz/#!fNlB1BpJ!oXW3m4R6fd3kMiBJzH1FwPKQiwDC8JeYqxZTe1iqUio

---------- Post added at 10:22 AM ---------- Previous post was at 10:18 AM ----------

CLOCK APP CODE

Option Strict On
Option Explicit On

Imports System
Imports Æther
Imports Æther.UI
Imports Æther.UI.UIobjects
Imports System.Threading

Public Class Program

Inherits ÆtherAppBase

Private Shared MainThread As Thread

Private Shared Running As Boolean

Shared Sub Main()

Running = True

MainThread = New Threading.Thread(AddressOf DoMainThread)
MainThread.Start()

End Sub

Private Shared B1 As AEtherButton
Private Shared TX As AEtherTextBox

Private Shared BackgroundColour As AEtherColour = New AEtherColour(24, 45, 228)

Private Shared Sub DoMainThread()

_PrimarySurface = New AEtherSurface
_PrimarySurface.BackgroundColour = BackgroundColour

Const X0 As Single = 0.27!
Const Y0 As Single = 0.35!
Const SX As Single = 0.48!
Const SY As Single = 0.35!

Dim C1 = New AEtherRectangle("Display Background",
New AEtherPoint(X0, Y0),
New AEtherSize(SX, SY),
New AEtherColour(255, 255, 0))
_PrimarySurface.AddControl(C1)

Dim T1 = New AEtherLabel("Time",
New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!),
New AEtherColour(30, 144, 255),
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Centre)
T1.Text = "00:00:00"
_PrimarySurface.AddControl(T1)

Dim Pulse = New AutoResetEvent(False)

Dim S As Stopwatch = New Stopwatch
S.Start()

While Running
Dim CurrentTime As DateTime = DateTime.Now
Dim Seconds As Single = CSng(S.Elapsed.TotalSeconds) * 0.72!
Dim Seconds2 As Single = Seconds * 0.333!
T1.Text = String.Format("{0:HH:mm:ss}", CurrentTime)
C1.Position.X = X0 + CSng(Math.Sin(S.Elapsed.TotalSeconds)) * 0.12!
C1.Position.Y = Y0 - CSng(Math.Cos(S.Elapsed.TotalSeconds)) * 0.12!
C1.FillColour = New AEtherColour(CInt(Math.Abs(Math.Sin(Seconds2) * 255)),
CInt(Math.Abs(Math.Sin(Seconds2 + 0.7!) * 255)),
CInt(Math.Abs(Math.Sin(Seconds2 + 1.5!) * 255)))
T1.FillColour = New AEtherColour(CInt(Math.Abs(Math.Cos(Seconds * 1.5!) * 255)),
CInt(Math.Abs(Math.Cos(Seconds * 1.5! + 0.7!) * 255)),
CInt(Math.Abs(Math.Cos(Seconds * 1.5! + 1.5!) * 255)))
T1.Position = New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!)
RaiseEvent_UpdateSurface()
Pulse.WaitOne(48)
End While

End Sub

Public Shared Shadows Sub EndApp()

Running = False

Debug.Print("End App!")

End Sub

Public Shared Shadows Sub PointerDown()

Debug.Print("Pointer Down!")

End Sub

Public Shared Shadows Sub PointerUp()

Debug.Print("Pointer Up!")

End Sub

End Class

---------- Post added at 10:27 AM ---------- Previous post was at 10:22 AM ----------

ALARM CLOCK APP CODE:

Option Strict On
Option Explicit On

Imports System
Imports System.Threading
Imports Æther
Imports Æther.UI
Imports Æther.UI.UIobjects

Public Class Program

Inherits ÆtherAppBase

Private Shared MainThread As Thread

Private Shared Running As Boolean

Shared Sub Main()

Running = True

MainThread = New Threading.Thread(AddressOf DoMainThread)
MainThread.Start()

End Sub

Private Shared B1 As AEtherButton
Private Shared TX As AEtherTextBox

Private Shared AlarmSet As Boolean = False
Private Shared AlarmTime As DateTime

Private Shared AlarmSetColour As AEtherColour = New AEtherColour(0, 192, 0)
Private Shared AlarmNotSetColour As AEtherColour = New AEtherColour(129, 129, 129)
Private Shared AlarmNotifyColour As AEtherColour = New AEtherColour(255, 0, 0)

Private Shared AlarmButtonSetColour As AEtherColour = New AEtherColour(255, 0, 0)
Private Shared AlarmButtonNotSetColour As AEtherColour = New AEtherColour(192, 48, 48)

Private Shared BackgroundColour As AEtherColour = New AEtherColour(24, 45, 228)
Private Shared BackgroundNotifyColour As AEtherColour = New AEtherColour(255, 0, 0)

Private Shared Sub DoMainThread()

_PrimarySurface = New AEtherSurface
_PrimarySurface.BackgroundColour = BackgroundColour

Const SX As Single = 0.48!
Const SY As Single = 0.35!

'Const SX2 As Single = 0.48!
'Const SY2 As Single = SY * 0.66!

Const X0 As Single = 0.27!

Dim C1 = New AEtherRectangle("Display Background",
New AEtherPoint(X0, 0.15),
New AEtherSize(SX, SY),
New AEtherColour(255, 255, 0))
_PrimarySurface.AddControl(C1)

Dim T1 = New AEtherLabel("Time 1",
New AEtherPoint(C1.Position.X + SX / 2.0!,
C1.Position.Y + SY / 2.0!),
New AEtherColour(30, 144, 255),
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Centre)
T1.Text = "00:00:00"
_PrimarySurface.AddControl(T1)

'C2 = New AEtherRectangle("Display Background 2",
' New AEtherPoint(X0, 0.75),
' New AEtherSize(SX2, SY2),
' AlarmNotSetColour)
'_PrimarySurface.AddControl(C2)

'Dim T2 = New AEtherLabel("Time 2",
' New AEtherPoint(C2.Position.X + SX2 / 2.0!,
' C2.Position.Y + SY2 / 2.0!),
' AlarmNotSetColour,
' "Segoe UI", 35.0!,
' AEtherFontStyle.Bold,
' AEtherTextAlignment.Centre)
'T2.Text = "00:00"
'_PrimarySurface.AddControl(T2)
'AddHandler T2.Focus, AddressOf HandleTextClick1

B1 = New AEtherButton("Button 1",
"Set Alarm",
New AEtherPoint(C1.Position.X + SX / 2.0! - 0.27! / 2.0!,
0.66!),
New AEtherSize(0.27!, 0.084),
AlarmButtonNotSetColour)
AddHandler B1.Focus, AddressOf HandleButton1Down
_PrimarySurface.AddControl(B1)


TX = New AEtherTextBox("TextBox 1",
New AEtherPoint(B1.Position.X - 0.012!,
B1.Position.Y + 0.15!),
New AEtherSize(0.12, 0.012),
AlarmNotSetColour,
"Segoe UI", 35.0!,
AEtherFontStyle.Bold,
AEtherTextAlignment.Left)
TX.Text = "00:00"
_PrimarySurface.AddControl(TX)
AddHandler TX.Focus, AddressOf HandleTextClick1
' AddHandler TX.ValueChanged, AddressOf HandleTextChanged1

Dim Pulse = New AutoResetEvent(False)

While Running
Dim CurrentTime As DateTime = DateTime.Now
T1.Text = String.Format("{0:HH:mm:ss}", CurrentTime)
If AlarmSet AndAlso CurrentTime.Hour = AlarmTime.Hour AndAlso CurrentTime.Minute = AlarmTime.Minute Then
AlarmActivated()
End If
HandleTextChanged1()
RaiseEvent_UpdateSurface()
Pulse.WaitOne(48)
End While

End Sub

Private Shared Sub HandleButton1Down()

ToggleAlarmSet()

End Sub

Private Shared Sub HandleTextClick1()

If Not AlarmSet Then
ToggleAlarmSet()
End If

End Sub

Private Shared Sub HandleTextChanged1()

Static TextChanged As String

If TX.Text <> TextChanged Then
If TX.Text.Length > 3 Then
DateTime.TryParse(TX.Text, AlarmTime)
End If
End If

TextChanged = TX.Text

End Sub

Private Shared Sub ToggleAlarmSet()

AlarmSet = Not AlarmSet

If AlarmSet Then
B1.Text = "Alarm Set"
B1.FillColour = AlarmButtonSetColour
TX.FillColour = AlarmSetColour
Else
B1.Text = "Set Alarm"
B1.FillColour = AlarmButtonNotSetColour
TX.FillColour = AlarmNotSetColour
End If

End Sub

Private Shared Sub AlarmActivated()

Static T As Stopwatch = New Stopwatch

If Not T.IsRunning Then
T.Start()
End If

If CInt(T.Elapsed.Seconds) Mod 2 = 0 Then
_PrimarySurface.BackgroundColour = BackgroundNotifyColour
Else
_PrimarySurface.BackgroundColour = BackgroundColour
End If

End Sub

Public Shared Shadows Sub EndApp()

Running = False

Debug.Print("End App!")

End Sub

Public Shared Shadows Sub PointerDown()

Debug.Print("Pointer Down!")

End Sub

Public Shared Shadows Sub PointerUp()

Debug.Print("Pointer Up!")

End Sub

End Class
1867  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] VIOR | Viorcoin | TEMPORARY THREAD Open Discussion | Voice & Video Call | on: September 19, 2015, 03:01:06 PM
This is serious:

For Viorcoin to survive we need to know what kind of Community Desire, Involvement
and Support we will get.
The Kore Team is tapped out financially on it's projects to take Viorcoin on.
We need to know this will largely be Community driven for us to add Viorcoin to our endeavors.

I apologize for letting this project stagnate for months while we patiently waited for BC's
involvement.
Now that we know that will not happen we can move forward.

Let's get this done. If we don't it surely will be the end of Viorcoin.

Most Sincerely,
MikeMike
1868  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] VIOR | Viorcoin | TEMPORARY THREAD Open Discussion | Voice & Video Call | on: September 19, 2015, 02:22:44 AM
Problems trading at Bittrex!!!!  Angry Angry Angry

I was trading VIOR to make some volume and keep the proyect alive.

The problem was that I sold about 150k VIOR at 159 sat without putting a sell order!!!!!!!!

 Shocked Shocked Shocked Embarrassed Embarrassed Embarrassed Embarrassed Cry Cry Cry Cry Cry Cry

Did anyone get those VIOR??

What happened?HuhHuh?



Sorry to hear.
Were they bought instant or did you leave them there for awhile?

I do not see a buy for 159k.
It should show green if you sold them.
I only see someone sold into a buy order.

So you mean "without putting a BUY order!!!!!!!!"

I see what happened.
There is a seriously sophisticated accumulation bot at work on Viorcoin.




He wanted to sell in his own buy order, but sold coins to someone, who had order at 159 sats.


I was selling into my buying orders, when an expected amount were sold.
snipped...

There is a fast acting bot that puts up buy orders ahead of anyone's and large amounts
as it's based on the size of the buy order and it's super quick.
Either that or it's a person.

Gotta move super quicker from now on...

I feel your pain as I had my entire Vior taken.
1869  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 18, 2015, 12:36:19 PM
I'm still staking, has no power to keep volume on bittrex Sad

I understand and am happy for what you can do.
Keep Staking!
 Smiley
1870  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] VIOR | Viorcoin | TEMPORARY THREAD Open Discussion | Voice & Video Call | on: September 18, 2015, 05:39:32 AM

For those interested in supporting the Viorcoin takeover either in financial support
and/or your skill set please PM me "again".

We need to see what kind of support we will have in taking on this extra endeavor.

Much Thanks!
Sincerely,
MM
1871  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] VIOR | Viorcoin | TEMPORARY THREAD Open Discussion | Voice & Video Call | on: September 18, 2015, 05:34:40 AM

Bitcoin Carpenter cannot run the VoIP business.
We on the Kore Team agreed he was the right person,
were counting on him and waited months for his schedule to free up.
He mentioned he knows his stuff and thinks reviving Viorcoin is a bad
idea as well as the coin does not have enough innovation.

This makes things a bit more complex and difficult as we all do not have
the right experience so will take more time as well as we lost his funding.
One thing we do know is we are looking at some hefty corporate setup costs.
Let alone the coding that needs to be done.

MikeMike
1872  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 18, 2015, 03:57:58 AM
It's getting awwwwfuuuuwwwlllyeeee qwwwiat in heeeaaawwwrrrr!
1873  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] VIOR | Viorcoin | TEMPORARY THREAD Open Discussion | Voice & Video Call | on: September 18, 2015, 12:59:02 AM
Problems trading at Bittrex!!!!  Angry Angry Angry

I was trading VIOR to make some volume and keep the proyect alive.

The problem was that I sold about 150k VIOR at 159 sat without putting a sell order!!!!!!!!

 Shocked Shocked Shocked Embarrassed Embarrassed Embarrassed Embarrassed Cry Cry Cry Cry Cry Cry

Did anyone get those VIOR??

What happened?HuhHuh?



Sorry to hear.
Were they bought instant or did you leave them there for awhile?

I do not see a buy for 159k.
It should show green if you sold them.
I only see someone sold into a buy order.

So you mean "without putting a BUY order!!!!!!!!"

I see what happened.
There is a seriously sophisticated accumulation bot at work on Viorcoin.



1874  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 13, 2015, 03:06:45 AM


Watch out! Siri and A.I. helpers may broadcast all your secrets!

https://www.youtube.com/watch?v=u-cJ43HjlH0
1875  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 12, 2015, 12:09:27 PM


Update on the Æther OS work:

http://forum.xda-developers.com/showpost.php?p=62784249&postcount=102
1876  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 12, 2015, 03:45:41 AM
 "This market is in danger of de-listing due to low trade volume and lack of user interest.
It may be removed on Sept 18th unless the average daily trade volume for the last 7 days exceeds 0.2"

IF we lose Bittrex we could lose Korecoin.
 
1877  Bitcoin / Hardware / Re: [Guide] Dogie's Comprehensive Bitmain Antminer S4 Setup [HD] on: September 10, 2015, 01:20:42 PM
Could anyone help me locate which chain number 3 is of the four boards on the s4? Is it upper or lower and is it near the power supply?

 much thanks in advance :-)
1878  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 09, 2015, 11:18:22 PM
Jea Mike buttttttt....what about some updates..... some progres....i mean how long do you think people can belief in you or in kore  or in vior if there are just promises.....you are sure you are not a politician? Sorry for getting a bit pici but after eurobits left there is no made one stepp ...i know i know eurobits....but he made some progress with the coin

All the best Wink




....if i would saw some progress i would donate ....

I feel your pain. Concerning the old Dev regardless of what he did; he is a thief, liar and a con artist. Nearly every single scam coin had some success with tech implementation. For a plethora of reasons devs abandon coins and communities. Nearly all do so in a corrupt way.

Maybe some day we could open just a few of the numerous private slack chat rooms to give a glimpse at the countless hours of doing what it takes to do it right. ...
We could have taken over the coin with a new OP page at the least or put out a cheap fork in a matter of a few weeks.
We were left with a horrendous mess in code. We decided to do it right, what is in the end result best for Korecoin and the Community.

Many of us/The Kore Team got hit hard in one and sometimes numerous areas and are still doing all we can.  If it was about money most would be long gone. Between scam coins, 3 exchanges and a hack I lost 95% of my btc. Anything I do is a sacrifice.

Progress is in the coders hands. They completed one integration. Now working on the mining code.

I will offer to match whatever you decide to donate.
Think carefully before you donate.
This is an opportunity to better Korecoin and all the projects.

For ALL others who donate I will match all donations by 1/3.
If you donate .1BTC I will donate .0334BTC and so on...
 Wink
Sincerely,
MikeMike
1879  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★ KoreCoin v2.0 ★★ [KORE]New ERA - VOIP WALLET -100% ANON - 100% PoS - PoBAnon on: September 09, 2015, 02:51:50 AM
please stake your wallet....
Kore needs volume at Trex.
Can't emphasize this enough.
Without Trex Kore will  have a most difficult time recovering.
Take a few min of your day and create daily volume.

Between 7 and 30 hours a week are spent on Korecoin.
It would be nice not to have to worry about the volume
knowing the Community is taking up that responsibility.


MikeMike

1880  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] World Trade Funds [XWT] | **NEW ROADMAP** | ANNOUNCED DEC 9 2014 | on: September 06, 2015, 04:41:14 AM
This project had some decent ideas a tech.
Will have to look into it.

If there's someone working on this coin let me know.
If there is a team for this coin please PM me.
EDIT:
Especially if anyone working on this project is
a .NET Coder.

MikeMike

I left this coin.
It was recommended to me by a friend or what I thought was a friend.
As you may be aware the Kore Team has taken over Korecoin and a new wallet
is being worked on.

I personally had plans for this coin and it could have been
very useful for many of our ideas.
Since the devs here have never responded I had sold the remaining coins
and now put my support fully behind two projects and coins that are meeting
our original desired goals.

One is Cerium - XCE.
The other is Global - GLOBE.
I like what I see and trust those working with and on these coins.

Cheers!
 Smiley

Pages: « 1 ... 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 [94] 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 ... 179 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!