Login
Discover
Waves
Decks
Plus
Login
Signup
Laura Durieux
@lauweded
52
Young Dev Girl
Followers
3
Following
5
Resource Credits
Available
Used
Location
Europe
Website
https://lauradurieux.dev/
Created
March 20, 2021
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
lauweded
Programming & Dev
2021-04-25 13:58
DATEADD to change datetimes in SQL Server
Basic syntax DATEADD(<Unit of time>, <Units>, <Date>) -- Add 5 days to 04/23/2021 DATEADD(DAY, 5, '2021-04-23') -- Substract 5 days to 04/23/2021 DATEADD(MONTH, -5, '2021-04-23') Units
$ 0.977
21
1
lauweded
Programming & Dev
2021-04-24 10:49
Use of the While Loop with SQL
A little reminder of how to use while loop with SQL. Basic structure DECLARE @Count INT SET @Count = 0 WHILE(@Count < 11) BEGIN PRINT 'I have walked ' + CONVERT(VARCHAR, @Count) + ' meters today' SET
$ 26.591
86
3
lauweded
Programming & Dev
2021-04-23 09:22
Table variable in SQL Server
Let's have a preview of this amazing thing that is the Table variable in SQL Server. Basic syntax DECLARE @DevExperts TABLE (Id INT PRIMARY KEY IDENTITY(1,1), Name VARCHAR(MAX), Country VARCHAR(MAX)) The
$ 1.229
24
lauweded
Programming & Dev
2021-03-31 11:10
How to get the difference between two DateTime in hour with C# ?
I am currently developing a mobile app with Xamrin.Forms and I had to know the number of hours between two dates. It seems dumb, but in fact, it is quite tough to find a smart and optimised way to do it.
$ 3.027
26
5
lauweded
introduceyourself
2021-03-28 10:39
Let's introduce myself ! ✨
Hi, guyzzz! 🎉 Let me introduce myself! I am a young passionate and ambitious web developer, or like I love to define myself, I am a Dev Girl. Like that, people don't call Web Designer anymore. Bruh. I
$ 1.585
8
4
lauweded
Programming & Dev
2021-03-24 08:44
How create #hex colors in Xamarin.Forms in XAML ?
I was shocked, how long it took me to succeed in finding how to use the alpha layer in hexadecimal colours in XAML. Well, turns out it is really simple. Here is the official doc of Xamarin.Forms explaining
$ 33.547
74
3
lauweded
Programming & Dev
2021-03-21 17:20
Let's create a smooth scroll !
Let's create my first post in this community! I want to share a little JS library really cool! It lets you have a smooth scroll easily and make easy parallax animations. Let's dig into it! Locomotive JS
$ 3.635
24
1