Gary Jennings
Gary Jennings
  • Видео 35
  • Просмотров 129 985

Видео

Some thoughts on LLM's
Просмотров 484 месяца назад
Some thoughts on LLM's
Rust: module tree != file tree
Просмотров 1348 месяцев назад
As a js dev, Im used to importing code from other files. In Rust, you dont directly reference your file tree, but instead make use of modules in the module tree. As a js dev, this is an important difference to understand
Rust: How to organize code in multiple files with modules
Просмотров 1,4 тыс.8 месяцев назад
How to organize code in multiple files with modules Github: github.com/dodgeblaster/rustexamples/tree/main/module_example
Trying out the Miryoku layout on the Moonlander keyboard
Просмотров 7 тыс.10 месяцев назад
- Moonlander: www.zsa.io/moonlander/ - Miryoku layout: github.com/manna-harbour/miryoku - Ferris Sweep keyboard: keebmaker.com/products/ferris-sweep
How I use my Moonlander keyboard
Просмотров 4,1 тыс.Год назад
Video going over how I have my Moonlander keyboard setup
Event driven apps with AWS Application Composer
Просмотров 2,2 тыс.Год назад
Github Repo: github.com/dodgeblaster/appcomposer-eventdriven-arc-example
What is AWS Application Composer?
Просмотров 10 тыс.Год назад
Its a visual editor that helps you write code
Demo of Rise Functions
Просмотров 153Год назад
Demo of CLI that helps you deploy code to AWS Lambda
EventBridge to DynamoDb to AppSync subscription
Просмотров 1,1 тыс.3 года назад
Github Repo: github.com/dodgeblaster/EventBridgeToAppSyncSubscription
Got a job at Amazon
Просмотров 2503 года назад
Really cool bit of news to share, I will be joining the AWS Appsync team!
Why inlining Lambda functions can sometimes be better than using a serverless framework
Просмотров 1383 года назад
Why inlining Lambda functions can sometimes be better than using a serverless framework
Intro to Appsync with SAM with Gary Part 3
Просмотров 2053 года назад
Github Repo: github.com/dodgeblaster/appsync-intro
Intro to Appsync with SAM with Gary Part 2
Просмотров 2383 года назад
Github Repo: github.com/dodgeblaster/appsync-intro
Intro to Appsync with SAM with Gary Part 1
Просмотров 4163 года назад
Github Repo: github.com/dodgeblaster/appsync-intro
Serverless + Endpoint + DynamoDB
Просмотров 5374 года назад
Serverless Endpoint DynamoDB
How to query a GraphQL endpoint with Apollo Client
Просмотров 4,8 тыс.4 года назад
How to query a GraphQL endpoint with Apollo Client
How to query a GraphQL endpoint with fetch
Просмотров 4204 года назад
How to query a GraphQL endpoint with fetch
How to use GraphQL with the Serverless Framework
Просмотров 6 тыс.4 года назад
How to use GraphQL with the Serverless Framework
Should I use GraphQL or REST?
Просмотров 5664 года назад
Should I use GraphQL or REST?
Integration Testing DynamoDB
Просмотров 1,1 тыс.4 года назад
Integration Testing DynamoDB
DynamoDB Relationships - 5 Many to One
Просмотров 4,6 тыс.4 года назад
DynamoDB Relationships - 5 Many to One
DynamoDB Relationships - 4 Many to Many
Просмотров 14 тыс.4 года назад
DynamoDB Relationships - 4 Many to Many
DynamoDB Relationships - 3 One to Many
Просмотров 15 тыс.4 года назад
DynamoDB Relationships - 3 One to Many
DynamoDB Relationships - 2 One to One
Просмотров 7 тыс.4 года назад
DynamoDB Relationships - 2 One to One
DynamoDB Relationships - 1 Intro
Просмотров 8 тыс.4 года назад
DynamoDB Relationships - 1 Intro
How to make Serverless Components
Просмотров 8974 года назад
How to make Serverless Components
Zeit Now - 6 Environment Variables
Просмотров 1,6 тыс.5 лет назад
Zeit Now - 6 Environment Variables
Zeit Now - 5 Assign a domain name
Просмотров 1,8 тыс.5 лет назад
Zeit Now - 5 Assign a domain name
Zeit Now - 4 Deploy a Docker App
Просмотров 3 тыс.6 лет назад
Zeit Now - 4 Deploy a Docker App

Комментарии

  • @niv8880
    @niv8880 16 дней назад

    It's a super product - very intuitive. Also just subscribed - you have some awesome video's - I'll be getting stuck in to quite a lot of these. Thanks for your efforts

  • @Fonsecaj89
    @Fonsecaj89 17 дней назад

    Its always better to use SQL for relationship...

  •  18 дней назад

    Thank you for this! This video turned out to be the perfect solution for feeling overwhelmed with my Moonlander. I ended up not switching the two sides and keeping the armrests, but apart from those, I followed your setup.

  • @brennancurrier806
    @brennancurrier806 Месяц назад

    Easier than I thought. Was struggling to get a proper way to use sub directories for like emulating a class until now.

  • @Simple_OG
    @Simple_OG Месяц назад

    What if I have database/db.rs

  • @anthonyoleinik6472
    @anthonyoleinik6472 2 месяца назад

    Do you stay qwerty even with the layout?

  • @just5559
    @just5559 2 месяца назад

    Fucking finally. Idk why, but this is the first video that actually, simply explains how this works, without being drawn out or convoluted.

  • @princeigwe8206
    @princeigwe8206 3 месяца назад

    What if I had more than one files in a folder, how would I call those files in another rust file?

  • @jlambert12013
    @jlambert12013 3 месяца назад

    Thank you. Thanks for getting to the point.

  • @morsmagne
    @morsmagne 3 месяца назад

    That’s fantastic but I thought Claude 2.1 was in closed beta - even in Bedrock? Don’t you have to apply to use it? For almost everyone that means “no”!?

  • @lukeclimbs
    @lukeclimbs 4 месяца назад

    I know this video is old so I may not get a response but just in case: Following the example in this video. Let's say I have two UI pages. (User Page) One for a user which shows the users profile as well as a list of what teams they are a part of. (Team Page) One for a team which shows some team metadata as well as what users are members of the team. On both of these I'd like to be able to display some basic information about the "many" items of the relationship. For example on the user page, each team shown should at least have the teams name and for the Team page each member of the team should show some basic information about that user such as their first name, last name and maybe their role. My confusion lies in the fact that the metadata I'm looking to display isn't necessarily part of the teamMember item but instead part of the original user profile or team meta item. Thinking about the Team Page, I wouldn't want to have to make 1 query in order to see the teamMembers and then another query for each teamMember to retrieve the actual profile data of that given team member. In that case would you want to duplicate the users profile data onto the teamMember item? If that is what you want to do, if the users name is mutable, do you then have to go and update all teamMember items with the new name when the users profile changes? Sorry for the long winded question. I'm just starting to try to fully wrap my head around complex many-many relationships in single table design.

    • @sleepwalkergt
      @sleepwalkergt 3 месяца назад

      That's right. You'll have to first get interested items. Then using batch request - get extended details about related items you need. There is no better way to do it, but this one is not bad itself. The number of requests is for sure not the only metric to look at. Highly recommend to check "The DynamoDB" book. It describes such concepts in details

  • @mikopiko
    @mikopiko 4 месяца назад

    Cool

  • @seancooper5007
    @seancooper5007 4 месяца назад

    If AI isn't changing how you approach problems, you're not trying hard enough.

  • @lokezz2977
    @lokezz2977 4 месяца назад

    Great video. Exactly what i needed

  • @Ce_Lazca
    @Ce_Lazca 4 месяца назад

    This is a really nice layout. I have mine set up very similar at the moment and its working great for me. I kept the nearest thumb cluster key for the enter and space bar and am set a row lower than your config... I'm tempted to give this a go for all the reasons you have mentioned. Good stuff man!

  • @PaulSebastianM
    @PaulSebastianM 4 месяца назад

    Feels more like you need lighter and faster keys, like quick silvers... I think you're going down a rabbit hole with too many keywords. The moonlander has hotswappable switches.

  • @emcell2
    @emcell2 4 месяца назад

    Would you please share your moonlander layout?

  • @owlmostdead9492
    @owlmostdead9492 4 месяца назад

    Why bother with this, get a corne. I could never use a jank setup like this.

  • @oldlazylobster
    @oldlazylobster 4 месяца назад

    waiting for more of your videos

  • @PaulSebastianM
    @PaulSebastianM 4 месяца назад

    Nice demo and really smart layout there. Quite nice. Shows that you might not need that many keys. You actually end up not having to move your hands that much either.

  • @umop3plsdn
    @umop3plsdn 5 месяцев назад

    get a corne man

  • @CortesCurtis
    @CortesCurtis 5 месяцев назад

    Just a plug for keebmaker that you showed at the end, I have a ferris sweep made by them and it is great!!!

  • @user-bf6yx4nn5k
    @user-bf6yx4nn5k 6 месяцев назад

    Amazing content. Straightforward and clear explanation

  • @user-bf6yx4nn5k
    @user-bf6yx4nn5k 6 месяцев назад

    Hey Gary, keep up this content pls. Really helpful. Thank you very much

  • @ninjaaa94
    @ninjaaa94 6 месяцев назад

    please tell me what kind of socket plugs these are and where to buy them?

  • @patrickmeade8577
    @patrickmeade8577 6 месяцев назад

    would you mind sharing your personal oryx layout please

  • @nicolabini6115
    @nicolabini6115 7 месяцев назад

    great video! I'm about to assemble my ferriss, let me know if yeu want to talk about layouts!

  • @saurabhchopra
    @saurabhchopra 7 месяцев назад

    Isn't thumb cluster the whole point of getting a split keyboard layout?

    • @GaryJennings
      @GaryJennings 7 месяцев назад

      For me, the point of a split keyboard layout is to have a split in the keyboard. The thumb clusters weren’t working for me, but if they work for you, then you should use them.

  • @milicamedic723
    @milicamedic723 7 месяцев назад

    Thanks, helped a lot

  • @rohitrvyas20
    @rohitrvyas20 8 месяцев назад

    Hi, It's really great and I would like to use it. But I have one question. I want to get all users list whose SK is profile. So please let me know how to get list of all users with this given structure.

  • @yeahyalikedat
    @yeahyalikedat 8 месяцев назад

    Part 1 and Part 2 of this series were extremely helpful, thank you very much!

  • @ldebritto
    @ldebritto 9 месяцев назад

    I’m on the Ferris Sweep camp for over a year now. Light switches made all the difference for me. I like it so much I actually built 3 of them, so I can keep one home, other at the office and yet another in my bag for use whenever I am. I know you just said you don’t like switching layers for enter, but I guess that’s more to do with the weight of the switch. So try a light one. As per layout, I found out the Callum layout was the answer since I have not got used to hold-taps, with a lot of misfires.

    • @GaryJennings
      @GaryJennings 9 месяцев назад

      Thanks for sharing! I just recently bought a Ferris sweep, will definitely give Callum a try

  • @pageegap1
    @pageegap1 9 месяцев назад

    nice video, I also own a moonlander. Could you please share your(oriyx) layout?

  • @Tannerlegasse
    @Tannerlegasse 9 месяцев назад

    You might really like the Glove80 too. It's also columnar, but has a keywell as well, which is a huge advantage over either the Ferris Sweep or the Moonlander (got one of those too). It's bluetooth, low energy, and has 80 keys, so you don't need to go through all of the mental torture to learn a 34 key layout (ASK ME HOW I KNOW). Typed on my Glove80, so take everything I say with a grain of salt. Also, if light keypresses is your thing, I just got the Choc purpz which have a 35g actuation force. After a slight learning curve coming from full travel mech keys, they feel really REALLY nice.

    • @Nabuuug
      @Nabuuug 2 месяца назад

      how do you know

    • @ClaytonMiller
      @ClaytonMiller Месяц назад

      The Choc Purpz are Linear switches with - 25±5gf not 35g.

  • @revolutionar267
    @revolutionar267 9 месяцев назад

    Now the new keyboard Voyager is out from zsa. What ist your opinion on that?

  • @Psoewish
    @Psoewish 10 месяцев назад

    If you're struggling adapting to mechanical switches, one thing that you could look into would be the low profile choc switches. They'd still mechanical of course but they'd be much closer to your apple keyboard in terms of how they feel. Not saying it's absolutely the solution here because everyone has different preferences of course, but it might be something worth having a look at :)

    • @Psoewish
      @Psoewish 10 месяцев назад

      I should have watched the whole video before replying, you literally mention this exact thing at the end. Oops.

  • @ElTebe
    @ElTebe 10 месяцев назад

    This is freakin awesome! Thank you Gary!

  • @createprince2093
    @createprince2093 11 месяцев назад

    it’s really cool and creative to see this layout where you’ve taken off the thumb modules and then switched the 2/2 of the board. I just got my moon lander and I am realizing that using the thumb clusters it is putting quite a bit of strain on my wrist, so to see someone else who’s foregoing them entirely is actually really nice. I switching the 2 halves of the board, does that make a little inconvenient to use the customization in training software, since what they show you there will be backwards?

    • @GaryJennings
      @GaryJennings 11 месяцев назад

      it does make it awkward in the customization editor, but you get used to it

  • @LeighBriody
    @LeighBriody 11 месяцев назад

    Great video would love another update , how are you finding it now

  • @trackvegeta8716
    @trackvegeta8716 Год назад

    Just to access programming symbols you are making a lot of gymnastic, is it really ergonomic after all.

  • @HiltonT69
    @HiltonT69 Год назад

    OK, it may well be a barse-ackwards say of using a Moonlander, but it seems to work for you and is an *interesting* option...

  • @thebigfriezy
    @thebigfriezy Год назад

    Thank you for breaking this down. I was skeptical of this approach, however, now I am really liking this more and more.

  • @naokobanana4291
    @naokobanana4291 Год назад

    I have to say this is magic haha. Pretty well explained. Keep it going!

  • @cesar1098100
    @cesar1098100 Год назад

    Awesome 😃, exactly what i am looking for!!! Thanks Gary

  • @pedroortega7959
    @pedroortega7959 Год назад

    Thank you for this vídeo, very interesting tool. I have 2 questions, is this tool free to use and you know where can i learn more about this, a course or a certification? Or if in the future will be released?

  • @samuelbassi248
    @samuelbassi248 Год назад

    Very clear explanation. Thank you!

  • @TuffyMonroe
    @TuffyMonroe Год назад

    Been waiting for this for years! What happens for example, when I secure apig with an iam role used by cognito idp as the auth role? I did not see any way to do this in the UI, so if I load a template that has this already in it, how does the UI handle it? This use case is just an example of a yaml template that has services that are not supported by the application composer ui?

  • @sandygeethu3449
    @sandygeethu3449 Год назад

    great demo.. if there is an option to see the CDK code in canvas visualization it changes a lot to see an entire project code in a whole different way, even if it doesnot have the ability modify the CDK code, visualization makes things easier to locate details in one place. I think it can be done by getting the CF from CDK and use it as an input for composer, but if there is a direct way it is much easier

  • @zagamendes2438
    @zagamendes2438 Год назад

    Why didn’t you just add a new row/item with pk=user_1234 and sk=team_1234?

  • @laithabueid5160
    @laithabueid5160 Год назад

    is there any perquisites to learn it ?