Skip to content

Instantly share code, notes, and snippets.

View mariusbolik's full-sized avatar
🏠
Working from home

Marius B. mariusbolik

🏠
Working from home
View GitHub Profile
@mariusbolik
mariusbolik / orbisana.html
Created February 14, 2024 09:21
mySHOEFITTER x Orbisana Demo Code
<!-- Load the mySHOEFITTER Script -->
<script src="https://js.myshoefitter.com/v1/script.js"></script>
<!-- Initialize mySHOEFITTER -->
<script type="application/javascript">
myshoefitter.init({
shopId: '65cc7e70ba912c607ca8', // Orbisana
productId: '140847915' // Hawaii
});
</script>
@mariusbolik
mariusbolik / isVisible.ts
Created November 11, 2022 10:18
Check if HTML Element is visible in Viewport
isVisible(elem: HTMLElement) {
if (!(elem instanceof Element)) { throw Error('DomUtil: elem is not an element.'); }
const style = getComputedStyle(elem);
if (style.display === 'none') { return false; }
if (style.visibility !== 'visible') { return false; }
if (Number(style.opacity) < 0.1) { return false; }
if (elem.offsetWidth + elem.offsetHeight + elem.getBoundingClientRect().height +
elem.getBoundingClientRect().width === 0) {
return false;
}
@mariusbolik
mariusbolik / package.json
Last active January 15, 2022 14:00
Ghost Blog Zoho Email Configuration (Nodemailer)
{
...
"mail": {
"from": "\"Sender Name\" <sender@domain.com>", <- REPLACE
"transport": "SMTP",
"options": {
"service": "Zoho",
"host": "smtp.zoho.eu",
"port": 587,
"secure": false,
@mariusbolik
mariusbolik / image.service.ts
Last active December 10, 2021 07:48
Angular - Download Image as Base64
async downloadImageToBase64(imageUrl: string) {
const resp: Blob = await this.httpClient.get(imageUrl,
{
headers: {
accept: 'image/png, image/webp, image/jpeg, image/gif'
},
responseType: 'blob'
}).toPromise();
return (await this.convertBlobToBase64(resp)) as string;
}
sudo npm install -g ios-deploy --unsafe-perm=true
sudo npm install --unsafe-perm=true --allow-root
@mariusbolik
mariusbolik / Ionic & Cordova Build Commands
Last active November 11, 2018 08:45
The right way to build a cordova app without errors
##================================================
# STEP 1
# iOS: Add Platform (Current Version: 4.5.5)
# https://github.com/apache/cordova-ios/releases
##================================================
$> ionic cardova platform add ios@4.5.5
//--> Don't forget to open Xcode and set Developer Team or Provisioning Profiles
//--> IMPORTANT: If using Xcode 10: Go to "File -> Workspace Settings..." and choose "Lagacy Build System"!
@mariusbolik
mariusbolik / build.gradle
Created October 1, 2018 16:44
Cordova: Fix Android build error by adding com.google.gms:google-services to build.gradle
buildscript {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
dependencies {
// NOTE: Do not place your application dependencies here; they belong
@mariusbolik
mariusbolik / something.ts
Created September 28, 2018 19:51
The way to use Cordova Plugin "App Rate" in other languages.
rateApp() {
this.platform.ready().then(() => {
if (this.platform.is('cordova')) {
this.appRate.preferences = {
displayAppName: 'Skills4School',
simpleMode: true,
useLanguage: 'en', // Needed. Otherwise will crash.
storeAppURL: {
ios: '1350221649',
android: 'market://details?id=de.skills4school.app'