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
| tcpdump -nn -v -xx -i ent1 -s 1500 -c 1 'ether dst 01:00:0c:cc:cc:cc and (ether[24:2] = 0x2000 or ether[20:2] = 0x2000)' |
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
| #include <stdint.h> | |
| #include <stdio.h> | |
| int main(void) | |
| { | |
| uint32_t x = 0x12345678; | |
| int i; | |
| for (i = 0; i < sizeof(x); i++) { | |
| printf("mem[%d] = 0x%02x\n", i, ((char*)&x)[i]); |
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
| #!/usr/bin/env python3 | |
| import argparse | |
| import subprocess | |
| import time | |
| from pathlib import Path | |
| def get_gallery_data(txt_path): | |
| """Beolvassa a gallery.txt fájlt és szótárat épít belőle.""" | |
| descriptions = {} | |
| if txt_path.exists(): |
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
| #!/bin/bash | |
| export SYNOPKG_PKGDEST=/volume1/\@appstore/VirtualHere/ | |
| /var/packages/VirtualHere/scripts/start-stop-status stop; echo $? | |
| > /var/log/virtualhere.log | |
| rm /volume1/@appstore/VirtualHere/config.ini | |
| /var/packages/VirtualHere/scripts/start-stop-status start; echo $? |
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
| brew uninstall gdk-pixbuf librsvg adwaita-icon-theme cppzmq fftw gsl atk gsettings-desktop-schemas hicolor-icon-theme libepoxy gtk+3 berkeley-db aften jack log4cpp portaudio py3cairo pygobject3 qt@5 pyqt@5 pyyaml qwt-qt5 soapysdr soapyrtlsdr fmt spdlog uhd orc cpu_features volk |
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
| https://api.github.com/search/users?q=FleXoft+in%3Ausername |
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
| import soco | |
| from soco import SoCo | |
| speaker_list = list(soco.discovery.scan_network()) | |
| speaker_list[0].player_name | |
| speaker_list[0].mute | |
| speaker_list[0].mute() | |
| speaker_list[0] | |
| my_zone = SoCo('192.168.0.2') |
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
| /bin/launchctl stop /Library/LaunchAgents/com.microsoft.update.agent.plist | |
| /bin/launchctl unload -w /Library/LaunchAgents/com.microsoft.update.agent.plist | |
| /bin/launchctl load -w /Library/LaunchAgents/com.microsoft.update.agent.plist |
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
| $emailSmtpServer = "smtp.xxxx.hu" | |
| $emailSmtpServerPort = "25" | |
| $emailSmtpUser = "" | |
| $emailSmtpPass = "" | |
| $emailFrom = "HpOneTouch-Teszt@xxxx.hu" | |
| $emailTo = "gyorgy.fleischmann@fnxs.hu" | |
| $emailcc="CC" | |
| $emailMessage = New-Object System.Net.Mail.MailMessage( $emailFrom , $emailTo ) |
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
| # Base source: https://www.miarec.com/doc/administration-guide/doc1012 | |
| fdisk /dev/sda | |
| poweroff | |
| increase disk size at VMware side | |
| fdisk /dev/sda | |
| n | |
| p |
NewerOlder