Message from @StrawberryArmada

Discord ID: 373104998776569856


2017-10-26 03:02:20 UTC  

there are going to be times you'll want to totally give up, because something you think should be simple just doesn't work.

2017-10-26 03:03:14 UTC  

but the effort you expend solving that problem will be valuable in the end because you will learn a lot of tricks and gain a deeper understanding in the process

2017-10-26 03:03:44 UTC  

there's a LOT to learn, but you don't have to know everything or even a lot to start writing useful things

2017-10-26 03:04:01 UTC  

so back to my recommendation. Steel yourself, and then dive in.

2017-10-26 03:04:20 UTC  

Take your time as you're learning. Do a little a day. Make sure you understand everything.

2017-10-26 03:05:01 UTC  

I recommend starting with "How to Think Like a Computer Scientist" or "Python the Hard Way"

2017-10-26 03:05:14 UTC  

either one will get you the same basic knowledge in the end

2017-10-26 03:05:21 UTC  

again, don't rush through it. do the exercises

2017-10-26 03:05:38 UTC  

if you do a chapter a day you'll have the fundamentals within a week

2017-10-26 03:06:03 UTC  

at that point, start thinking of simple problems to solve using code

2017-10-26 03:06:13 UTC  

one problem I tackled very early on is the Monty Hall problem

2017-10-26 03:06:28 UTC  

it's conceptually simple and a good conversation piece

2017-10-26 03:07:52 UTC  

Once you get through one of those books, you'll have a much greater understanding of programming fundamentals. You'll have the foundation in place to tackle something more specific.

2017-10-26 03:08:16 UTC  

Get back to me once you've done that and we can talk some more. AMA along the way.

2017-10-26 03:08:37 UTC  

Gonna knock out an FtN article before bed 😃

2017-10-26 03:10:59 UTC  

Hmmm. "Learn Python the Hard Way" used to be free

2017-10-26 03:11:44 UTC  

I've *heard* that if you go to qwant.com and search for "learn python the hard way pdf" you'll find that free version still floating around out there.

2017-10-26 13:46:03 UTC  

Could I pick these up at a library?

2017-10-26 15:36:37 UTC  

possibly. but there are free PDFs as well

2017-10-26 17:08:30 UTC  

you can try this too ?: https://www.codecademy.com/

2017-11-01 00:08:47 UTC  

Anyone @here that familiar with Java?

2017-11-02 22:54:29 UTC  

@here anybody here good with video editing, specifically adobe premier pro? I am editing some go pro footage the quality is coming out less than desireable. I think i have all the settings right. • Format: H264
• Preset: HD 720 p 29.97 or 1080 for super high
• Width 1280
• Progressive square pixel
• Profile: high
• Level 5.2

2017-11-02 22:55:10 UTC  

@Brandon Ironside- ND sorry man i use sony vegas pro

2017-11-02 22:55:57 UTC  

i find youtube to actually be a really good resource on video editing techniques if you phrase your query directly

2017-11-02 22:57:01 UTC  

come to think of it - i am wondering what quality the raw go-pro footage is 720 at 60fps or 1080 at 30 fps, right?

2017-11-02 22:59:20 UTC  

Yea its a hero 3 so 1080p or 720p. When I play the raw footage it is really good quality then after editing and rendering i loose alot of quality but im exporting in 720p so i dont know why its doing that.

2017-11-03 03:24:29 UTC  

@Lukas - NC I'm fluent in C#, which has a lot in common with Java. If you're trying to figure out what's wrong with a particular bit of code, I might be able to help.

2017-11-03 11:40:46 UTC  

@Brandon Ironside- ND I haven't used Premiere in years, but I do work quite a bit in After Effects these days. Losing a lot of quality is interesting, something is happening there beyond just you saying "output dimensions = input dimensions" some interpolation or re-compression is happening. How "bad" does it look? post a before and after pic of a couple of the frames...

2017-11-06 18:43:34 UTC  

how do i rebase to a past commit? I keep trying to rebase -i t <past ssh> but it says there is a sytax error

2017-11-06 18:52:41 UTC  

i removed the last commit but it unstaged it how do delete the past stages to clean up my terminal?

2017-11-06 18:52:59 UTC  

https://cdn.discordapp.com/attachments/352761432833523713/377168505901940738/unknown.png

2017-11-06 18:57:39 UTC  

nvm got it

2017-11-06 18:57:48 UTC  

hard reset force push got it done

2017-11-28 02:04:33 UTC  

@Brandon Ironside- ND what bitrate are you exporting the video at?

2017-11-28 02:05:37 UTC  

Resolution is one thing but bitrate would be the quality as opposed to the resolution.

2017-11-30 13:45:37 UTC  

```var words =(hello, hi, howdy)

function findLongWords(arr, num){
const result= arr.filter(arr => arr.length > num);
return result;
}

findLongWords (words, 4)```

2017-11-30 13:45:52 UTC  

I don't know what i'm doing incorrectly

2017-11-30 14:10:06 UTC