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
/* | |
Code from the Debian NoRoot Project | |
https://github.com/pelya/debian-noroot/blob/master/disableselinux/disableselinux.c | |
*/ | |
#include <errno.h> | |
extern int audit_open (void); | |
int audit_open (void) |
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
public static class Extensions | |
{ | |
public static string CombineToQuerystring(this Dictionary<string, string> Components) | |
{ | |
List<string> objStrings = new List<string>(); | |
foreach (var objParam in Components) | |
objStrings.Add(string.Format(@"{0}={1}", objParam.Key, objParam.Value)); | |
return string.Join("&", objStrings.ToArray()); |
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
<?php | |
/* | |
Plugin Name: SQLite Query Fixes | |
Description: Custom SQLite Fixes for Wordpress and SQLite Integration | |
Author: Christopher Zenzel | |
Version: 1.0 | |
*/ | |
add_filter('query', 'czwp_sqlite_query'); |
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
[[39.0957984924,-93.20290374759999,51.8],[39.0957984924,-93.20290374759999,51.8],[38.98139953613281,-82.5779037475586,35.6],[37.64830017,-92.65239716,51.8],[36.769100189199996,-88.5847015381,55.400000000000006],[34.31549835205078,-81.10880279541016,48.2],[36.898899078369,-89.561798095703,57.2],[34.31549835205078,-81.10880279541016,48.2],[38.98139953613281,-82.5779037475586,35.6],[37.64830017,-92.65239716,51.8],[36.769100189199996,-88.5847015381,55.400000000000006],[36.898899078369,-89.561798095703,57.2],[34.31549835205078,-81.10880279541016,48.2],[38.98139953613281,-82.5779037475586,35.6],[37.64830017,-92.65239716,51.8],[36.898899078369,-89.561798095703,57.2],[36.769100189199996,-88.5847015381,55.400000000000006],[32.46379852294922,-87.9541015625,60.8],[32.438702,-90.103104,60.8],[40.86470031738281,-84.6093978881836,44.6],[32.46379852294922,-87.9541015625,60.8],[32.438702,-90.103104,60.8],[40.86470031738281,-84.6093978881836,44.6],[40.86470031738281,-84.6093978881836,44.6],[32.46379852294922,-87.9541015625,60 |
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
x | y | z | |
---|---|---|---|
-81.10880279541016 | 34.31549835205078 | 68 | |
-92.65239716 | 37.64830017 | 23 | |
-82.5779037475586 | 38.98139953613281 | 59 | |
-88.5847015381 | 36.769100189199996 | 39.2 | |
-81.11360168457031 | 29.300600051879883 | 71.6 | |
-89.561798095703 | 36.898899078369 | 39.2 | |
-87.9541015625 | 32.46379852294922 | 64.4 | |
-80.3994979858 | 37.8582992554 | 64.4 | |
69.212303 | 34.565899 | 28.4 |
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
REG ADD HKLM\SYSTEM\Setup\MoSetup /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 | |
REG ADD HKLM\SYSTEM\Setup\LabConfig /v BypassTPMCheck /t REG_DWORD /d 1 | |
REG ADD HKLM\SYSTEM\Setup\LabConfig /v BypassSecureBootCheck /t REG_DWORD /d 1 | |
REG ADD HKLM\SYSTEM\Setup\LabConfig /v BypassRAMCheck /t REG_DWORD /d 1 | |
REG ADD HKLM\SYSTEM\Setup\LabConfig /v BypassCPUCheck /t REG_DWORD /d 1 | |
REG ADD HKLM\SYSTEM\Setup\LabConfig /v BypassStorageCheck /t REG_DWORD /d 1 |
OlderNewer