Author

Topic: ☑ API'S * Bounties for Apps of All Types *CALLING All MOBILE APP Coders ⚠⚠⚠ (Read 8563 times)

legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★

Any APP takers?
A few have replied PM that they were going to develop some apps for the bounties.
I know life happens so am bumping a reminder...
 Cheesy
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
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
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★

★  TAKE THE POLL!  ★

 

This is a very important part of the process to meet user needs and wants
which could greatly impact public adoption. It only takes a minuet.  Smiley

We want to know your thoughts on the most important features
you deem necessary to get you to switch Mobile Devices.
We value your contribution in being part of the poll and in the development
of the KorePhone's Æther OS.

http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802


legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
Bump... App coders needed!
Inquire within.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
This Æther OS Thread has been slacking for too long.

Needs some FIRE to liven it up...


 Wink



legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


Hey, if you have time, can you make a smartphone app for smartcoin?

We have plans for Korephone's Æther OS to accommodate various options.
 Smiley

Lack of Ethical Coders has slowed us down and a change in security coding
taking much longer than expected but we are getting near to start testing...
sr. member
Activity: 448
Merit: 250


Hey, if you have time, can you make a smartphone app for smartcoin?
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
To ALL Mobile APP and .NET Coders:
We are having a private meeting in Mumble on 4-15-2015 at 6:30pm Eastern Time.
PM me for the private chat room and password.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
Why Æther OS has been developed: ☑
https://www.youtube.com/watch?v=yy8r8TPiajA

‘Most hackers are good people’ – fmr spy, author on cyber-attacks & NSA

Big Up Mike!  Smiley

We too on an extra 4-6 weeks security coding job that will aid the Aether OS and
anything else we do.

It will be huge when we are done.
in time slowly all the pieces will fit together.
 Smiley
hero member
Activity: 728
Merit: 500
Why Æther OS has been developed: ☑
https://www.youtube.com/watch?v=yy8r8TPiajA

‘Most hackers are good people’ – fmr spy, author on cyber-attacks & NSA

Big Up Mike!  Smiley
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
Why Æther OS has been developed: ☑
https://www.youtube.com/watch?v=yy8r8TPiajA

‘Most hackers are good people’ – fmr spy, author on cyber-attacks & NSA
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
1-30-15

We have added a huge coding task to the mix which has caused a delay in the hardware rendering and integration.
Soon as this security related coding endeavor is completed the hardware rendering will commence.
An update will follow when this transition happens.
sr. member
Activity: 475
Merit: 250
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
We are working on a Bitcoin Wallet translation for the Æther OS.
 Cool
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
1-6-15

Æther OS incorporates seamless Tor and VPN privacy protections. Developers need code only with similar objects and classes they are already familiar with within the .NET/Mono API and Æther takes care of the rest; however, this is merely the first implementation of the privacy layer and more seamless protections are being planned to be added: For example, what we shall refer to at present as "Tor 2.0" will add additional security and privacy protections to the platform and apps running on it.

NOTE: To Counteract the typical,...More than one person is in possession of the Source Code.
 Wink



Bump...
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
As per the XDA Developers Forums:

A concern was addressed being the code used to be written with the unique character "Æ" as in the word Æther OS



Quote from: vishalbiswas;57691604
Or you could do this.
Whatever plugin or IDE you decide to make you can add a feature which will automatically replace capital AE at the start of a word to that character as you continue typing.

Sent from my Nokia_XL

This suggestion has been implemented with a fix.
Thanks for your input.
Smiley
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
1-6-15

Æther OS incorporates seamless Tor and VPN privacy protections. Developers need code only with similar objects and classes they are already familiar with within the .NET/Mono API and Æther takes care of the rest; however, this is merely the first implementation of the privacy layer and more seamless protections are being planned to be added: For example, what we shall refer to at present as "Tor 2.0" will add additional security and privacy protections to the platform and apps running on it.

NOTE: To Counteract the typical,...More than one person is in possession of the Source Code.
 Wink

legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


Looks like just about ALL API's are completed.
 Smiley
UPDATE Soon...


YES!!!!
1-5-15 SDK UPDATE:
New Release Additions:

All necessary APIs required in order to write 99% of apps is now complete.

+ Video Input (input as webcam for emulation purposes)
+ Audio Output
+ Example app (including course code) showcases video input (as a box that can be moved around with the pointer) and audio output by audio generation when buttons are clicked.
+ Fully transparent Tor- and VPN-targeted classes which can be used (as alternatives) to the standard .NET implementations (e.g. AEtherSocket.) Full backend Tor and VPN infrastructure will be implemented on the device. For now the classes are there to be the methods and code building blocks by which seamless TCP security operations will take place in future, on the KOREphone.
+ Bug fixes

Æther SDK 0.3 Installer:
https://mega.co.nz/#!uRlHAaKS!Wzw8Q_0UhxMXFQN31NqnH5PMTAx1kDSpz29uKn0yeM8

All necessary APIs required in order to write 99% of apps is now complete (the exception being some games and apps that do 3D graphics.) Any extras which may be required will be added by request from any devs writing apps, of course.

The hardware rendering infrastructure is next, followed by hardware integration. In the meantime devs have essentially everything they would need in order to write their apps.

FYI: Attached is a summary of the OS components, it’s currently at just under 17K lines of code. That’s a lot more actual code; I’ve still yet to determine exactly how much that is but it’s easily double or triple the number.
hero member
Activity: 728
Merit: 500


Looks like just about ALL API's are completed.
 Smiley
UPDATE Soon...


YES!!!!
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


Looks like just about ALL API's are completed.
 Smiley
UPDATE Soon...
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I want to help even with kernel/system development, any chance that you can provide me more details?


Hi KR,
 Smiley
Hope you and yours are well.

Please see your PM.

MM
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
____________________________________________________________________
12-23-14 Mandatory Update:

Combined and updated SINGLE DOWNLOAD Link:

 Cool
https://mega.co.nz/#!GI1H3IyI!v1GY3jSKnIkJfmQQV7bWEjwYNDL5pz7jUNMXu5P0Mlg
"I've made an installer, which takes care of stuff like adding assemblies to the GAC (so you don't need to do it manually).
[Which I tried to post here but the forum won't allow me to post links yet. I will ask HD2 to post it for me.]

The folders will go to the "Program Files (x86)" folder and a standalone emulator icon should be found on your Start Menu after the installation.

There are both C# and VB.NET Hello World examples with some added code demonstrating how to receive some events from the OS, such as "pointer down" and "pointer up" events, and "end app" event, delivered to the methods going by those names.

More to come within the next few days"
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★



Please use this link below for the new API Download and delete the old one you may have downloaded in the last day.


____________________________________________________________________
12-22-14


Updated API's, SDK, Documentation, Libraries, Explanations and Emulator info.
https://mega.co.nz/#!2AswGBKL!pXYsEs8jFVNbrq3PUlAwI57PYrOHTa0jnlGGwDnkn7w
INSTALLER:
https://mega.co.nz/#!GI1H3IyI!v1GY3jSKnIkJfmQQV7bWEjwYNDL5pz7jUNMXu5P0Mlg
"I've made an installer, which takes care of stuff like adding assemblies to the GAC (so you don't need to do it manually).
[Which I tried to post here but the forum won't allow me to post links yet. I will ask HD2 to post it for me.]

The folders will go to the "Program Files (x86)" folder and a standalone emulator icon should be found on your Start Menu after the installation.

There are both C# and VB.NET Hello World examples with some added code demonstrating how to receive some events from the OS, such as "pointer down" and "pointer up" events, and "end app" event, delivered to the methods going by those names.

More to come within the next few days"



Cool, I'm on holiday but when I get back I will get started doing dev stuff.
VTX,

Glad to have you aboard!
Enjoy!

MM
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad



MANDATORY UPDATE!

Please use this link below for the new API Download and delete the old one you may have downloaded in the last day.


____________________________________________________________________
12-22-14


Updated API's, SDK, Documentation, Libraries, Explanations and Emulator info.
https://mega.co.nz/#!2AswGBKL!pXYsEs8jFVNbrq3PUlAwI57PYrOHTa0jnlGGwDnkn7w
INSTALLER:
https://mega.co.nz/#!GI1H3IyI!v1GY3jSKnIkJfmQQV7bWEjwYNDL5pz7jUNMXu5P0Mlg
"I've made an installer, which takes care of stuff like adding assemblies to the GAC (so you don't need to do it manually).
[Which I tried to post here but the forum won't allow me to post links yet. I will ask HD2 to post it for me.]

The folders will go to the "Program Files (x86)" folder and a standalone emulator icon should be found on your Start Menu after the installation.

There are both C# and VB.NET Hello World examples with some added code demonstrating how to receive some events from the OS, such as "pointer down" and "pointer up" events, and "end app" event, delivered to the methods going by those names.

More to come within the next few days"



Cool, I'm on holiday but when I get back I will get started doing dev stuff.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


Please use this link below for the new API Download and delete the old one you may have downloaded in the last day.


____________________________________________________________________
12-22-14


Updated API's, SDK, Documentation, Libraries, Explanations and Emulator info.
https://mega.co.nz/#!2AswGBKL!pXYsEs8jFVNbrq3PUlAwI57PYrOHTa0jnlGGwDnkn7w
INSTALLER:
https://mega.co.nz/#!GI1H3IyI!v1GY3jSKnIkJfmQQV7bWEjwYNDL5pz7jUNMXu5P0Mlg
"I've made an installer, which takes care of stuff like adding assemblies to the GAC (so you don't need to do it manually).
[Which I tried to post here but the forum won't allow me to post links yet. I will ask HD2 to post it for me.]

The folders will go to the "Program Files (x86)" folder and a standalone emulator icon should be found on your Start Menu after the installation.

There are both C# and VB.NET Hello World examples with some added code demonstrating how to receive some events from the OS, such as "pointer down" and "pointer up" events, and "end app" event, delivered to the methods going by those names.

More to come within the next few days"


legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
UPDATE:

____________________________________________________________________
12-22-14


Updated API's, SDK, Documentation, Libraries, Explanations and Emulator info.

https://mega.co.nz/#!2AswGBKL!pXYsEs8jFVNbrq3PUlAwI57PYrOHTa0jnlGGwDnkn7w

EDIT:
See updated download link.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★

The new API's actually encompassing nearly ALL API's will accompany the next release on 12-22 or 12-23-14.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★

More API's Completed:


+ GPS

+ Gyroscope

+ Accelerometer

+ ÆtherTextBox

Plus a bug or two fixed!


http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★

Here is the Initial Introduction and essential API's and working Emulator. RE: the Components of the SDK.
This is undeniable evidence the Æther Kripton Mobile OS has been coded.
 Smiley
Detailed Explanation being compiled...

https://mega.co.nz/#!qFlRkTpQ!Yn64mclLI4LnFz7iPYowf4LoJMBjOwch-egT3ueg4i8

Details are in the included NotePad File.

Cheers!
 Smiley

MM
full member
Activity: 206
Merit: 100
___________________________________________________
12-13-14

Release date for Essential API's, SDK and Documentation:
12-15-14

 Cool
________

nice waiting for tomorrow Smiley)
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
___________________________________________________
12-13-14

Release date for Essential API's, SDK and Documentation:
12-15-14

 Cool
________
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
KOREPHONE CODER UPDATE:

The Coder putting together the app package has been experiencing rolling power outages
that's been disrupting his work the last few weeks.
He spent last few days researching and going into town to get a fairly large UPS and a 102ah Battery
giving him a considerable amount of time. Well over 6 hours backup.


The release date for the API's, SDK and Documentation is the 15th.
Soon as these are released the app coders can all get started and we can move onto hardware integration.
Though they could have it finished in next few days he's going to wire that set up for when the power goes out.
Better to have a date they could easily make.

If it's completed earlier it will be posted earlier.
 Smiley
Sincerely,
MM
hero member
Activity: 728
Merit: 500
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


The Æther Krypton OS is NOT an Android fork.
 Smiley



http://i.imgur.com/95kJAnN.png


legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
Is this OS based on another open source OS like Android?
If your answer is "no":
  • Why don't you use Android? Look at MIUI, they are billion dollar company.
  • If you run it in an emulator, how will you check "hardware" stuff? Example : Music Player, GPS...
Also I think you should increase the amount of bounties.

Good luck.

Thanks for you questions and suggestions.

If it's based on the Android then we will lose the control over the security features.
The Emulator is the standard method and specifically designed to generally be workable on hardware.
IF there need be an increase in Bounties we can change that.

Please follow us and post all questions on the XDA Forums so we can consolidate
on that Professional Smart Phone Coders Forum.

Cheers!

MM

XDA Developers Link:
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802


newbie
Activity: 21
Merit: 0
Is this OS based on another open source OS like Android?
If your answer is "no":
  • Why don't you use Android? Look at MIUI, they are billion dollar company.
  • If you run it in an emulator, how will you check "hardware" stuff? Example : Music Player, GPS...
Also I think you should increase the amount of bounties.

Good luck.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I can Help you out,mplease send a reminder mail at [email protected]
So I can kickstart things tomorrow afternoon.

Thanks,

Please sign up and post on the XDA Forums and ask for email notifications so I can contact you through there.
It makes it much easier.
Thanks for offering!
 Smiley
MM
hero member
Activity: 854
Merit: 500
I can Help you out,mplease send a reminder mail at [email protected]
So I can kickstart things tomorrow afternoon.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


BELOW is a Quote from the Dev coding this project they posted on the XDA Forums.
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802



snipped....


Quote from: Elemental 12;57180570
I'm the Dev for this project.  For anyone who might be interested, here is some sample code for a simple app (the "Hello World" app.)

APIs are being worked on.  So far there are some essential data types and GUI objects.  Things are still in early stages of development although the OS is working well enough to be able to write apps with rudimentary GUI features thus-far.  MUCH more to come.

snipped....

}
[/B]


yesssssss, it's in Java!

Hiya Vortex,

Could you post on the XDA Developers Forums.
We'd like to continue the conversation mainly there.
 Smiley
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


IMPORTANT UPDATE:


The code is progressing nicely over 7,400 lines at present.


We are migrating all questions and answers over to the XDA Developers Forums - Aether OS thread.
The DEV will only be posting on the XDA forums.

Could you please create an account there and post your questions and responses there
which will aid in proper responses and access to information and answers.


We are signing up to at least a half dozen or more other App Coder Forums
and be asking them to migrate to XDA as well.


This thread will still be updated on the progress but the main communications
between us all will be on XDA.


Please make your nick the same or close is possible...

Thanks for all your excellent questions and supporting this project!
 Smiley

XDA Developers Link:

http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802


legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


BELOW is a Quote from the Dev coding this project they posted on the XDA Forums.
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802



snippred...


Quote from: Elemental 12;57180570
I'm the Dev for this project.  For anyone who might be interested, here is some sample code for a simple app (the "Hello World" app.)

APIs are being worked on.  So far there are some essential data types and GUI objects.  Things are still in early stages of development although the OS is working well enough to be able to write apps with rudimentary GUI features thus-far.  MUCH more to come.

Stay tuned.  Smiley


public:
class Program
{

static Thread MainThread;

static void Main()
{
   MainThread = new Thread(DoMainThread);
   MainThread.Start();

}

static void DoMainThread()
{
snipped...
      Pulse.WaitOne(48);
   }

}


yesssssss, it's in Java!


The code is progressing nicely over 7,400 lines at present and should be releasing
some essential API's, Documentation and basic SDK within the next week at earliest.


We are migrating all questions and answers over to the XDA Developers Forums Aether OS thread.
Could you please create an account there and post your questions and responses there

which will aid in proper responses and access to information and answers.

We are signing up to at least a half dozen or more other App Coder Forums
and be asking them to migrate to XDA as well.

This thread will still be updated on the progress but the main communications
between us all will be on XDA.

Please make your nick the same or close is possible...

Thanks for all your excellent questions and supporting this project!
 Smiley

XDA Developers Link:
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
legendary
Activity: 1582
Merit: 1001
Mike..

This is fantastic.
I will be following all the development and love what you guys have got going here.
newbie
Activity: 56
Merit: 0
BELOW is a Quote from the Dev coding this project they posted on the XDA Forums.

snipped...

Quote from: Elemental 12;57180570
I'm the Dev for this project.  For anyone who might be interested, here is some sample code for a simple app (the "Hello World" app.)

APIs are being worked on.  So far there are some essential data types and GUI objects.  Things are still in early stages of development although the OS is working well enough to be able to write apps with rudimentary GUI features thus-far.  MUCH more to come.

Stay tuned.  Smiley


public:
class Program
{

static Thread MainThread;

static void Main()
{
   MainThread = new Thread(DoMainThread);
   MainThread.Start();

snipped...

}



No Alpha Channels? (r,g,b,a)
Also, I have noticed that you have put up some generous bounties for software that can be built within minutes.
Why?
Sorry, but you claim to have more or less built an NSA hack-proof (if I may call it that) OS yet you are offering generous bounties for something very simple.
(Obviously promotion is a major part here, I can understand that).
Shouldn't your team be offering bounties for replacements of software of the likes of TOR (which have been back-doored ages ago?)?

snipped...

Thank you Smiley

A TOR replacement.
That's an awesome idea that many are trying to resolve and I presume someone of your caliber can do it.
Sure we'd offer a bounty for that.


No need to be sarcastic bro Smiley
I know it is a problem that has been around for a while Smiley

And obviously I am not the one to collect that specific bounty, but my offer still stands....
if you can provide Flash Platform support I will convert my games and also ask all my buddies to do the same.

That being said, how do you plan on adding "revenue" support?
Basically, can you find something similar (if not the same) like adSense, adMob, etc?

For sure I will publish all my stuff for your platform, just like I did with everyone else....
however everyone else had some kind of support for me to "monetize" my publishing.

Have you had any kind of contact with similar services?
Adbit for example? - don't know them btw just the first thing that popped on my mind that is similar to adSense yet is BTC based.

Sorry, I know that this is way ahead right now, but you did mention that you want a game right?  Roll Eyes

Anyways, I will be following this thread.
Thank you for posting this Smiley
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
BELOW is a Quote from the Dev coding this project they posted on the XDA Forums.

snipped...

Quote from: Elemental 12;57180570
I'm the Dev for this project.  For anyone who might be interested, here is some sample code for a simple app (the "Hello World" app.)

APIs are being worked on.  So far there are some essential data types and GUI objects.  Things are still in early stages of development although the OS is working well enough to be able to write apps with rudimentary GUI features thus-far.  MUCH more to come.

Stay tuned.  Smiley


public:
class Program
{

static Thread MainThread;

static void Main()
{
   MainThread = new Thread(DoMainThread);
   MainThread.Start();

snipped...

}



No Alpha Channels? (r,g,b,a)
Also, I have noticed that you have put up some generous bounties for software that can be built within minutes.
Why?
Sorry, but you claim to have more or less built an NSA hack-proof (if I may call it that) OS yet you are offering generous bounties for something very simple.
(Obviously promotion is a major part here, I can understand that).
Shouldn't your team be offering bounties for replacements of software of the likes of TOR (which have been back-doored ages ago?)?

snipped...

Thank you Smiley

A TOR replacement.
That's an awesome idea that many are trying to resolve and I presume someone of your caliber can do it.
Sure we'd offer a bounty for that.

newbie
Activity: 56
Merit: 0
hero member
Activity: 728
Merit: 500
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★


BELOW is a Quote from the Dev coding this project they posted on the XDA Forums.
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802





Quote from: Elemental 12;57180570
I'm the Dev for this project.  For anyone who might be interested, here is some sample code for a simple app (the "Hello World" app.)

APIs are being worked on.  So far there are some essential data types and GUI objects.  Things are still in early stages of development although the OS is working well enough to be able to write apps with rudimentary GUI features thus-far.  MUCH more to come.

Stay tuned.  Smiley


public:
class Program
{

static Thread MainThread;

static void Main()
{
   MainThread = new Thread(DoMainThread);
   MainThread.Start();

}

static void DoMainThread()
{
   _PrimarySurface = new ÆtherSurface();
   _PrimarySurface.BackgroundColour = new ÆtherColour(138, 45, 228);

   const float S = 0.48f;

   var C1 = new ÆtherEllipse("Yellow Circle 1", new ÆtherPoint(0, 0), new ÆtherSize(S, S), new ÆtherColour(255, 255, 0));
   _PrimarySurface.AddControl(C1);

   var T1 = new ÆtherLabel("Label 1", new ÆtherPoint(), new ÆtherColour(30, 144, 255), "Segoe UI", 35f, ÆtherFontStyle.Bold, ÆtherTextAlignment.Centre);
   T1.Text = "Hello";
   _PrimarySurface.AddControl(T1);

   var T2 = new ÆtherLabel("Label 2", new ÆtherPoint(), new ÆtherColour(30, 144, 255), "Segoe UI", 35f, ÆtherFontStyle.Bold, ÆtherTextAlignment.Centre);
   T2.Text = "World!";
   _PrimarySurface.AddControl(T2);

   var Pulse = new AutoResetEvent(false);

   while (true) {
      C1.Position.X = _PointerInfo1.Position.X - S * 0.5f;
      C1.Position.Y = _PointerInfo1.Position.Y - S * 0.5f;
      T1.Position.X = _PointerInfo1.Position.X;
      T1.Position.Y = _PointerInfo1.Position.Y - 0.06f;
      T2.Position.X = _PointerInfo1.Position.X;
      T2.Position.Y = _PointerInfo1.Position.Y + 0.06f;
      RaiseEvent_UpdateSurface();
      Pulse.WaitOne(48);
   }

}

legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
Bump...
Please list the apps you'd consider working on.
Thanks!
 Smiley
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★

XDA Developers Forum Thread Listing.
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802

If you have an account please make a post and include your nick from this Forum.
If not please create an account and use the XDA Forum Thread
after you sign up here for your apps, other services or contributions.
Please remember to make a post and include your nick from this Forum.  


  
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I'd honestly really love to help but without a software development kit i can't.

We appreciate your desire however are constrained to the dates mentioned in the OP.
It's our endeavor that soon as parts of the API Reference completed
we have the coders already lined up ready to go.
The wait won't be much longer.
sr. member
Activity: 322
Merit: 250
Sound Engineer for Hire
I'd honestly really love to help but without a software development kit i can't.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
snipped...

Quote
PHPBB on a $7.99 Namecheap shared hosting and a ~$12 domain, if you want to pay with BTC.

PHPBB on a $5 DigitalOcean VPS and a ~$12 domain, if you don't mind paying with PayPal.

If need be the Forum will be selected to closely match XDA's forum
so that any migrating coders will feel at home.

XDA FORUMS THEME:
http://forum.xda-developers.com/
Thread Theme:
http://forum.xda-developers.com/android/software/gapps-google-apps-minimal-edition-t2943330


The PHPBB pro looks good.
https://www.phpbb.com/community/viewtopic.php?f=185&t=2277141
http://comboot.de/demo/free/


Thanks for your help.
 Smiley


Another nice free forum software provider, if you're interested, is Zetaboards. I used it in high school for a club, and it functioned fine

Thanks and I like the options they have.
We are contemplating the migration of the Forum into a website in the future
so it may pay to PAY for our own unless they give you that option which I have not yet seen it.



If you need any help managing a forum, I'd be happy to help!

I sent a PM to one of the XDA Admins and hope to hear back.
I may try to create a developers thread if they allow me with
an old many years old account of mine since you do need some history.
This way that special thread could be migrated to the front page next to
the other OS's.

Either way, YES we could use help in all aspects and would have the ability
to make you an Admin on the XDA Forums thread.
Thanks for your interest  and offer!

MM
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I want to help even with kernel/system development, any chance that you can provide me more details?

I will forward this and get an answer for you.
Hope we can work together.

My next meeting is Sunday Evening so if there's any other questions
fire away so I can get them all answered for you.

They will be posted hopefully Sunday Evening however time zones could make that Monday.
IF I get answers earlier you will know.

MM
sr. member
Activity: 1456
Merit: 326
Eloncoin.org - Mars, here we come!
snipped...

Quote
PHPBB on a $7.99 Namecheap shared hosting and a ~$12 domain, if you want to pay with BTC.

PHPBB on a $5 DigitalOcean VPS and a ~$12 domain, if you don't mind paying with PayPal.

If need be the Forum will be selected to closely match XDA's forum
so that any migrating coders will feel at home.

XDA FORUMS THEME:
http://forum.xda-developers.com/
Thread Theme:
http://forum.xda-developers.com/android/software/gapps-google-apps-minimal-edition-t2943330


The PHPBB pro looks good.
https://www.phpbb.com/community/viewtopic.php?f=185&t=2277141
http://comboot.de/demo/free/


Thanks for your help.
 Smiley


Another nice free forum software provider, if you're interested, is Zetaboards. I used it in high school for a club, and it functioned fine

Thanks and I like the options they have.
We are contemplating the migration of the Forum into a website in the future
so it may pay to PAY for our own unless they give you that option which I have not yet seen it.



If you need any help managing a forum, I'd be happy to help!
hero member
Activity: 938
Merit: 501
I want to help even with kernel/system development, any chance that you can provide me more details?
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
snipped...

Quote
PHPBB on a $7.99 Namecheap shared hosting and a ~$12 domain, if you want to pay with BTC.

PHPBB on a $5 DigitalOcean VPS and a ~$12 domain, if you don't mind paying with PayPal.

If need be the Forum will be selected to closely match XDA's forum
so that any migrating coders will feel at home.

XDA FORUMS THEME:
http://forum.xda-developers.com/
Thread Theme:
http://forum.xda-developers.com/android/software/gapps-google-apps-minimal-edition-t2943330


The PHPBB pro looks good.
https://www.phpbb.com/community/viewtopic.php?f=185&t=2277141
http://comboot.de/demo/free/


Thanks for your help.
 Smiley


Another nice free forum software provider, if you're interested, is Zetaboards. I used it in high school for a club, and it functioned fine

Thanks and I like the options they have.
We are contemplating the migration of the Forum into a website in the future
so it may pay to PAY for our own unless they give you that option which I have not yet seen it.

sr. member
Activity: 1456
Merit: 326
Eloncoin.org - Mars, here we come!
snipped...

Quote
PHPBB on a $7.99 Namecheap shared hosting and a ~$12 domain, if you want to pay with BTC.

PHPBB on a $5 DigitalOcean VPS and a ~$12 domain, if you don't mind paying with PayPal.

If need be the Forum will be selected to closely match XDA's forum
so that any migrating coders will feel at home.

XDA FORUMS THEME:
http://forum.xda-developers.com/
Thread Theme:
http://forum.xda-developers.com/android/software/gapps-google-apps-minimal-edition-t2943330


The PHPBB pro looks good.
https://www.phpbb.com/community/viewtopic.php?f=185&t=2277141
http://comboot.de/demo/free/


Thanks for your help.
 Smiley


Another nice free forum software provider, if you're interested, is Zetaboards. I used it in high school for a club, and it functioned fine
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
snipped...

Quote
PHPBB on a $7.99 Namecheap shared hosting and a ~$12 domain, if you want to pay with BTC.

PHPBB on a $5 DigitalOcean VPS and a ~$12 domain, if you don't mind paying with PayPal.

If need be the Forum will be selected to closely match XDA's forum
so that any migrating coders will feel at home.

XDA FORUMS THEME:
http://forum.xda-developers.com/
Thread Theme:
http://forum.xda-developers.com/android/software/gapps-google-apps-minimal-edition-t2943330


The PHPBB pro looks good.
https://www.phpbb.com/community/viewtopic.php?f=185&t=2277141
http://comboot.de/demo/free/


Thanks for your help.
 Smiley


hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
I can provide hosting for a KorePhone forum (if needed).

Perfect timing.

Just checked in.

Do you have the Forum Software itself or can you provide some suggestions
on which is a decent clean simple to organize and use Forum Platform.
PHPBB and Simple Machines are two decent open-source and free forums.

If you are willing to spend IPforum is an even better choice, but expensive at that.

Could you provide reasonably middle of the road priced best option suggestions.
PHPBB on a $7.99 Namecheap shared hosting and a ~$12 domain, if you want to pay with BTC.

PHPBB on a $5 DigitalOcean VPS and a ~$12 domain, if you don't mind paying with PayPal.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I can provide hosting for a KorePhone forum (if needed).

Perfect timing.

Just checked in.

Do you have the Forum Software itself or can you provide some suggestions
on which is a decent clean simple to organize and use Forum Platform.
PHPBB and Simple Machines are two decent open-source and free forums.

If you are willing to spend IPforum is an even better choice, but expensive at that.

Could you provide reasonably middle of the road priced best option suggestions.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
I can provide hosting for a KorePhone forum (if needed).

Perfect timing.

Just checked in.

Do you have the Forum Software itself or can you provide some suggestions
on which is a decent clean simple to organize and use Forum Platform.
PHPBB and Simple Machines are two decent open-source and free forums.

If you are willing to spend IPforum is an even better choice, but expensive at that.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I can provide hosting for a KorePhone forum (if needed).

Perfect timing.

Just checked in.

Do you have the Forum Software itself or can you provide some suggestions
on which is a decent clean simple to organize and use Forum Platform.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
I can provide hosting for a KorePhone forum (if needed).
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I can help out with this Smiley

I'll be editin this post in a few

EDIT:
wait a minute
what language is this?
A: Details are yet to be announced.

Thanks and further details will be posted on the thread when available.
 Smiley

legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
what do we export it to?


I mean, android is based on Java but they have an SDK
and it exports to .APK



Thanks.
I will have a detailed answer for you within 8-24 hours.

One thing I can tell you is we are breaking new ground.

I'll get started once you give the full details!

Regards,
SirLolicon

OP Updated.
Thanks.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I can help out with this Smiley

I'll be editin this post in a few

Sweet!
Will keep an eye out for the additions.

EDIT:
OP Updated.
Thanks.
sr. member
Activity: 322
Merit: 250
Sound Engineer for Hire
I can help out with this Smiley

I'll be editin this post in a few

EDIT:
wait a minute
what language is this?
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
We are in the process of requesting a separate Æther OS section on the XDA Forums.

The thread will be notified the outcome and if we cannot work something out there
we will create our own unique Æther OS Developers Forum.


"Hi,

A new phone OS has been developed.

We are requesting it be listed as:

Æther OS

Could it be listed in it's above unique form.

Sincerely,

"
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
This'd be a HUGE app (size-wise) if you were to implement all these features...

The KorePhone Æther OS Developers know what we are doing and where we are going.
This is the ground floor.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
I can easily do a calculator app and the web browser.

Bounties = HELL yeah!

Perfect.

Welcome Aboard!

I will post to ALL those signing up notifying you of any updates regarding the particular Apps you signed up for.
Also we are open to "Useful Variations" of the same APP.

Example:
A basic Calculator and a Scientific Calculator.

IF you have specific APPS you've developed and would like to see them
on the Æther OS please advise.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
I can easily do a calculator app and the web browser.

Bounties = HELL yeah!
sr. member
Activity: 1456
Merit: 326
Eloncoin.org - Mars, here we come!
This'd be a HUGE app (size-wise) if you were to implement all these features...
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
Fix the typo in the thread title pls, it bugs me. So it's a platform; what's its intended purpose?


It will revolutionize Smart Phones.
Will post all info in next few min...

Revolutionize is a big word. Interesting concept though; best of luck! I may decide to join in on the mobile coding, if you have a tremendous deficit of coders.


Revolutionary it will be in every aspect.
 Wink


Your and others help to get this moving will be most appreciated
and will land you the position of Æther "Gurus".

You will find it most pleasant to work with and having an example
will help boost interest.

Please stay tuned...

EDIT:
List of Apps to follow in a few min...


sr. member
Activity: 1456
Merit: 326
Eloncoin.org - Mars, here we come!
Fix the typo in the thread title pls, it bugs me. So it's a platform; what's its intended purpose?


It will revolutionize Smart Phones.
Will post all info in next few min...

Revolutionize is a big word. Interesting concept though; best of luck! I may decide to join in on the mobile coding, if you have a tremendous deficit of coders.
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
Fix the typo in the thread title pls, it bugs me. So it's a platform; what's its intended purpose?


It will revolutionize Smart Phones.
Will post all info in next few min...
Thanks for noticing.
sr. member
Activity: 1456
Merit: 326
Eloncoin.org - Mars, here we come!
Fix the typo in the thread title pls, it bugs me. So it's a platform; what's its intended purpose?
legendary
Activity: 2254
Merit: 1020
★ Ⓚ KORE TEAM Ⓚ ★
special request: For a Live Streaming Video APP, ASAP.
BUT all types of apps needed.

XDA Developers Forum Thread Listing.
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802

If you have an account please make a post and include your nick from this Forum.
If not please create an account and use the XDA Forum Thread
after you sign up here for your apps, other services or contributions.
Please remember to make a post and include your nick from this Forum.                                

We've developed a new Smart Phone OS called Æther v 0.1 Krypton.

It's a unique code you will find easy and very efficient to work with.

We're looking to attract quality individuals/coders who will want
to be involved at the ground floor of a new game changing
impervious platform unique to the korephone.

This is a rare opportunity.
Working with us here where it's starting will earn you an Æther "Guru status"
since you are the first and will be the most knowledgeable.

The API Reference is under development and will be posted in increments.

We have a list of Apps we'd like to see first, are listed below
including their Bounties and we are open to recommendations.
Updates will follow as progress is made and will be often, daily to weekly.
IF you have specific APPS you've developed and would like to see them
on the Æther OS please advise.

Please familiarize yourself with what we have up till today and check back often.
Let's DO THIS!
 Smiley

QUESTIONS:

Q: "What language is this?”
A: Details are yet to be announced.

Q: “What do we export it to?”
A: To be announced.

Q: "When can I start"
A: 6th December earliest.  December 12th is the official anticipated start date.

Q: "Why then for such an early thread?"
A: To line up the coders for a fast track completion of all Apps
and in case we get some API references done early.



Below is a GIF of the KorePhone OS running in the KorePhone Emulator.
Notice the GIF's Physical Size, Quality and tiny file size.
This was accomplished through the KorePhone's Æther OS v 0.1

http://i.imgur.com/LWyCO9v.gif



Updates: Most recent first.
____________________________________________________________________
4-26-15

After translating the majority of TOR over to Æther OS we decided to shelve the months worth of work.
Seeing how TOR works, it's unneeded bloat, flaws and it's Achilles heel
in it's exit nodes a decision was made to start from scratch.

The reasoning is the same that is the drive behind the Æther OS,
there has to be a better way that's more secure.
This was in mind prior to translating TOR into Æther OS taking months
deciphering how and why TOR works the way it does.

SEE OUR STATEMENT BELOW in our last Update announcement from 3-20-15:
"It's only the first step in our security endeavors we are bringing you and want to improve
the Æther OS security even beyond TOR."

Read the 1-6-15 Update as well...

This has been accomplished and is in testing.
___________________________________________________________________
3-20-15

We promised to bring you a secure OS and mentioned we were working on additional security coding.
What we were working on is Translating TOR into the Æther OS which is just over 60% completed.
Those aware know this is a monumental task.
It's only the first step in our security endeavors we are bringing you and want to improve
the Æther OS security even beyond TOR.
____________________________________________________________________
1-30-15

We have added a huge coding task to the mix which has caused a delay in the hardware rendering and integration.
Soon as this security related coding endeavor is completed the hardware rendering will commence.
An update will follow when this transition happens.
____________________________________________________________________
1-6-15

Æther OS incorporates seamless Tor and VPN privacy protections. Developers need code only with similar objects and classes they are already familiar with within the .NET/Mono API and Æther takes care of the rest; however, this is merely the first implementation of the privacy layer and more seamless protections are being planned to be added: For example, what we shall refer to at present as "Tor 2.0" will add additional security and privacy protections to the platform and apps running on it.

NOTE: To Counteract the typical,...More than one person is in possession of the Source Code.
 Wink


1-5-14 SDK UPDATE:
New Release Additions:

All necessary APIs required in order to write 99% of apps is now complete.

+ Video Input (input as webcam for emulation purposes)
+ Audio Output
+ Example app (including course code) showcases video input (as a box that can be moved around with the pointer) and audio output by audio generation when buttons are clicked.
+ Fully transparent Tor- and VPN-targeted classes which can be used (as alternatives) to the standard .NET implementations (e.g. AEtherSocket.) Full backend Tor and VPN infrastructure will be implemented on the device. For now the classes are there to be the methods and code building blocks by which seamless TCP security operations will take place in future, on the KOREphone.
+ Bug fixes

Æther SDK 0.3 Installer:
https://mega.co.nz/#!uRlHAaKS!Wzw8Q_0UhxMXFQN31NqnH5PMTAx1kDSpz29uKn0yeM8

All necessary APIs required in order to write 99% of apps is now complete (the exception being some games and apps that do 3D graphics.) Any extras which may be required will be added by request from any devs writing apps, of course.

The hardware rendering infrastructure is next, followed by hardware integration. In the meantime devs have essentially everything they would need in order to write their apps.

FYI: Attached is a summary of the OS components, it’s currently at just under 17K lines of code. That’s a lot more actual code; I’ve still yet to determine exactly how much that is but it’s easily double or triple the number.

____________________________________________________________________
12-23-14

Combined and updated SINGLE DOWNLOAD Link:

 Cool
https://mega.co.nz/#!GI1H3IyI!v1GY3jSKnIkJfmQQV7bWEjwYNDL5pz7jUNMXu5P0Mlg
"I've made an installer, which takes care of stuff like adding assemblies to the GAC (so you don't need to do it manually).
[Which I tried to post here but the forum won't allow me to post links yet. I will ask HD2 to post it for me.]

The folders will go to the "Program Files (x86)" folder and a standalone emulator icon should be found on your Start Menu after the installation.

There are both C# and VB.NET Hello World examples with some added code demonstrating how to receive some events from the OS, such as "pointer down" and "pointer up" events, and "end app" event, delivered to the methods going by those names.

More to come within the next few days"

____________________________________________________________________
12-22-14 MANDATORY UPDATE:

Updated API's, SDK, Documentation, Libraries, Explanations and Emulator info.
https://mega.co.nz/#!2AswGBKL!pXYsEs8jFVNbrq3PUlAwI57PYrOHTa0jnlGGwDnkn7w
INSTALLER:
https://mega.co.nz/#!GI1H3IyI!v1GY3jSKnIkJfmQQV7bWEjwYNDL5pz7jUNMXu5P0Mlg

"I've made an installer, which takes care of stuff like adding assemblies to the GAC (so you don't need to do it manually).
[Which I tried to post here but the forum won't allow me to post links yet. I will ask HD2 to post it for me.]

The folders will go to the "Program Files (x86)" folder and a standalone emulator icon should be found on your Start Menu after the installation.

There are both C# and VB.NET Hello World examples with some added code demonstrating how to receive some events from the OS, such as "pointer down" and "pointer up" events, and "end app" event, delivered to the methods going by those names.

More to come within the next few days"

_________________________________________________
12-15-14

Here is the Initial Introduction and essential API's and working Emulator. RE: the Components of the SDK.
This is undeniable evidence the Æther Kripton Mobile OS has been coded.
 Smiley
Detailed Explanation being compiled...
OUTDATED:
https://mega.co.nz/#!qFlRkTpQ!Yn64mclLI4LnFz7iPYowf4LoJMBjOwch-egT3ueg4i8

Details are in the included NotePad File.

___________________________________________________
12-13-14

Release date for Essential API's, SDK and Documentation: 12-15-14 Released.

 Cool
___________________________________________________
12-08-14

On track for 12-12-14 release of the Essential API's, Documentation and basic SDK.
Over 8,000 lines of Quality Written Code.
Updated included apps in new GIF.

http://i.imgur.com/95kJAnN.png




___________________________________________________
12-2-14

The code is progressing nicely over 7,400 lines at present.


We are migrating all questions and answers over to the XDA Developers Forums - Aether OS thread.
The DEV will only be posting on the XDA forums.

Could you please create an account there and post your questions and responses there
which will aid in proper responses and access to information and answers.


We are signing up to at least a half dozen or more other App Coder Forums
and be asking them to migrate to XDA as well.


This thread will still be updated on the progress but the main communications
between us all will be on XDA.


Please make your nick the same or close is possible...

Thanks for all your excellent questions and supporting this project!
 Smiley

XDA Developers Link:

http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802
___________________________________________________
12-1-14

Update of OS showing further wallet and app development
and a post of some code for the "Hello World" app.
https://bitcointalksearch.org/topic/m.9711111
___________________________________________________
11-29-14

XDA Developers Forum Listing:
http://forum.xda-developers.com/android/apps-games/ther-apps-coders-shout-ground-floor-t2956802
___________________________________________________
Sent to XDA Forums Administrator:
11-28-14

Hi,

I'm doing some leg work for a new OS under development called Æther OS.
It's booted in the Emulator and in next few weeks hope to have it on a device.
The RPI Reference is under development and may be posted in increments
so Apps could be developed sooner.
We would like to get a listing located next to "Jolla SailFish" , "Ubuntu Touch" and "Firefox OS"
since it is an OS.
I emailed twice over the last few days with no reply and we were hoping to get the listing
by Monday 12-1-14.
Please advise.

Most Sincerely,
__________________________________________________
11-27-14
We are in the process of requesting a separate Æther OS section on the XDA Forums.
The thread will be notified the outcome and if we cannot work something out there
we will create our own unique KorePhone Æther OS Developers Forum.

"Hi,
A new phone OS has been developed.
We are requesting it be listed as:
Æther OS
Could it be listed in it's above unique form.

Sincerely,





















Our Press Release as featured on Yahoo Finance:
Though some of our original wording was changed by them.


http://finance.yahoo.com/news/korecoin-team-announces-korephone-smart-041800325.html





Jump to: