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 request = require('request') | |
const url = "https://sad-poincare-i76vm5gt.vertuozpilot.engie.fr/hemis/rest/WS_UserManagement/login" | |
const options = { | |
url: url, | |
headers: { | |
"Content-Type": "application/x-www-form-urlencoded", | |
"Cache-Control": "no-cache", | |
"Postman-Token": "314a0757-450b-7889-8c2f-9ca33b3c72a5" |
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
04e96779565af584ce2e9860d36dcb9ba94e63ab97d2bf6a5bee3b610ad1274a2da51d5c279ad66b34c0048dd86abc5847fae708ec8a46da3f49b427feefb2d1ab;MclloydVuong |
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 MyApp.Helpers { | |
public static class DeviceInformation { | |
/// <summary> | |
/// Finds out whether this is a low memory device using a Dependency Service | |
/// </summary> | |
[Preserve] | |
public static bool LowMemoryDevice { | |
get { | |
var mem = DependencyService.Get<IMemoryHelper>().GetTotalMemory(); |
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
using Xamarin.Forms; | |
namespace MyApp.Views.Controls { | |
public class CurvedSearchBar : SearchBar { | |
public static readonly BindableProperty CornerRadiusProperty = | |
BindableProperty.Create("CornerRadius", typeof(float), typeof(CurvedSearchBar), 0.0f); | |
public float CornerRadius { | |
get { return (float)GetValue(CornerRadiusProperty); } | |
set { SetValue(CornerRadiusProperty, value); } |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="Hum.Views.EventListItemView"> | |
<Label Text="{Binding Title}" /> | |
</ViewCell> |
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
bool load; | |
void LinkingPrevention() { | |
if (load) | |
try { | |
// Auth0 | |
var x = new JwtPayload(); | |
} catch (Exception e) { | |
} | |
} |
NewerOlder