Qu'affiche le programme suivant ?
function f() {
<!DOCTYPE html> | |
<html> | |
<body> | |
<style> | |
body { | |
font: 12px sans-serif; | |
} | |
div { |
#!/bin/bash | |
apps=(\ | |
"com.google.android.apps.tachyon" # Google Duo \ | |
"com.google.android.music" # Google Music \ | |
"com.google.android.videos" # Play Movies \ | |
"com.android.browser" # Mi Browser \ | |
"com.miui.bugreport" # Mi Feedback \ | |
"com.miui.notes" # Mi Notes \ | |
"com.miui.videoplayer" # Mi Video \ | |
"com.miui.player" # Mi Music \ |
#cloud-config | |
groups: | |
- user | |
users: | |
- name: <USER> | |
primary-group: <USER> | |
ssh-authorized-keys: | |
- <PUBLIC KEY> | |
sudo: ['ALL=(ALL) NOPASSWD:ALL'] | |
groups: sudo |
#!/bin/bash | |
#### dns_verify.sh | |
# | |
NETS="192.168.1" | |
IPS=$(seq 1 254) ## for Linux | |
# | |
# IPS=$(jot 254 1) ## for OpenBSD or FreeBSD | |
# IPS=$(seq 1 254) ## for Linux | |
# | |
echo |
# Description: Boxstarter Script | |
# Author: Jean-Louis Jouannic <[email protected]> | |
# Last Updated: 2022-09-26 | |
# Tested on: Windows 10 Professional 64 bits v21H2 | |
# | |
# Install Boxstarter from an _elevated_ PowerShell session: | |
# > Set-ExecutionPolicy RemoteSigned -Scope Process -Force; . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# Run this Boxstarter script by calling the following from the Boxstarter shell: | |
# |
#!/bin/sh | |
# http://www.alfredklomp.com/programming/shrinkpdf | |
# Licensed under the 3-clause BSD license: | |
# | |
# Copyright (c) 2014, Alfred Klomp | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: |