Skip to content

Instantly share code, notes, and snippets.

View Arka-cell's full-sized avatar
🧭
Working from home

Samir Ahmane Arka-cell

🧭
Working from home
  • SecondBrain
  • Oran, Algeria
View GitHub Profile
@berkorbay
berkorbay / github_desktop_ubuntu.md
Last active June 24, 2024 00:44
To install Github Desktop for Ubuntu

IMPORTANT

See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)

For the sake of "maintaining the tradition" here is the updated version.

@redecs
redecs / Dockerfile
Created November 22, 2019 11:38
Docker entrypoint example for node.js
FROM node:${NODE_VERSION}-alpine
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
#COPY package.json yarn.lock ./
COPY package*.json ./
#RUN yarn install --pure-lockfile
@straker
straker / README.md
Last active June 13, 2024 23:32
Basic Pong HTML and JavaScript Game

Basic Pong HTML and JavaScript Game

This is a basic implementation of the Atari Pong game, but it's missing a few things intentionally and they're left as further exploration for the reader.

Further Exploration

  • Score
  • When a ball goes past a paddle, the other player should score a point. Use context.fillText() to display the score to the screen