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
<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="true" context="org.eclipse.cdt.ui.text.templates.c" deleted="false" description="Code for emulator only" enabled="true" name="ifdebug">#ifdef __WINSCW__ | |
${line_selection}${cursor} | |
#endif</template><template autoinsert="true" context="org.eclipse.cdt.ui.text.templates.c" deleted="false" description="Code for emulator only" enabled="true" name="ifdebugelse">#ifdef __WINSCW__ | |
${line_selection}${cursor} | |
#else | |
| |
#endif</template></templates> |
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 | |
# | |
# Python script for making MySQL db backups to MEGA.nz | |
# | |
# Features: | |
# - Can backup multiple databases (each to separate sub-folder) | |
# - Upload backups to Mega.nz (no backups stored local) | |
# - Detect changes in database with checksum and do not upload unchanged data twice | |
# |
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
<?xml version="1.0"?> | |
<project name="My project" xmlns:if="ant:if" xmlns:unless="ant:unless"> | |
<!-- Properties: --> | |
<!-- <property file="build.properties"/> --> | |
<property name="build_dir" location="build"/> | |
<!-- Targets: --> | |
<target name="clean"> | |
<delete dir="${build_dir}"/> |
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
program EncryptedIni; | |
{$mode objfpc}{$H+} | |
uses | |
Classes, SysUtils, IniFiles, BlowFish, base64; | |
type | |
{ TIniFileEx } |
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 | |
nmap -iL supl-hosts.txt -p 7276,7275 |
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
<?xml version="1.0"?> | |
<project name="My project" xmlns:if="ant:if" xmlns:unless="ant:unless"> | |
<!-- Properties: --> | |
<!-- <property file="build.properties"/> --> | |
<property name="build_dir" location="build"/> | |
<!-- Targets: --> | |
<target name="clean"> | |
<delete dir="${build_dir}"/> |
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/sh | |
if [ $(arch) = 'x86_64' ]; then | |
arch_package_prefix='amd64' | |
else | |
arch_package_prefix='i386' | |
fi | |
if [ $(dpkg-query -W -f='${Status}' fpc-src 2>/dev/null | grep -c "ok installed") -eq 0 ]; |
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
program FileDate; | |
{$Mode objfpc}{$H+} | |
uses | |
{$IfDef Windows} | |
Windows, | |
{$EndIf} | |
SysUtils, Classes, DateUtils, FileUtil; |
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
[ | |
[ | |
"PayPal", | |
"[email protected]", | |
{"icon": "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABt0lEQVQ4jaWTQWtTQRSFv5kkJg3V2tcKRhvauNAXFXQhBZWKWJFWFy5EQUQouOiqC/+Hf0DQQjb9B1YhdGNRF0LrQtu60LyXYkmqEUptNOmbuS6C0TQvBemFs5hhzjfnLK4SEfYyek9uILrzIj+/NPbw0aunYJtwpVSQ6ouv3rpyLDd5b+TxroCXi18ufvArR6C12nuPgfzC+vlkd3zz/s3hmY4Vlj6Vs02zqUNQ+0c/ef1ubWTXBCve9ywAYlE/Sq1BRJhdPz5e+LoxmDnU47cl2KpWk1751xAANmiYlforoJg5kc4VzVRoBc8vDVVrJBvxt1t+xhjU1cuWPkcrUKEVVgqVbPOQiFndm0IiEeh34OwZbPqoRkU411WdA6cdsFzYOIlYCAz6zjhm8HAjoRWwFpTmulN7NuZmnocm+OhVToGAVpaD3RAYosj2hf31N/0J/e3aQOzFxOl0LqK1hAI+r226ALprHyQTAFw6UJ+fu+2O0mFaAKPD6byb6XlbCkjNRmM3MAGuk1juZAZARNo0s+jfZbooTPvyZGH1QdibP1Jh22hF4kboBYgqykqpjisbCvif+Q1kj8dmwXlbawAAAABJRU5ErkJggg=="} | |
], | |
[ | |
"ETH Ethereum / Tether USDT", | |
"0xB14C877b2eAF7E3b4b49df25039122C0545edA74", | |
{"icon": "iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB3AH1ZAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9bpSLVInYQEclQnSyIijhqFYpQIdQKrTqYXPoFTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdnBSdJES/5cUWsR4cNyPd/ced+8Af |
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
[ifwinlin | Different code for Windows and Linux] | |
{$IfDef Windows} | |
| | |
{$EndIf} | |
{$IfDef Linux} | |
{$EndIf} | |
[ifwin | Code for Windows only] | |
{$IfDef Windows} | |
| |
NewerOlder