This file contains 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
import 'package:flutter/material.dart'; | |
import 'package:signals/signals_flutter.dart'; | |
void main() { | |
runApp(const CheckApp()); | |
} | |
class CheckApp extends StatelessWidget { | |
const CheckApp({super.key}); |
This file contains 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
import rtc | |
import time | |
import board | |
from adafruit_magtag.magtag import MagTag | |
from adafruit_oauth2 import OAuth2 | |
from adafruit_bitmap_font import bitmap_font | |
from adafruit_display_text import label | |
class Calendar: |
This file contains 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
> Having trouble rendering njk template ./src/home.njk | |
`TemplateContentRenderError` was thrown | |
> (./src/home.njk) | |
Error: Input data should be a String | |
`Template render error` was thrown: | |
Template render error: (./src/home.njk) | |
Error: Input data should be a String | |
at Object._prettifyError (/Users/jannie/Sites/bioy-marketing/node_modules/nunjucks/src/lib.js:36:11) |
This file contains 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
{ | |
"id": "7f8f86dd-e4f3-4eac-9e6e-ef86499091fa", | |
"acceptMappedClaims": null, | |
"accessTokenAcceptedVersion": null, | |
"addIns": [], | |
"allowPublicClient": false, | |
"appId": "1a5ca037-2dca-4a8b-a465-f088ca2e8cc4", | |
"appRoles": [], | |
"oauth2AllowUrlPathMatching": false, | |
"createdDateTime": "2020-09-28T11:13:03Z", |
This file contains 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
import 'dart:async'; | |
Future main() async { | |
print('start'); | |
final futures = <Future>[ | |
fetchLong(), | |
fetchShort(), | |
]; |
This file contains 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
# Redirect every request to HTTPS... | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name .example.com; | |
return 301 https://$host$request_uri; | |
} | |
# Redirect SSL to primary domain SSL... |
This file contains 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 uccf = new function() { | |
let extrasAdded = false; | |
let config = null; | |
let editor = null; | |
this.init = function() { | |
if ( | |
typeof CKEDITOR == "undefined" || | |
!CKEDITOR.instances.hasOwnProperty("body") | |
) |
This file contains 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
<?php | |
class Source | |
{ | |
const CONNECTION = 'sqlite:pim6.sqlite'; | |
private $db; | |
public function __construct() |
This file contains 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"?> | |
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<UsingTask TaskName="Increment" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll"> | |
<ParameterGroup> | |
<Number ParameterType="System.Int64" Required="true"/> | |
<Incremented ParameterType="System.Int64" Output="true"/> | |
</ParameterGroup> | |
<Task> | |
<Code Type="Fragment" Language="cs"> | |
Incremented = Number + 1; |
This file contains 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 Langham | |
{ | |
public class AndroidLocale : Locale | |
{ | |
public AndroidLocale() : base() | |
{ | |
} | |
public override void ApplyLocale() |
NewerOlder