پنل تحت وب مدیریت V2ray و ساخت کاربر و مدیریت سرور
mkdir x-ui && cd x-ui
docker run -itd --network=host \
-v $PWD/db/:/etc/x-ui/ \
-v $PWD/cert/:/root/cert/ \
| # Sample script to use OpenAI Whisper API | |
| # This script demonstrates how to convert input audio files to text, fur further processing. | |
| # The code can be still improved and optimized in many ways. Feel free to modify and use it | |
| # for your own needs. | |
| # | |
| import openai | |
| from openai import OpenAI | |
| client = OpenAI(api_key="sk-proj-....") |
For enabling the general query logging:
SET global general_log = 1;
SET global log_output = 'table'For disabling:
SET global general_log = 0;| on escape_quotes(string_to_escape) | |
| set AppleScript's text item delimiters to the "\"" | |
| set the item_list to every text item of string_to_escape | |
| set AppleScript's text item delimiters to the "\\\"" | |
| set string_to_escape to the item_list as string | |
| set AppleScript's text item delimiters to "" | |
| return string_to_escape | |
| end escape_quotes | |
| tell application "Spotify" |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| #!/usr/bin/env python3 | |
| import subprocess | |
| import json | |
| import os | |
| from pathlib import Path | |
| import requests | |
| from requests.compat import urljoin |
In this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc
Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server
Use this link and get $10 free. Just select the $5 plan unless this a production app.
| # Docker-in-Docker Gitlab runners setup taken from: | |
| # https://medium.com/@tonywooster/docker-in-docker-in-gitlab-runners-220caeb708ca | |
| dind: | |
| restart: always | |
| privileged: true | |
| volumes: | |
| - /var/lib/docker | |
| image: docker:17.09.0-ce-dind | |
| command: | |
| - --storage-driver=overlay2 |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
Table of Contents