Showing posts with label web. Show all posts
Showing posts with label web. Show all posts

Reading Notes #587

It is time to share new reading notes. It is a habit I started a long time ago where I share a list of all the articles, blog posts, and books that catch my interest during the week. 

 

If you think you may have interesting content, share it!

Cloud

Low Code

Programming

Miscellaneous

~Frank

Reading Notes #481

Frank's Lego R2D2

Cloud


Programming


Podcast


~Frank


Reading Notes #479


Cloud


Programming


Podcasts

~Frank

Reading Notes #374

Cloud


Programming


Podcast

  • Hevesh5 - Making a YouTube Career from Viral Domino Art (#46) (That Creative Life) - Great show. An amazing story.
  • Azure Functions using Node with Simona Cotin (.NET Rocks!) - Great show. I just switch my website following that Jam stack pattern. I was planning to use Azure Functions to add a few little twists.... I'm happy to see that I not alone thinking like that!
  • 0230 - Alain Vezina - Le métier du DevOps (Visual Studio Talk Show) - Super épisode, très intéressant d'entendre parler du rôle de DevOps de quelqu'un qui le vie au quotidien. Merci de la suggestion, je crois, bien que je suis du pour relire The Pheonix Project.
  • Goal Setting Tips & Tracking KPIs (Video Pursuit Podcast) - Really interesting episode. Everybody is talking about matrix and KPI... But it's not frequent to hear about the "how". I really like how the goals are explained, achievable, but not easy... And how we should react when we don't reach them.

Miscellaneous


~ Good week!

Reading Notes #262

2017Cloud


Programming


Databases


Miscellaneous

  • Identity vs Permissions (Dominick Baier) - Good post that demystifies some point between two distinct but very often mixed concept.


Reading Notes #166

IMG_20141123_093027577_HDRSuggestion of the week


Cloud


Programming


Miscellaneous


~Frank B.


Reading Notes #137

Suggestion of the week


Cloud


Programming


Mobile


Miscellaneous



~Frank


Reading Notes #134

Cloud


Programming

In my previous post, Git for Team Foundation Developers , I showed how to create a project in Visual Studio Online,

Miscellaneous




~Frank


Reading Notes # 20

Stuff you love to do, Stuff you're good at, Stuff someone will pay you to do.

 

Cloud


Programming

  • SQL in the Wild - I didn't know about this "filtered index" feature available in MSSQL 2008. Really nice feature.

Miscellaneous


~Franky


    Important: ASP.NET Security Vulnerability - ScottGu's Blog

    Scott Gu vient de mettre sur son blogue un important message expliquant une vulnérabilité de Asp.Net, ainsi qu'une façon de contourner le problème en attendant une mise à jour.

    À lire absolument si vous développez avec Asp.Net.


    A few hours ago we released a Microsoft Security Advisory about a security vulnerability in ASP.NET. This vulnerability exists in all versions of ASP.NET.

    This vulnerability was publically disclosed late Friday at a security conference.� We recommend that all customers immediately apply a workaround (described below) to prevent attackers from using this vulnerability against your ASP.NET applications.

    What does the vulnerability enable?

    An attacker using this vulnerability can request and download files within an ASP.NET Application like the web.config file (which often contains sensitive data)." [read more]

    ~Franky

    Fenêtre de dialogue JQuery avec ajax

    Un collègue m'a demandé de l'aider pour faire une fenêtre de dialogue pour une application web. Rien de plus simple avec JQueryUI, un simple .dialog() et... "Oui mais le contenu du dialogue doit être une page externe...".   Ah ah, voilà qui semblait compliquer les choses.

    Normalement pour faire un dialogue c'est très simple:
       1: <div id="MyDialog">
       2:  <h2>Bravo!</h2>
       3:  <p>Vous avez affiché une boite de dialogue avec succès</p>
       4: </div>
       5: <script type="text/javascript">
    
       6:  $(document).ready(function(){
       7:   $("#MyDialog").dialog();  
       8:  });
    9:</script>