Skip to content

Instantly share code, notes, and snippets.

View bigprof's full-sized avatar

BigProf Software bigprof

View GitHub Profile
@bigprof
bigprof / deploy.bat
Last active December 23, 2024 09:01
Example batch file to deploy a single AppGini app to multiple servers.
rem deploy.bat
rem This batch file is used to deploy a single AppGini app to multiple servers.
rem Change the following line to point to the .axp file of your app
set AXP_FILE="C:\users\johndoe\Documents\My Apps\example.axp"
rem Path to AppGini executable (change this if AppGini is installed in a different folder)
set APPGINI="C:\Program Files (x86)\AppGini\AppGini.exe"
rem Generate the app once
@bigprof
bigprof / footer-extras.php
Last active October 28, 2024 10:55
Prepend currency symbol to fields in the table view of an AppGini app
@bigprof
bigprof / README.md
Last active July 13, 2022 13:45
Bash script to switch PHP version on Debian/Ubuntu

Bash script to switch PHP version on Debian/Ubuntu

You can run multiple versions of PHP on the same server. This is useful in many cases. For example:

  • Testing the same PHP app under multiple PHP versions.
  • Running several PHP apps that each requires a different version of PHP

I personally find this very useful to rapidly test apps generated by AppGini under multiple PHP versions.

AppGini is a nocode/lowcode graphical tool for configuring and generating web applications for easily managing data for small businesses, organizations, teams in small/large companies, or even your indvidual projects. Apps created by AppGini support multiple users, are responsive and mobile-friendly, work on LAMP stack for easy installation and wide support, allow importing and exporting of data to CSV, and many more features. A free fully working trial of AppGini can be downloaded from here

@bigprof
bigprof / README.md
Last active July 29, 2022 13:15
Show theme switcher widget at the bottom of your AppGini app, similar to the demo at https://demos.appgini.com/northwind/

Steps to add a theme switcher to your AppGini app

  1. Place the code below in the generated hooks/footer-extras.php file.
  2. Open the folder where AppGini is installed, typically C:\program files\appgini and navigate to the add-ons\themes folder.
  3. Copy all the CSS files in that folder to the resources\initializr\css folder inside your AppGini app.

If you follow the above steps, you should be able to switch your app themes like this:

@bigprof
bigprof / footer-extras.php
Last active April 22, 2022 15:22
Add a counter column to the print preview of the table view in your AppGini app
@bigprof
bigprof / git-deployment.md
Created April 3, 2019 17:59 — forked from noelboss/git-deployment.md
Simple automated GIT Deployment using Hooks

Simple automated GIT Deployment using GIT Hooks

Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.

How it works

You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.

@bigprof
bigprof / google-search.robot
Created February 20, 2019 12:43
Sample Robot Framework script for checking if a certain site appears in the first results page when searching Google for specific keywords.
*** Settings ***
Library Selenium2Library
Suite Setup start browser
Suite Teardown end browser
*** Variables ***
${browser} = ff
@bigprof
bigprof / bootstrap.php
Created February 17, 2019 17:34
Sample PHPUnit bootstrap file for an AppGini project
<?php
// my app includes
include('./app/defaultLang.php');
include('./app/lib.php');
@bigprof
bigprof / phpunit.xml
Created February 17, 2019 17:30
Sample PPHUnit config
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
@bigprof
bigprof / mysql-php-queries.php
Last active May 2, 2018 10:59
Script to display INSERT/UPDATE/SELECT queries for a specific table in a specific database (you'll be asked for these first). The queries are suitable for use in PHP programs. Don't forget to sanitize any variables before using them in your queries! Here is a short screencast showing it in action: https://www.screencast.com/t/tvyp9P1F
<?php
/* Change the values below to match your database */
$config = [
'server' => 'localhost',
'user' => 'dbuser',
'pass' => 'password'
];
if(!isset($_REQUEST['db']) || !isset($_REQUEST['table'])) {
?>