CentOS, Ubuntu, Slackware, etc. Whatever Linux-based OS it is, you can create a bootable USB for it by using a Mac.
Download it, copy it, whatever it takes to prepare that Linux-based OS .iso file
| #!/bin/bash | |
| # Colors | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| NO_COLOR='\033[0m' | |
| BLUE='\033[0;34m' | |
| YELLOW='\033[0;33m' | |
| NO_COLOR='\033[0m' |
| from rest_framework import serializers | |
| from rest_framework.fields import empty | |
| from rest_framework.utils import html | |
| class CharacterSeparatedField(serializers.ListField): | |
| """ | |
| Character separated ListField. | |
| Based on https://gist.github.com/jpadilla/8792723. |
CentOS, Ubuntu, Slackware, etc. Whatever Linux-based OS it is, you can create a bootable USB for it by using a Mac.
Download it, copy it, whatever it takes to prepare that Linux-based OS .iso file
| <html> | |
| <head> | |
| <style type="text/css"> | |
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif | |
| } | |
| #clock { | |
| display: flex; | |
| flex-flow: column; |
| var exports = {}; | |
| var module = {}; | |
| function require(id) { | |
| if ( 'undefined' === typeof arguments.callee.require_stack ) { arguments.callee.require_stack = []; } | |
| var require_stack = arguments.callee.require_stack; | |
| if ( 'undefined' === typeof arguments.callee.modules ) { arguments.callee.modules = {}; } | |
| var modules = arguments.callee.modules; | |
| // if currently requiring module 'id', return partial exports |