create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| Interbase connection string | |
| ([^:]*)(:)(.+) | |
| Example: | |
| localhost:d:\ais\ins.ib | |
| $1 = localhost | |
| $3 = d:\ais\ins.ib |
| <configuration> | |
| <system.webServer> | |
| <staticContent> | |
| <mimeMap fileExtension=".xaml" mimeType="application/xaml+xml" /> | |
| <mimeMap fileExtension=".xap" mimeType="application/x-silverlight-app" /> | |
| <mimeMap fileExtension=".xbap" mimeType="application/x-ms-xbap" /> | |
| </staticContent> | |
| </system.webServer> | |
| </configuration> |
| using System; | |
| using System.Net.Mail; | |
| using System.Windows.Forms; | |
| namespace TestingMail | |
| { | |
| public partial class Form1 : Form | |
| { | |
| public Form1() | |
| { |
| select a.TMP$STATE, a.TMP$USER, a.TMP$USER_IP_ADDR, a.TMP$USER_HOST, a.TMP$USER_PROCESS | |
| from TMP$DATABASE d join TMP$ATTACHMENTS a on d.TMP$DATABASE_ID = a.TMP$DATABASE_ID |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| Add `System.Runtime.Serialization` to the using clauses | |
| public static object Deserialize(string path) | |
| { | |
| using (var sr = new FileStream(path, FileMode.Open)) | |
| { | |
| creditBureau p = null; | |
| XmlDictionaryReader reader = XmlDictionaryReader.CreateTextReader(sr, new XmlDictionaryReaderQuotas()); | |
| var serializer = new DataContractSerializer(typeof(creditBureau)); |
| #!/bin/bash | |
| mkdir -p ~/mongodb/data | |
| # Define Hostnames | |
| h1="bytemares1" | |
| h2="bytemares2" | |
| h3="bytemares3" | |
| # Start containers with specific hostnames and replica set name | |
| docker run -d -P -p 33331:27017 --name bytemares1 -v ~/mongodb/data:/data/db --hostname="$h1" mongo mongod --replSet rset --noprealloc --smallfiles |
| ``` | |
| git commit-tree HEAD^{tree} -m "new base commit message" | |
| ``` | |
| copy the SHA | |
| ``` | |
| git reset [SHA] | |
| git push origin -f main | |
| ``` |
Download the latest Lua and LuaJIT sources
Create temporary folder for Lua sources.
I assume you would use C:\Temp\ folder.
Visit Lua FTP webpage and download the latest Lua source archive, currently it is lua-5.4.3.tar.gz