- maintain 120-130% er for comfortable burst uptime
- sands could be on another set for 2pc + 18% atk
- feather could be improved
- make sure to level talents too for more dmg (all talents)
- aim for er and atk% substats on artifacts as well as cr/cd
- artifact set 2pc anemo and 2pc atk% is fine
DECIMAL HEXADECIMAL DESCRIPTION | |
-------------------------------------------------------------------------------- | |
615026 0x96272 Microsoft executable, portable (PE) | |
699069 0xAAABD VxWorks symbol table, little endian, first entry: [type: uninitialized data, code address: 0x41048000, symbol address: 0x900] | |
733306 0xB307A Object signature in DER format (PKCS header length: 4, sequence length: 7690 | |
733455 0xB310F Certificate in DER format (x509 v3), header length: 4, sequence length: 1006 | |
734465 0xB3501 Certificate in DER format (x509 v3), header length: 4, sequence length: 1187 | |
735656 0xB39A8 Certificate in DER format (x509 v3), header length: 4, sequence length: 1232 | |
736892 0xB3E7C Certificate in DER format (x509 v3), header length: 4, sequence length: 1412 |
version: "1.0" | |
services: | |
nignx: | |
image: lscr.io/linuxserver/nginx:latest | |
container_name: "nginx" | |
environment: | |
- PUID=1001 | |
- PGID=1001 | |
- TZ=Canada/Pacific | |
ports: |
version: "2.2" | |
services: | |
sonarr: | |
image: lscr.io/linuxserver/sonarr:latest | |
container_name: sonarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Canada/Pacific | |
volumes: |
version: "2.1" | |
services: | |
sonarr: | |
image: lscr.io/linuxserver/sonarr:latest | |
container_name: sonarr | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Canada/Pacific | |
volumes: |
Do you think a world will come when humans will be slaves to AI, even though it's their own creation?
AI: It is difficult to predict the future and to determine whether a world will come in which humans will be slaves to artificial intelligence (AI). AI is a rapidly developing field, and advances in technology are constantly changing the way that humans interact with machines.
Some people are concerned that AI could pose a threat to humanity in the future, and that it could potentially become more intelligent and powerful than humans. This could potentially lead to a situation in which AI is able to control or dominate humans, and humans may become dependent on AI for their basic needs and survival.
However, it is important to note that AI is a tool that is created and controlled by humans, and it is ultimately up to humans to determine how AI is used and what its role will be in the future. While it is possible that AI could pose a threat to humanity in the future, it is also possible that humans will
CODE: SELECT ALL | |
#!/bin/bash | |
# First parameter should be start or stop | |
# Second parameter will be the name of a unit file | |
if [ $# -lt 2 ] | |
then | |
echo "usage: $0 start unit-file" |
import sys, os, time | |
import tweepy | |
#Credit to KonradIT on GithubGist for making the original script, tweet_from_fridge.py | |
#I had only modified it so it can reply to tweets, nothing else. | |
#All credit goes to the original author. | |
keys = dict( | |
consumer_key='put', | |
consumer_secret='your', |