HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules
This file contains 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
' Simple command-line help. | |
select case WScript.Arguments(0) | |
case "-?", "/?", "-h", "--help" | |
WScript.echo "Usage: runHidden executable [...]" & vbNewLine & vbNewLine & "Runs the specified command hidden (without a visible window)." | |
WScript.Quit(0) | |
end select | |
' Separate the arguments into the executable name | |
' and a single string containing all arguments. | |
exe = WScript.Arguments(0) |
Things required:
- Linux headers: https://cdn.kernel.org/pub/linux/kernel/
- Binutils: https://www.gnu.org/software/binutils/
- GCC: https://www.gnu.org/software/gcc/
- glibc: https://www.gnu.org/software/libc/
This file contains 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
from random import randint | |
import pandas as pd | |
def main(): | |
with open("/home/chponte/Descargas/Bmedia_15MD_002MAF_filtered.new.vcf", "x") as fout: | |
with open("/home/chponte/Descargas/Bmedia_15MD_002MAF_filtered.vcf", "r") as fin: | |
l = fin.readline() | |
while not l.startswith("#CHROM"): | |
fout.write(l) | |
l = fin.readline() |