A bash script to create a favicon.ico
via Imagemagick.
Usage:
./favicon.sh myimage.png
Creates a favicon.ico
file in the same folder.
package org.example; | |
// https://mvnrepository.com/artifact/com.ibm.icu/icu4j/73.1 | |
import com.ibm.icu.text.IDNA; | |
// https://mvnrepository.com/artifact/com.sanctionco.jmail/jmail/1.5.0 | |
import com.sanctionco.jmail.Email; | |
import com.sanctionco.jmail.EmailValidationResult; | |
import com.sanctionco.jmail.JMail; | |
public class IdnEmailExample { |
### Send POST request with body as parameters | |
< {% | |
const props = { | |
email: '[email protected]', | |
firstname: 'Test', | |
lastname: 'User', | |
company: 'Example & Co', | |
}; | |
const body = Object.keys(props).map(function(key) { |
<script setup> | |
import { ref } from 'vue' | |
const show = ref(true); | |
function toggleShow() { | |
show.value = !show.value; | |
} | |
// see https://github.com/vuejs/core/blob/v3.2.33/packages/runtime-dom/src/directives/vShow.ts | |
const vVisible = { |
A bash script to create a favicon.ico
via Imagemagick.
Usage:
./favicon.sh myimage.png
Creates a favicon.ico
file in the same folder.
var util = require('util'); | |
var WaitForElementVisible = require('nightwatch/lib/api/element-commands/waitForElementVisible'); | |
function WaitForElementClickable() { | |
WaitForElementVisible.call(this); | |
this.expectedValue = 'clickable'; | |
} | |
util.inherits(WaitForElementClickable, WaitForElementVisible); |