How to use:
./wordle.sh
Or try the unlimit mode:
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width = device-width,initial-scale = 1.0"> | |
| <title>Web Share API + AddThis Sharing Buttons</title> | |
| <meta name="description" content="Learn how to use Web Share API with conditional AddThis Sharing Buttons"> | |
| <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous"> | |
| <button id="shareButton" onclick="share(this)"> | |
| <i class="fas fa-share-alt"></i> |
| import {Injectable} from '@angular/core'; | |
| import {Subject, Subscription} from 'rxjs'; | |
| /** | |
| * A custom Events service just like Ionic 3 Events https://ionicframework.com/docs/v3/api/util/Events/ which got removed in Ionic 5. | |
| * | |
| * @author Shashank Agrawal | |
| */ | |
| @Injectable({ | |
| providedIn: 'root' |
| /** | |
| * Author: Sam Roose | |
| */ | |
| import { Directive, ElementRef } from '@angular/core'; | |
| @Directive({ | |
| selector: '[appNoArrow]' | |
| }) | |
| export class NoArrowDirective { |
In Users/hugomatilla.bash_profile add
export PATH=$PATH:/Users/hugomatilla/Documents/AndroidSDKs/sdk/platform-tools
export PATH=$PATH:/Users/hugomatilla/Documents/AndroidSDKs/sdk/tools
cd /Users/hugomatilla/Documents/AndroidSDKs/sdk/platform-tools
In your command-line run the following commands:
brew doctorbrew update| #!/bin/sh | |
| # SPDX-FileCopyrightText: 2017-2024 SanderTheDragon <sanderthedragon@zoho.com> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| arch=$(dpkg --print-architecture) | |
| echo "Detected architecture: $arch" | |
| case "$arch" in |
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
| fastlane_version "1.111.0" | |
| scheme = "YOur scheme project" | |
| configuration = "Release" # Debug or Release | |
| project_name = "Your Project Name" | |
| export_method = "enterprise" # app-store, ad-hoc, package, enterprise, development, developer-id | |
| timestamp = Date.parse(Time.now.to_s) | |
| ipa_name = "#{project_name}_#{timestamp}.ipa" |