Combinations | Alt | Alt + Ctrl | Alt + Shift | Alt + Shift + Ctrl | Right Alt |
---|---|---|---|---|---|
A | á | à | Á | À | ã |
E | é | è | É | È | € |
I | í | ì | Í | Ì | |
O | ó | ò | Ó | Ò | õ |
U | ú | ù | Ú | Ù |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace FitLivre.DataStructures | |
{ | |
public class RecurrentDateTimeOffset | |
{ | |
private readonly RecurrentDateTimeKind _recurrencyKind; | |
private readonly DateTimeOffset[]? _fixedFiniteOccurrences; | |
private readonly RecurrentWeekDayAndTime[]? _perWeekOccurrences; | |
private readonly RecurrentMonthDayAndTime[]? _perMonthOccurrences; | |
private readonly RecurrentYearMonthDayAndTime[]? _perYearOccurrences; | |
private readonly TimeSpan _tolerance; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const words = ["cat", "act", "tac", "art", "tar"]; | |
const expectedOutput = { | |
"act": ["cat", "act", "tac"], | |
"atr": ["art", "tar"], | |
} | |
const sortedWords = words | |
.map(word => word.split('')) | |
.map(array => array.sort()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Either<TLeft, TRight> { | |
protected leftValue: TLeft = null; | |
protected rightValue: TRight = null; | |
static left<T>(value: T) { | |
const either = new Either<T, any>(); | |
either.leftValue = value; | |
return either; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Test | |
{ | |
public void Deconstruct(out string a, out string b) | |
{ | |
a = "hello"; | |
b = "world"; | |
} | |
} | |
(string a, string b) = new Test(); |
string s = "0";
switch (s)
{
case [var c] when c is >= '0' and <= '9':
Console.WriteLine("break");
break;
default: break;
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Listify | |
{ | |
public int Start { get; } | |
public int End { get; } | |
public Listify(int start, int end) | |
{ | |
Start = start; | |
End = end; | |
} |
To apply to Entria as an intern we wanna know how fast you can learn our stack and how good do you use learn in public. Be creative, code to impress. Build a CRUD GraphQL + Relay hooks. You can also for help on twitter (learn in public) or slack.
- How to get hired
- You gonna work in Woovi project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Dynamic assignments to Objects in JavaScript: | |
* In JavaScript, object field names and other factors can be dynamic because | |
* all the objects in the language are 'dynamic' and the types/values | |
* are defined in runtime. | |
*/ | |
/* | |
* Getting started: this function returns a dynamic object that depends | |
* on the passed boolean argument. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const options = { | |
upload: () => <UploadScreen />, | |
platformSelection: () => <PlatformSelectionScreen />, | |
login: => () => <LoginScreen />, | |
details: => () => <DetailsScreen />, | |
review: => () => <ReviewScreen />, | |
finish: => () => <UploadButton /> | |
} | |
return ( |
NewerOlder