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
| cd\Program Files\Microsoft Office\Office16 | |
| cd\Program Files (x86)\Microsoft Office\Office16 | |
| cscript OSPP.VBS /sethst:kms.digiboy.ir | |
| cscript OSPP.VBS /actcscript OSPP.VBS /dstatus | |
| slmgr.vbs /ckms |
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 gi | |
| gi.require_version('Gst', '1.0') | |
| from gi.repository import GObject, Gst | |
| Gst.init(None) | |
| class Main: | |
| def __init__(self): | |
| self.pipeline = Gst.Pipeline.new("pipeline") | |
| self.bus = self.pipeline.get_bus() |
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/python3 | |
| # This program is licensed under GPLv3. | |
| from os import path | |
| import gi | |
| gi.require_version('Gst', '1.0') | |
| gi.require_version('Gtk', '3.0') | |
| gi.require_version('GdkX11', '3.0') | |
| gi.require_version('GstVideo', '1.0') | |
| from gi.repository import GObject, Gst, Gtk |
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/python | |
| """ | |
| Multicast group scanner. | |
| Author: Lasse Karstensen <lasse.karstensen@gmail.com>, November 2014 | |
| """ | |
| import gevent | |
| from gevent import monkey | |
| monkey.patch_all() |