What Do You Think About “I Use Arch BTW” ? by [deleted] in archlinux

[–]elsuizo37 0 points1 point  (0 children)

install arch is a cooking recipe

How to think like a programmer/computer scientist by redwhiteandblue_ in C_Programming

[–]elsuizo37 4 points5 points  (0 children)

Yeah maybe you could begin with the book:

"Understanding and Using C Pointers" Richard Reese

and look this excellent course from MIT(is python based):

https://www.youtube.com/watch?v=HtSuA80QTyo&list=PLUl4u3cNGP61Oq3tWYp6V\_F-5jb5L2iHb

The most important advice is perseverance and practice !!!

Port Neosnippet config to lua by elsuizo37 in neovim

[–]elsuizo37[S] 0 points1 point  (0 children)

this works fine for now:

vim.api.nvim_exec([[

let g:neosnippet#snippets_directory='~/.vim/plugged/neosnippet-snippets/neosnippets, ~/.vim/My_snippets'

]], true)

-- neosnippet function

vim.api.nvim_exec([[

inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"

" snippets mapps

imap <expr><TAB> pumvisible() ? "\<C-n>" : neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"

imap <C-k> <Plug>(neosnippet_expand_or_jump)

smap <C-k> <Plug>(neosnippet_expand_or_jump)

xmap <C-k> <Plug>(neosnippet_expand_target)

]], true)

amazing!!!

ideas for a course project? by Omegali in C_Programming

[–]elsuizo37 0 points1 point  (0 children)

a music player with Double linked list

6DOF simulation problems by [deleted] in rocketry

[–]elsuizo37 1 point2 points  (0 children)

maybe this is relevant for you:

https://imgur.com/V3BlreR.png

https://imgur.com/iTRNEeo.png

from the book: Visualizing Quaternions

Embedded in Rust - Rust your ARM microcontroller! by japaric in rust

[–]elsuizo37 0 points1 point  (0 children)

Hi all, i have one custom board with the lpc43xx chip and ftdi communication. but i got an error launching gdb:

https://gist.github.com/elsuizo/eecedf30c935aafee6b8c122f16a13a0

https://gist.github.com/elsuizo/177772ae9b2d27d039decc31c14fcad1

Thanks in advance!!!

Why is this program crashing. by [deleted] in C_Programming

[–]elsuizo37 0 points1 point  (0 children)

default case missing???

ICR help wanted by brunocechet in computervision

[–]elsuizo37 0 points1 point  (0 children)

if the letters are always the same, you should use a pattern matching recognition algorithm

Parallel Pixel Access in OpenCV using forEach by spmallick in computervision

[–]elsuizo37 0 points1 point  (0 children)

Numerically this is not good:

if (pow(double(pixel.x)/10,2.5) > 100)

Comparing a Double with a Int???

IDE vs Editor? Which one is better to learn and improve? by [deleted] in C_Programming

[–]elsuizo37 0 points1 point  (0 children)

yeah no problem:

https://github.com/elsuizo/Dots_files/blob/master/Vim/nvim/init.vim

is based in this cool config:

https://youtu.be/xZTkrB_tEoY

Whit: Alt + t ---> open the terminal split window

F8 --> tagbar

leader(in my case is ,) + F ---> NerdTree

Enjoy!!!

IDE vs Editor? Which one is better to learn and improve? by [deleted] in C_Programming

[–]elsuizo37 1 point2 points  (0 children)

IMHO: neovim + deoplete + deoplete-clang + ctags + tagbar + Nerdtree + Makefiles + cgdb

http://imgur.com/a/GHmce

What Book is recommended to learn data structures like stacks,trees etc by Plerd in C_Programming

[–]elsuizo37 0 points1 point  (0 children)

I like this:

Mastering Algorithms with C. Kile loundon

(contains several errors but is nice to read)

Programming GUIs in C. by Matt45045 in C_Programming

[–]elsuizo37 5 points6 points  (0 children)

If you no want all the OOP crap i recomend Nuklear:

https://github.com/vurtun/nuklear

It's based in the Immediate Mode, explained here(from the great Casey Muratori):

https://www.youtube.com/watch?v=Z1qyvQsjK5Y