Skip to content

Instantly share code, notes, and snippets.

@karbassi
karbassi / Git gpg stuck.md
Created February 5, 2020 15:26
If your git process gets stuck during the `gpg` signing phase, you can restart `gpg` by running

If your git process gets stuck during the gpg signing phase, you can restart gpg by running

gpgconf --kill gpg-agent
@dhoeric
dhoeric / 0_README.md
Last active March 28, 2024 12:55
Google Calendar - Public Holiday Calendars
@reinvanoyen
reinvanoyen / terminal-prompt-git-branch-zsh.md
Last active March 28, 2024 12:55
Add Git Branch Name to Terminal Prompt (MacOS zsh)

Add Git Branch Name to Terminal Prompt (zsh)

Updated for MacOS with zsh

  • Catalina
  • Big Sur
  • Monterey
  • Ventura
  • Sonoma

screenshot

atm
BeanInstantiator
atm.constants
Currency.java
TransactionType.java
atm.entities
com.app.constants
AccountType.java
BookingStatus.java
Genre.java
Language.java
NotificationType.java
PaymentMode.java
PaymentStatus.java
SearchCriteria.java
SeatStatus.java
parkinglot
Application.java
parkinglot.constants
Action.java
Color.java
ErrorConstants.java
PaymentMode.java
PaymentStatus.java
com.app.config
AppConfig.java // to init factories beans
com.app.constants
AccountType.java
Role.java
Search.java
VehicleState.java
VehicleType.java
@DevShivansh
DevShivansh / 1-lld-google-calender.txt
Last active March 28, 2024 12:55
lld-google-calender
com.app
BeanFactory.java
com.app.dto
CreateMeetingRequest.java
com.app.entities
Calender.java
@DevShivansh
DevShivansh / 1-lld-stackoverflow.txt
Created August 4, 2021 09:38
lld-stackoverflow
com.app.constants
Badge.java
ElementType.java
QuestionState.java
Role.java
VoteType.java
com.app.dto
CreateQuesRequest.java
@sshymko
sshymko / Dockerfile
Created August 17, 2019 00:44
Docker image of PHP 7.4 with Foreign Function Interface (FFI) support
FROM phpdaily/php:7.4.0-dev
RUN apk add --no-cache --virtual .persistent-deps libffi-dev \
&& docker-php-ext-configure ffi --with-ffi \
&& docker-php-ext-install ffi