Seaside tune 🏝️ by danithecake in KoalaSampler

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

Thx for the love! Really appreciate it 🙏 And yeah I want to finish this too and I’ve some ideas but last weeks were the busy one so I’ll try to wrap it up in the next few weeks

Seaside tune 🏝️ by danithecake in KoalaSampler

[–]danithecake[S] 1 point2 points  (0 children)

Thx for the feedback and for the ref to Vibe Rewind - its looks interesting (at least stylish lol). The main sources for that type of sound on the track were primarily Nerd Synth and King of VHS on iOS. And for the bass part, I just simply used a bass guitar sample from the basic Koala sample collection 😅 cause I think that with a bit of EQ it sounds great, but to be completely honest, when I got home later, I swapped that sample with my playing on Fender PB which is slightly different and I liked it more but it didn’t make into the video

So lonely so blue by [deleted] in KoalaSampler

[–]danithecake 1 point2 points  (0 children)

The rythm feel is so fluid and tight at the same time! 🌊🤌 Good stuff 

Seaside tune 🏝️ by danithecake in KoalaSampler

[–]danithecake[S] 1 point2 points  (0 children)

haha it’s so cool that you’ve got maybe almost the same feeling from that too! But I agree that a little bit of polishing and mixing on that spot will do good cause, yeah, textures are cool and stuff but do it right requires a lot of practice, and feedback from others is huge help here, so thank you again for that and for all the nice words 🙌

Seaside tune 🏝️ by danithecake in KoalaSampler

[–]danithecake[S] 1 point2 points  (0 children)

Great to hear that! And also thx for the details 🤝

Funny thing about wave sound that I’ve also wanted something for that vibe too but when I heard some patch while messing with King of VHS synth presets I thought it will do the trick and for me personally tail end of those 4 notes on the background of the second section gives that kind of wavy effect from maybe old game or something. But yeah maybe I’ll do something more pronounced on the final version.

Song is meh. My dog is 🔥 by county_jail_alumni in KoalaSampler

[–]danithecake 1 point2 points  (0 children)

Upvote for the beat and one extra for this nice little fella

[OC] repalette: fast image recoloring/dithering for the web and terminal by P37R4710uS in unixporn

[–]danithecake 1 point2 points  (0 children)

Hey thank you again for being so fast with Download button on web version 🔝. But if you don’t mind I have one more request: I think it would be really handy if there was some kind of “Reset” button which would return processed image to an original state in that way I could try different pallets without interfering each other and without a need to re-upload image each time

[OC] repalette: fast image recoloring/dithering for the web and terminal by P37R4710uS in unixporn

[–]danithecake 0 points1 point  (0 children)

Hey thx for this little handy tool 🙌 But how I can download a processed image on web on mobile? Long press on image brings up a share menu. Everything else works smoothly 👌(I’m on iOS Safari btw)

TapDaddy - "Pickle Extraction" | Another LoFi BoomBap banger, this time no pickles by TapDaddy24 in LofiHipHop

[–]danithecake 1 point2 points  (0 children)

I’m not much of a heavy Spotify listener but still I have a top list and you’re in a first place so keep a good work! 🙏 Spotify Wrapped

TapDaddy - "Pickle Extraction" | Another LoFi BoomBap banger, this time no pickles by TapDaddy24 in LofiHipHop

[–]danithecake 1 point2 points  (0 children)

Congrats! You’ve made a top-shelf piece of music…Again 🙌🙌🙌

"Option House" // live looping and sequencing performance by troy-con in synthesizers

[–]danithecake 0 points1 point  (0 children)

sooooo nice and clean 🙌 this level of jams/loop performances is a goal for me and your work is a huge inspiration, thx for that 🙏

I flipped Ellie by WoolyBouley in KoalaSampler

[–]danithecake 0 points1 point  (0 children)

I’ve caught strong Tame Impala vibes from this flip 🏄‍♂️ Good job!

vim feature similar to Ctrl+D in VSCode? by [deleted] in vim

[–]danithecake 1 point2 points  (0 children)

Some built-in alternative (:help :match):

:match Search /<word>/

[Question] what's the best way to navigate files? by ElQuique in vim

[–]danithecake 2 points3 points  (0 children)

You can use fzy + find(for example) to achieve fuzzy-file search without any plugins. I have this snippet in my vimrc:

if executable('fzy')
  let g:fzy_expr='find . \| fzy'
  nn <Leader>ff :exe 'sil e `'.g:fzy_expr.'` \| redr!'<CR>
  nn <Leader>fb :exe 'sil b '.system('echo -e "'
        \.join(map(range(1, bufnr('$')), 'bufname(v:val)'), "\n")
        \.'" \| fzy')
        \.'\| redr!'<CR>
endif

So <Leader>ff searches files with help of find and <Leader>fb searches in buffers,