slmgr /ipk your_license_keyReplace your_license_key with following volumn license keys according to Windows Edition:
| # documentation: https://docs.frappe.io/learning | |
| # slogan: Easy to Use, 100% Open Source Learning Management System. | |
| # tags: lms, self-hosted, dashboard | |
| # logo: svgs/frappe-learning.svg | |
| # port: 8080 | |
| name: frappe-learning | |
| version: '3.8' | |
| x-frappe-app-image: &frappe-app-image ghcr.io/frappe/lms:stable |
There are times when you need to log off your Linux Desktop, and you want a process to run in the background. TMUX manages this very well.
For this example, let's suppose you're running a long running task like running rspecs on your project and
it is 5pm, and you need to go home.
| redis_cache: redis-server config/redis_cache.conf | |
| redis_socketio: redis-server config/redis_socketio.conf | |
| redis_queue: redis-server config/redis_queue.conf | |
| web: bench serve --port 8000 | |
| socketio: /usr/bin/node apps/frappe/socketio.js | |
| custom_app: /usr/bin/node apps/custom_app/custom_node.js | |
| watch: bench watch | |
| schedule: bench schedule | |
| worker_short: bench worker --queue short |
| Future<Response> get(String url) async { | |
| String wsseHeader = await generateAuthHeader(); | |
| final response = await httpClient.get(url, | |
| headers: { | |
| HttpHeaders.contentTypeHeader: 'application/vnd.api+json', | |
| 'Authorization': 'WSSE profile="UsernameToken"', | |
| 'X-WSSE': wsseHeader | |
| }, | |
| ); |
| VMware vSphere 6 Enterprise Plus | |
| 1C20K-4Z214-H84U1-T92EP-92838 | |
| 1A2JU-DEH12-48460-CT956-AC84D | |
| MC28R-4L006-484D1-VV8NK-C7R58 | |
| 5C6TK-4C39J-48E00-PH0XH-828Q4 | |
| 4A4X0-69HE3-M8548-6L1QK-1Y240 | |
| VMware vSphere with Operations Management 6 Enterprise | |
| 4Y2NU-4Z301-085C8-M18EP-2K8M8 | |
| 1Y48R-0EJEK-084R0-GK9XM-23R52 |
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
| #!/bin/bash | |
| usage() | |
| { | |
| cat << EOF | |
| usage: $0 options | |
| This script sets ownership for all tables, sequences, views, and functions for a given schema. | |
| Run this script as your postgres OS user. |
| #!/bin/bash | |
| usage() | |
| { | |
| cat << EOF | |
| usage: $0 options | |
| This script sets ownership for all tables, sequences, views, and functions for a given schema. | |
| Run this script as your postgres OS user. |