multiple variable looping bash
If you want to loop through something with more than one variable in bash this is your ticket to ride: #!/usr/bin/env bash while read -r x y z; do echo “$x $y $z” done <<‘_____HERE a b c 1 2 Read more
If you want to loop through something with more than one variable in bash this is your ticket to ride: #!/usr/bin/env bash while read -r x y z; do echo “$x $y $z” done <<‘_____HERE a b c 1 2 Read more
The Julia community seems shy about posting examples of database things… use LibPQ, Tables db=”db” server=”localhost” usr=”psql” passwd=”nope” conn = LibPQ.Connection(“host=$server dbname=$db user=$usr password=$passwd”) sql = “””select char from foo””” conn2 = LibPQ.Connection(“host=$server dbname=$db user=$usr password=$passwd”) sql2 = prepare(conn2, “””update Read more
So the last time I purchased a new wireless router – I tried to find a wireless router that had a future – something where I could replace the stock firmware once the software updates stopped coming from the manufacture. Read more
https://github.com/JuliaDatabases/DBInterface.jl mariadb — mysql while doing a query on “conn”, I opended second connection “conn2”, and updated the table while stepping through the results of the first query conn = DBInterface.connect(MySQL.Connection,”localhost”,”user”,”pass”,db=”foo”) sql = “””select char from foo””” response = DBInterface.execute(conn,sql) Read more
LOAD DATA LOCAL INFILE ‘/var/tmp/foo.csv’ INTO TABLE foo FIELDS TERMINATED BY ‘,’ ENCLOSED by ‘”‘ LINES TERMINATED BY ‘\n’;
https://docs.themeisle.com/article/562-how-to-remove-opacity-in-hestia .hestia-ribbon.section-image:after { background-color: rgba(0, 0, 0, 0) !important; }
installing dd-wrt on a EA6350v2 from linux. So linksys hasn’t released a firmare update for the EA6350V2 since 11/2017 and it is still on a 2.6 kernel, so I wanted to try to get to a newer kernel – DD-WRT Read more
ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 -oCiphers=+aes128-cbc
checkout: https://usecallmanager.nz/ lots of funky configs out there… If the phone is able to get its IP address over dhcp, its config via tftp, and you have a valid ntp IP address in your config file and you have connectivity Read more