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
[ | |
{ | |
"name": "MossBone Crawler", | |
"displayName": "Mossgrub", | |
"isRequiredForCompletion": true, | |
"requiredTypeName": "Required", | |
"requiredType": 1, | |
"killsRequired": 25 | |
}, | |
{ |
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
/* Magic Mirror | |
* Module: MMM-GoogleCalendar | |
* | |
* adaptation of MM default calendar module for Google Calendar events | |
* MIT Licensed. | |
*/ | |
Module.register("MMM-GoogleCalendar", { | |
// Define module defaults | |
defaults: { | |
maximumEntries: 10, // Total Maximum Entries |
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
[gcode_macro _LOAD_MESH_TEMP] | |
gcode: | |
{% set BED_TEMP = params.BED_TEMP|default(0)|int %} | |
{% set FORCE = params.FORCE|default(0)|int %} | |
{% set SAVE = params.SAVE|default(0)|int %} | |
{action_respond_info("- AUTOMATED BED MESH GENERATOR -")} | |
{% if BED_TEMP|int < 30 %} | |
{action_respond_info("Your bed temp is to low, make sure it is at least 30 or higher")} | |
{% else %} |
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 std::string moveCodes[18] = { | |
"R", | |
"L", | |
"B", | |
"F", | |
"U", | |
"D", | |
"R2", | |
"L2", | |
"B2", |
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 System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using System.Text.Json; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; | |
using AngleSharp.Dom; | |
using AngleSharp.Html.Dom; | |
using YoutubeExplode; |
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
// reference commercetools.NET.SDK via nuget | |
using System; | |
using System.Threading.Tasks; | |
using commercetools.Categories; | |
using commercetools.Common; | |
using commercetools.ProductProjections; | |
using commercetools.ProductProjectionSearch; | |
using commercetools.Products; | |
using commercetools.Products.UpdateActions; |
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
import 'dart:io'; | |
import 'package:flutter/material.dart'; | |
import 'package:image_picker/image_picker.dart'; | |
import 'package:flutter_native_image/flutter_native_image.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override |
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
import 'dart:io'; | |
import 'package:flutter/material.dart'; | |
import 'package:image_picker/image_picker.dart'; | |
import 'package:flutter_native_image/flutter_native_image.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override |
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
param( | |
[Parameter(Mandatory = $true)] | |
[string]$ProjectName, | |
[Parameter(Mandatory = $true)] | |
[string]$SolutionName, | |
[Parameter(Mandatory = $true)] | |
[string]$DotNetTemplateName | |
) | |
$ErrorActionPreference = "Stop" |
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 Pagination | |
{ | |
public int PageIndex { get; private set; } | |
public int TotalPages { get; private set; } | |
public List<object> RangeWithDots { get; private set; } = new List<object>(); | |
public bool HasPreviousPage | |
{ | |
get | |
{ |
NewerOlder