Skip to content

Instantly share code, notes, and snippets.

View Henkoglobin's full-sized avatar
🛒
Working in E-Commerce

Henrik Ilgen Henkoglobin

🛒
Working in E-Commerce
View GitHub Profile
@Henkoglobin
Henkoglobin / reload.lua
Last active March 30, 2020 00:05
Provides a function that can be used to reload all required modules.
local standard = {}
for k in pairs(package.loaded) do
standard[k] = true
end
function R()
local loadThese = {}
-- Unload all loaded packages...
for k in pairs(package.loaded) do
namespace Foobar {
public interface ISomething {
void DoItNow();
}
}
public async Task<IViewModel> GoBackAsync() {
await ((NavigationPage)this.MainPage).Navigation.PopAsync();
var newPage = ((NavigationPage)this.MainPage).CurrentPage;
return (IViewModel)newPage.BindingContext;
}
DefInt A-R
Function V(x)
On Error Goto e
For Z=1 To Len(x)
Select Case Mid(x, Z, 1)
Case"i":A=A+1
Case"d":A=A-1
Case"s":A=A^2
Case"p":V=V &A
Case"P":V=V &Chr(A)