This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| keytool.exe -list -v -keystore "%LocalAppData%\Xamarin\Mono for Android\Keystore\keystore\keystore.keystore" -alias NAME -storepass STOREPASS -keypass KEYPASS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| VBoxManage modifyhd --resize 60000 "/Users/USER/VirtualBox VMs/VM NAME/VM DISC NAME.vdi" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openssl s_client -connect HOSTNAME:443 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pvcreate /dev/mapper/mpathX | |
| vgextend vg /dev/mapper/mpathX | |
| lvextend -l +100%FREE /dev/mapper/vg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat /etc/shadow | awk -F: '($2 == "" ) { print $1 " does not have a password "}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo ln -s /usr/bin/python3 /usr/bin/python | |
| sudo ln -s /usr/local/bin/python3 /usr/local/bin/python |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #change your github location | |
| $github_directory = "C:\Users\galexiou\Documents\GitHub" | |
| Get-ChildItem $github_directory | ForEach-Object { | |
| if($_.Attributes -eq "Directory") | |
| { | |
| Write-Host $_.FullName | |
| Set-Location $_.FullName | |
| git fetch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using System.Configuration; | |
| using System.Collections.Generic; | |
| using System.Net; | |
| using Microsoft.Azure.Cosmos; | |
| using cosmos; | |
| using System.Timers; | |
| public class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using System.Configuration; | |
| using System.Collections.Generic; | |
| using System.Net; | |
| using System.Timers; | |
| using Azure.Storage.Blobs; | |
| using Azure.Storage.Blobs.Models; | |
| using System; | |
| using System.IO; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| trigger: | |
| - none | |
| pr: none | |
| parameters: | |
| - name: containerlist | |
| type: object | |
| default: ["core/image1","core/image2","core/image3","core/image4"] |
OlderNewer