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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/remelehane/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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
testWidgets('cant', (tester) async { | |
when(mockUrlLauncherHelper.cl(any)).thenAnswer((_) async => false); | |
when(mockCoreCubit.state).thenReturn(fixtureCoreCubitLoaded); | |
// assert | |
const mockUrl = 'https://test.test'; | |
Future<void> future(BuildContext context) async { | |
await Future.delayed(const Duration(seconds: 1)); | |
return htmlContentUtils.launchURL(context, mockUrl); |
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
dynamic launchURL(BuildContext context, String url) async { | |
if (url == 'about:blank') return; | |
if (url.startsWith('internal://')) { | |
final isGroups = url.contains('/groups'); | |
if (isGroups) return _handleUnsupported(context); | |
} | |
} |
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'; | |
import 'package:flutter/src/widgets/framework.dart'; | |
import 'package:flutter_hooks/flutter_hooks.dart'; | |
class _CompleterHook extends Hook<Completer> { | |
@override | |
HookState<Completer, Hook<Completer>> createState() => _CompleterHookState(); | |
} |
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
pool: | |
name: Azure Pipelines | |
demands: xcode | |
steps: | |
- script: 'brew install fastlane' | |
displayName: 'Install fastlane' | |
- script: | | |
gem install bundler | |
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:io'; | |
import 'dart:convert'; | |
import 'package:cookie_jar/cookie_jar.dart'; | |
var cj = new CookieJar(); | |
class Session { | |
static HttpClient client = new HttpClient() |
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
0.0.0.0 mmofreegames.online |
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
export const SEARCH_POST_START = 'SEARCH_POST_START'; | |
export const searchPostNoResults = data => ({ | |
type: SEARCH_POST_NO_RESULTS, data, | |
}); |
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
{"lastUpload":"2020-12-15T03:11:23.399Z","extensionVersion":"v3.4.3"} |
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 SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin'); | |
const WebpackPwaManifest = require('webpack-pwa-manifest'); | |
const PUBLIC_PATH = 'https://www.remelehane.me/'; | |
module: { | |
// Snip | |
plugins: [ | |
// Snip | |
new SWPrecacheWebpackPlugin( |
NewerOlder