Skip to content

Instantly share code, notes, and snippets.

View arabsalem's full-sized avatar

Arab Salem arabsalem

View GitHub Profile
{
"join_before_host": true,
"waiting_room": false
}

Keybase proof

I hereby claim:

  • I am arabsalem on github.
  • I am arabsalem (https://keybase.io/arabsalem) on keybase.
  • I have a public key whose fingerprint is 151D A5B2 77C6 0BBB 137D 1F5F 5B66 0D0E 1D2C D60F

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am arabsalem on github.
  • I am arabsalem (https://keybase.io/arabsalem) on keybase.
  • I have a public key whose fingerprint is A9E6 EAF3 93C7 A5AF 89AC F2DD 8C3A DBF8 ED7C 68E1

To claim this, I am signing this object:

@arabsalem
arabsalem / new_gist_file_0
Created November 27, 2014 09:42
phpmaker user info
function Page_Rendering() {
//echo "Page Rendering";
//$role = $GLOBALS["Security"]->CurrentUserLevelName();
//echo $role;
if (IsLoggedIn()) {
$UserInfo= '<div class="box-announcement alert-info"><div class="noprint">';
$UserInfo.='<p>';

Keybase proof

I hereby claim:

  • I am arabsalem on github.
  • I am arabsalem (https://keybase.io/arabsalem) on keybase.
  • I have a public key whose fingerprint is 2BE9 365D 91C5 42B4 3330 B5C8 1D03 F63F 855F 8CFC

To claim this, I am signing this object:

@arabsalem
arabsalem / dot-net-fix
Last active August 29, 2015 13:57
.NET Fixes
Microsoft SQL Server Compact 4.0
http://www.microsoft.com/en-us/download/details.aspx?id=17876
Windows Installer 4.5
http://support.microsoft.com/kb/942288
.NET Framework Cleanup Tool
http://blogs.msdn.com/b/astebner/archive/2008/08/28/8904493.aspx
Microsoft .NET Framework Repair Tool
@arabsalem
arabsalem / List_foreign_keys_in_mysql.sql
Created February 6, 2014 09:24
List foreign keys in mysql
select
concat(table_name, '.', column_name) as 'foreign key',
concat(referenced_table_name, '.', referenced_column_name) as 'references'
from
information_schema.key_column_usage
where
referenced_table_name is not null
and table_schema = 'gms.drc.dk'
@arabsalem
arabsalem / MCashBook.bas
Last active July 20, 2019 18:22
VBA for Cash Book
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' Author : Arab Salem
' Gist : https://gist.github.com/arabsalem/7928008
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Option Explicit
Option Compare Text
Public Const DesktopFolder As String = "\DRC-CashBooks-CoverSheets\"
Public Const FirstRowIndex As Integer = 13
Public Const DescriptionIndex As Integer = 7