Open Source Coding Project

crua9
9 years ago

0

Not sure if anyone cares to join in on this, but I figure I might as well ask. I’m doing some coding projects for my local area, and if you want to join in then feel free.
Below is a link to one of my github pages. The projects that I am talking about with this is Wayne apps. But feel free to join in on any other project I got going on.
https://github.com/crua9

Below is a link to a video that gets into this project.

8replies
3voices
234views
DOSmaster
9 years ago

0

What do you need help with?
I mainly aimed my knowledge to the crappy C# and the amazing Delphi. :P

crua9
9 years ago

0

It’s up to whomever to add anything to any of the projects. Most of my projects deal with Android, iOS, and Windows UA.

DOSmaster
9 years ago

0

OK.
I did notice that there is not a huge amount of documentation of what you’d like to have implemented still or what bugs there are.
Could an idea to note that somewhere? :)

crua9
9 years ago

0

Most of the projects have a comment page. I never really gave it too much thought on going beyond that because no one else took any interest into the projects

But, I’m going to see if I can start actually using the functions on Git

As far as the projects. A lot of them are pretty basic but I get bored with them because people show no real interest into it. But, whenever I have some free time I mess around with those projects. The reason why I made it open source is as a backup and so others can add to it.

For example, I was talking to someone about making a basic app that will tell someone if they kept their stove on. They brought up that a timer would be a great idea. (something I never thought about)

screamleo
9 years ago

0

I’m iOS developer, can join

crua9
9 years ago | edited 9 years ago

0

@screamleo
I took a quick look at my projects, and I thought I had a iOS project uploaded. But, I can’t find it.

Feel free to take some of the android projects and convert them over to the iOS. (I swear I made a disability card app for the iOS)

Anyways, I hardy write iOS apps because the $100 a year to upload to the app store, and I have to run OS X on VM.

DOSmaster
9 years ago

1

Timers are ideal for a lot of things.. :P
Especially when rendering stuff or running repeated logic, you could then also spread load per-tick.
Delphi example:
```
var
fTickCount: Cardinal;

constructor TEST.Create;
begin
inherited Create;

{$IFDEF MSWindows}
TimeBeginPeriod(1); // Set timer precision
{$ENDIF}

fTickCount := 0;
fTimer := TTimer.Create(nil);
fTimer.OnTimer := OnTick;
fTimer.Enabled := True;
end;

procedure TEST.OnTick(Sender: TObject);
begin
Inc(fTickCount);

if fTickCount mod 10 = 0 then
logicOne;
if fTickCount mod 10 = 3 then
logicTwo(..);
end;
```

screamleo
9 years ago

0

cura9 I still have my account to upload to appstore

You must be logged in to reply to this discussion. Login
1 of 9

This site only uses cookies that are essential for the functionality of this website. Cookies are not used for tracking or marketing purposes.

By using our site, you acknowledge that you have read and understand our Privacy Policy, and Terms of Service.

Dismiss