Message from @DOSagain

Discord ID: 562371195702476810


2019-04-01 12:31:08 UTC  

Yeah

2019-04-01 12:34:12 UTC  

n

2019-04-01 12:35:07 UTC  

Gross

2019-04-01 13:57:41 UTC  

>:(

2019-04-01 14:02:46 UTC  

Out of curiosity, where is a good place to start if I wanted to learn basics of coding?

2019-04-01 14:07:24 UTC  

Depends on your age and free time

2019-04-01 14:08:53 UTC  

<:pepe_eyes:378719408362881024>

2019-04-01 14:08:56 UTC  

No python

2019-04-01 14:09:06 UTC  

{} good

2019-04-01 14:15:15 UTC  

Age 25 free time... meh

2019-04-01 14:19:09 UTC  

Found an app to learn python. Let the head pounding begin. Thanks guys

2019-04-01 14:23:45 UTC  

Yeah a friend gave me her code @Durtle02 xD

2019-04-01 14:25:06 UTC  

dumb thots not knowing how to code smh

2019-04-01 14:26:24 UTC  

Been trucking. Didn’t need that edjamacation

2019-04-01 15:24:17 UTC  

@Durtle02 I had a vector of x values

2019-04-01 15:24:41 UTC  
2019-04-01 15:24:57 UTC  

It was kind of similar but I made a mistake with one of the loops

2019-04-01 20:10:27 UTC  

@I Crane also depends on what you want to do with your code

2019-04-01 20:13:00 UTC  

Arduino: C++
Websites: JavaScript
LUA: game mods
Java: phone apps
Python: Hack random one off projects together quickly
PC programs: lots of different languages

2019-04-01 20:13:25 UTC  

That will probably trigger people

2019-04-01 20:22:21 UTC  

C++ is pretty heavy for a microcontroller. I would be going for C or assembly for embedded development. Those would be more intermediate schools of programming for sure.

2019-04-01 20:51:45 UTC  

True, meant to type Arduino in specific

2019-04-01 20:53:29 UTC  

Arduino is a great platform to start in microcontrollers.

2019-04-01 20:54:25 UTC  

I've been making a lot of stuff around the house that utilize ESP microcontrollers, and just got started on using attiny ones

2019-04-01 20:56:28 UTC  

Nice

2019-04-01 20:56:56 UTC  

Got my brother one of the Adafruit Feathers for Christmas.

2019-04-01 21:14:59 UTC  

for Arduino just start with C, is easiest and most common. The library takes care of most everything so you dont really need to know C very well, just how to read it.

2019-04-01 21:16:25 UTC  

Eh I guess it is technically c++ of course

2019-04-01 21:24:27 UTC  

>C is C++
REEEEEEEEE

2019-04-01 21:25:20 UTC  

Arduinos shit is

2019-04-01 21:26:54 UTC  

rather than any of the above it should really be called lite-C but as far as i understand it its mostly c calls calling libfuncs from the arduino library and the IDE compiles it as c++ or some shit.
the way they describe it is confusing and annoying

2019-04-01 21:27:52 UTC  

in any case you would never write a bunch of arduino code and be able to then claim that you actually knew c or c++

2019-04-01 21:32:50 UTC  

arrays in c are so easy

2019-04-01 21:32:52 UTC  

int arr[5];
int i= 2;

i[arr] = 36;

2019-04-01 21:32:55 UTC  

voilà

2019-04-01 21:35:56 UTC  

haha

2019-04-01 21:36:00 UTC  

ugh

2019-04-01 21:36:33 UTC  

What the fuck are you doing to that array

2019-04-01 21:37:08 UTC  

I wrote a command line interface for arduinos that was eazy to expand to any comm device like bt, rf etc years ago

2019-04-01 21:37:32 UTC  

basically live command line basic, interpreted in real time

2019-04-01 21:37:49 UTC  

and it was used in dozens of products