start new:
tmux
start new with session name:
tmux new -s myname
| --- /etc/ssl/openssl.cnf~original 2022-03-16 08:35:51.000000000 +0000 | |
| +++ /etc/ssl/openssl.cnf 2022-05-04 02:37:30.336530711 +0000 | |
| @@ -56,6 +56,7 @@ | |
| # List of providers to load | |
| [provider_sect] | |
| default = default_sect | |
| +legacy = legacy_sect | |
| # The fips section name should match the section name inside the | |
| # included fipsmodule.cnf. | |
| # fips = fips_sect |
| $dlurl = 'https://7-zip.org/' + (Invoke-WebRequest -UseBasicParsing -Uri 'https://7-zip.org/' | Select-Object -ExpandProperty Links | Where-Object {($_.outerHTML -match 'Download')-and ($_.href -like "a/*") -and ($_.href -like "*-x64.exe")} | Select-Object -First 1 | Select-Object -ExpandProperty href) | |
| # modified to work without IE | |
| # above code from: https://perplexity.nl/windows-powershell/installing-or-updating-7-zip-using-powershell/ | |
| $installerPath = Join-Path $env:TEMP (Split-Path $dlurl -Leaf) | |
| Invoke-WebRequest $dlurl -OutFile $installerPath | |
| Start-Process -FilePath $installerPath -Args "/S" -Verb RunAs -Wait | |
| Remove-Item $installerPath |
| # Connect to TV | |
| adb connect <TV_IP> | |
| # verify devices | |
| adb devices | |
| # list installed packages | |
| adb shell pm list packages -f -3 | |
| # list all packages | |
| adb shell pm list packages -f |
| diff --git a/config.mk b/config.mk | |
| index 7084c33..1b29d76 100644 | |
| --- a/config.mk | |
| +++ b/config.mk | |
| @@ -15,7 +15,7 @@ XINERAMALIBS = -lXinerama | |
| XINERAMAFLAGS = -DXINERAMA | |
| # freetype | |
| -FREETYPELIBS = -lfontconfig -lXft | |
| +FREETYPELIBS = -lfontconfig -lXft `pkg-config --libs freetype2` |
| Description: CloudFront Functions Demo | |
| # This example shows how to use CloudFront, CloudFront Functions, and CloudFormation. | |
| # In this simple example we setup CloudFront so that on any request we redirect to another site. | |
| # While basic, this example can be expanded to provide typical redirect scenarios, based | |
| # on the event passed to the function. | |
| # This example written by Mike Roberts (https://twitter.com/mikebroberts), Symphonia. | |
| # For more ideas about using AWS more effectively,see our blog at https://blog.symphonia.io/ |
| stage('NPM: Config') { | |
| withCredentials([usernamePassword(credentialsId: nexusCredentialsId, passwordVariable: 'NEXUS_PASSWORD', usernameVariable: 'NEXUS_USERNAME')]) { | |
| def token = sh(returnStdout: true, script: "set +x && curl -s -k -H \"Accept: application/json\" -H \"Content-Type:application/json\" -X PUT --data '{\"name\": \"$NEXUS_USERNAME\", \"password\": \"$NEXUS_PASSWORD\"}' https://nexus-repository.net:8088/repository/my-npm/-/user/org.couchdb.user:$NEXUS_USERNAME 2>&1 | grep -Po '(?<=\"token\":\")[^\"]*'") | |
| sh "set +x && echo \"//nexus-repository.net:8088/repository/my-npm/:_authToken=$token\" >> .npmrc" | |
| } | |
| } |