Never programmed before

Never programmed before.

I want to make a program on android that opens up automatically when the alarm goes off so it shows my schedule for the day.

How would I be able to do that?

Other urls found in this thread:

cprogramming.com/tutorial/c-tutorial.html
learn-c.org/
learncpp.com/
cplusplus.com/doc/tutorial/
cprogramming.com/tutorial/c -tutorial.html
en.cppreference.com/
isocpp.org/faq
learnpython.org/
codecademy.com/en/tracks/python
wiki.installgentoo.com/index.php/Programming_resources
github.com/Guad/AlarmDetector
twitter.com/SFWRedditImages

Wake up when you alarm goes off and look at your schedule.

just get an automation app

than i wouldnt learn anything

So you want to learn programming?

Pick a starting language. For beginners, there are generally two recommended "programming families" that you can choose to start learning:
-Dynamically typed/interpreted programming languages, such as: Python, Perl, Ruby
-Statically typed/compiled programming languages, such as: C, C++, C#

These are amongst the most popular languages in use worldwide, including 4 from the top 5. Both approaches are perfectly fine, and well-documented.
-Dynamically typed programming may be a bit more flexible, convenient, and forgiving. It is more popular in academia.
-Statically typed programming is a bit more suited for making general applications. It is more popular in industries.

Cannot decide? Flip a coin.

If you choose statically typed/compiled programming, you may want to start with C, then pick up C++. C is very well documented, and teaches many universal programming concepts. C++ is based on C, and adds new concepts. Sources:
For C:
The C Programming Language (K&R)
C Primer Plus (Prata)
cprogramming.com/tutorial/c-tutorial.html
learn-c.org/

For C++:
learncpp.com/
cplusplus.com/doc/tutorial/
cprogramming.com/tutorial/c -tutorial.html
en.cppreference.com/
isocpp.org/faq

If you choose dynamically typed/interpreted programming, you may want to start with Python. It is very easy to pick up. Here are some good sources:
learnpython.org/
codecademy.com/en/tracks/python

>BUT I WANT MORE SOURCES!
Read: wiki.installgentoo.com/index.php/Programming_resources

>BUT I WANNA START WITH [language x] INSTEAD!
Sure, if you like. But the languages above are considered good for beginners.

>BUT I WANNA MAKE A COOL WEBSITE!
Learn HTML, CSS, and Javascript.

>BUT I WANNA MAKE iPHONE GAMES!
Learn Objective C and/or Swift.

>BUT I WANNA MAKE ANDROID GAMES!
Learn Java.

>BUT I WANNA MAKE PC GAMES!
Learn patience.

define your problem better would be step #1

Just make a klwp so your homescreen shows what's on your schedule for that day.

IFTTT

This is legit

Nice tips

...

>falcon
wud da fug, are you real or did someone else find his trip

He posts that pasta in every thread like this.

i seen him in legit years, thought he went to fukin reddit or something
next we'll have fukin sysadmin posting again on the regular.. wonder is captain spicard is still around

puzzle alarm clock has a option to open an App after the Alarm.

Just use it to open your calender

Kek I made that exact app for myself, except it turns on my PC with Wake on lan
I integrated it with the default Android alarm clock so I don't need to set my alarm somewhere else, it's pretty neat.
If you want I can send you the code

Make it open sores

>So you want to learn programming?
>Perl
fucking hell man

Hey i had the exact same idea cause u forget shit all the time. Haven't really gotten around to doing anything yet. I know java but android development seems like a special kind of hell.

Uploaded to github.com/Guad/AlarmDetector

Noice.

>Xamarin
aay
>MIT
aay
good one broe, this is how its meant to be done

Perl is an example of "Dynamically typed/interpreted programming languages".

Then you will have to cost 300 hours at least

ATTENTION BEFORE DOING ANY OF THIS

learn lisp first

This would be easier done with Tasker or something like that. Plus, an automation app would teach you the logic behind programming without having to learn useless apis that you would never use again.

Is that a meme?

IFTTT.com

This sounds good but I'm an idiot so who knows.

You need to program and alarm using the AlarmManager class. The alarm manager would then call a broadcast receiver that shows a notification, and when the user presses the notification then the activity (aka screen) opens.

Be advised: google fucked the API to schedule an alarm at an exact point in time, because they said that every app firing alarms randomly fucks battery. So they made all alarms inexact by default, and then provided a new API to schedule exact alarms again, but even then you might have to disable doze for the app in settings.