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
zone "her.wn" IN { | |
type static-stub; | |
server-addresses { | |
10.176.7.1; | |
10.176.3.1; | |
10.176.33.1; | |
}; | |
zone-statistics yes; | |
}; |
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
#!/usr/bin/env python | |
'''GUID Partition Table Handling routines | |
GUID Partition Table is a new partitioning standard that was introduced | |
by Intel with the proposal of the EFI. GPT is designed to overcome the | |
limitations of the ancient MBR that day by day are facing the daylight. | |
This module was designed to provide an API to direct access GPT structure. | |
It can be used to create partitioning programmas or disaster recovery | |
ones. |
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
#!/usr/bin/env python | |
""" | |
Script to manipulate image sequences generated by GoPRO camera. | |
@license GNU General Public License <https://gnu.org/licenses/gpl.html> | |
""" | |
import sys | |
import os | |
import re |