I hereby claim:
- I am giuseppe998e on github.
- I am peppe (https://keybase.io/peppe) on keybase.
- I have a public key ASBBNqjBQjelWJ8BP99gS3SnE6uyypUsh6QtLciG1XPU5Ao
To claim this, I am signing this object:
const academicYear = (firstMonth = 8) => { | |
const date = new Date(), | |
year = date.getFullYear(), | |
start = date.getMonth() > firstMonth | |
return `${year - !start}/${year + start}` | |
} | |
/* const academicYear=(firstMonth=8)=>{const d=new Date(),y=d.getFullYear(),s=d.getMonth()>firstMonth;return `${y-!s}/${y+s}`} */ | |
console.log(`Academic Year: ${academicYear()}`); |
// Five Lines Iterator [ fliter (╥﹏╥) ] | |
const fliter = (a, p = 0) => ({ | |
hasNext: () => p < a.length, | |
next: () => a[p++], | |
remove: () => a.splice(--p, 1) | |
}) | |
/* Minified | |
* const fliter=(a,p=0)=>({hasNext:()=>p<a.length,next:()=>a[p++],remove:()=>a.splice(--p,1)}) | |
*/ |
FROM alpine | |
LABEL maintainer="Giuseppe Eletto <[email protected]>" | |
# Setup environment | |
RUN adduser -DHs /sbin/nologin murmur \ | |
&& apk update \ | |
&& apk upgrade \ | |
&& apk add murmur \ | |
&& rm -rf /var/cache/apk/* |
I hereby claim:
To claim this, I am signing this object: