add action=drop chain=forward connection-nat-state=!dstnat connection-state=new
должно быть
add action=drop chain=forward connection-nat-state=!dstnat connection-state=new in-interface-list=WAN
git config --local user.name ...
git config --local user.email ...
Как разлогиниться в гитхабе?
echo "url=https://github.com" | git credential reject
~/.ssh/config
несколько виртуальных хостовHost github-alice
Hostname github.com
IdentityFile=/home/user/.ssh/alice_key
Host github-bob
Hostname github.com
IdentityFile=/home/user/.ssh/bob_key
git remote set-url origin git@github-alice:OWNER/alice-repo.git
How do I use multiple accounts with the same hosting provider using SSH?
\S*\d\S*
нужно из неё вытащить, то что выделено жирным
'Declare Private Integer constant.
Private Const MyInt As Integer = 5
MyInt = 6 ' эта строка не выполнится.
'Declare Private Integer variable.
Dim MyInt As Integer
MyInt = 5
MyInt = 6
Subject to the above license, You own all Assets You create with the Services, to the extent possible under current law. This excludes upscaling the images of others, which images remain owned by the original Asset creators. Midjourney makes no representations or warranties with respect to the current law that might apply to You. Please consult Your own lawyer if You want more information about the state of current law in Your jurisdiction. Your ownership of the Assets you created persists even if in subsequent months You downgrade or cancel Your membership. However, You do not own the Assets if You fall under the exceptions below.
If You are an employee or owner of a company with more than $1,000,000 USD a year in gross revenue and You are using the Services on behalf of Your employer, You must purchase a “Pro” membership for every individual accessing the Services on Your behalf in order to own Assets You create. If You are not sure whether Your use qualifies as on behalf of Your employer, please assume it does.
If You are not a Paid Member, You don’t own the Assets You create. Instead, Midjourney grants You a license to the Assets under the Creative Commons Noncommercial 4.0 Attribution International License (the “Asset License”).
The full text is accessible as of the Effective Date here: https://creativecommons.org/licenses/by-nc/4.0/leg....
Sub test()
Dim x, y
Range("A1").Value = 123
x = Range("A1")
Set y = Range("A1")
End Sub
По поводу почему не платят, спрашивают, а где готовый проект?
Переживаю за то что они не заплатят за мои труды и будут на моей работе зарабатывать.
Sub AddSharpToBoldText()
Dim cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Font.Bold = True Then
cell.Value = "# " & cell.Value
End If
Next cell
End Sub
Sub AddMinusSignToRedText()
Dim cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Font.Color = RGB(255, 0, 0) Then
cell.Value = "- " & cell.Value
End If
Next cell
End Sub
bot.on('guildMemberAdd', function (member) {
let embed = new MessageEmbed();
embed.setTitle('Новый пользователь!')
.setColor('#ffffff') //Цвет полоски
.setDescription(member.user.tag + ' присоединился к серверу!')
.setThumbnail(member.user.avatarURL())
.setFooter('Всего пользователей: ' + member.guild.memberCount)
const channel = guild.channels.cache.get('ID канала куда отправляется сообщение');
channel.send(`<@${member.user.id}>${content}`, { embed });
})