Skip to content

Instantly share code, notes, and snippets.

View amilamen's full-sized avatar
🗼
It isn't a competition 😊 just my work 🤓

Ezéchiel Amen AGBLA amilamen

🗼
It isn't a competition 😊 just my work 🤓
View GitHub Profile
@adyngom
adyngom / angular-14-defaults-schematics.ts
Created October 3, 2022 14:38
My default generators config on new Angular projects version 14 and up
"schematics": {
"@schematics/angular:application": {
"strict": true
},
"@schematics/angular:component": {
"standalone": true,
"inlineStyle": true,
"inlineTemplate": true,
"changeDetection": "OnPush"
},
@peterpeterparker
peterpeterparker / ic-bundle-static-files.mjs
Last active November 2, 2023 10:37
Bundle static files in Motoko canisters
#!/usr/bin/env node
import {writeFile} from 'fs/promises';
import {Blob} from 'node:buffer';
import fetch from 'node-fetch';
const fetchData = async (url) => {
const response = await fetch(url);
@tur0o
tur0o / Makefile
Last active January 7, 2021 22:07
Makefile to init a dockerized symfony project
.PHONY: help project-init docker-build docker-up install-vendors jwt-init db-init hello
.DEFAULT_GOAL = help
project-init: docker-build docker-up install-vendors jwt-init db-init hello ## Install and init project
docker-build: ## Build docker image
docker-compose build
async toggle() {
if (!this._playerModal) {
const { PlayerModalComponent } = await import( '../player-modal/player-modal.component');
this._playerModal = PlayerModalComponent;
}
const modalInstance = await this.modalCtrl.create({
component: this._playerModal,
swipeToClose: true,
cssClass: 'full-modal',
});
@juliengdt
juliengdt / Soumission Apple Appstore - iOS.md
Last active July 28, 2020 17:10
Soumission Apple Appstore - iOS

Soumission Apple Appstore - iOS

Ce document liste toutes les informations nécessaires afin de soumettre rapidement une application iOS sur iTunesConnect pour:

  • Une nouvelle application
  • Une mise à jour d'application

Nouvelle Application