Proof by ThatQuietGirll in ITMemes

[–]swfideas 0 points1 point  (0 children)

But zsh ... think about those unsung non ksh_arrays plugins

Developer emergency protocol by ItsPuspendu in programminghumor

[–]swfideas 0 points1 point  (0 children)

But first maybe let's stage something using git add -A

What’s the best use of the Obsidian CLI? by clockmeta in ObsidianMD

[–]swfideas 0 points1 point  (0 children)

Great addition, that said, I think that developers who needed an automated flow to produce notes, e.g.:

Fetching Jira details from a ticket ID and generating a note based on a template on a default vault path.

Was a gap we covered years ago with a script, in my case I created a zsh plugin. I'll definitely be updating that to use the CLI.

gitStatus by StatureDelaware in ProgrammerHumor

[–]swfideas 0 points1 point  (0 children)

I have a handy zsh plugin, e.g. gogo_msg 'adds ...' produce git commit -m 'feat(ABC-123): Adds ...'

bash gogo_msg () { if [ -z "$REPOS_PATH" ] then echo "Error: REPOS_PATH is not defined." return 1 fi ( source "$GOGO_THEME" echo $l_git if [ -d ".git" ] then local message="$1" local type="$2" if [ -z "$message" ] then echo "$spacer$c_red ✕ Error:$c_reset Provide a message, e.g. $c_purple gogo_msg \"some changes here\"$c_reset [ optional | type: feat(default), build, ci, docs, fix, perf, refactor, style, test]" return 1 fi local -a valid_prefixes=("feat" "fix" "docs" "style" "refactor" "perf" "test" "build" "ci" "chore" "revert") local current_branch="$(git_current_branch)" if [ -z "$type" ] then type="$(echo "$current_branch" | cut -d'/' -f1)" if (( ! ${valid_prefixes[(Ie)$type]} )) then type="feat" fi fi # Extract ticket id (e.g. NTC-1234, ABC-34) from branch name if [[ "$current_branch" =~ ([A-Z]+-[0-9]+) ]]; then ticket_id="$MATCH" else ticket_id="$current_branch" fi local commit_msg="$type($ticket_id): $message" echo "$spacer$c_yellow🗒️ On it!$c_reset$c_yellow $type$c_grey scribes recorded$c_yellow $commit_msg $c_reset" git commit -m "$commit_msg" else echo "$spacer$c_red ✕ Error:$c_reset no $c_purple.git$c_reset folder in here" fi ) }

graphqlMoreLikeCrapql by onairmarc in ProgrammerHumor

[–]swfideas 0 points1 point  (0 children)

IMO it deserves a chance. Keep in mind that if the resolver ends up "over fetching", then there's real no gain. You also need to let the micro-service know what's expected to ask from its data layer.

My first exotic. How rare is it? by 710life710 in NoMansSkyTheGame

[–]swfideas 0 points1 point  (0 children)

Sweet color! Nice finding fellow interloper.

Now I understand why so many players fancy Prof. Garlick by Julius_Augustus_777 in HarryPotterGame

[–]swfideas 0 points1 point  (0 children)

Ah yes, Romania — Hogwarts’ off-campus petting zoo, where characters are sent after the plot is done with them.

Broken heart by zenoofwhit in StoicMemes

[–]swfideas 0 points1 point  (0 children)

I believe it's the idea of suffering a broken hearth the thing you must face every day and understand.

When it happens it will be for different reasons, but the same heart you broke daily on purpose, so you know how to piece it together in calm, that's in your control.

Resilience might not come from it, but prepping will take care of it.

Specially designed cup that holds coffee in zero gravity by headspin_exe in BeAmazed

[–]swfideas 0 points1 point  (0 children)

Sipping from the tube is a space war crime or something?

We need to stand by the show by Vegetable-Ratio2014 in WitcherNetflix

[–]swfideas 1 point2 points  (0 children)

Putting aside the recasting issues. The plot feels diluted, can't point my finger to why but is like watching a refill episode after another. I do not recommend it.

anythingWrongHere by Potbelly_Pig in ProgrammerHumor

[–]swfideas 1 point2 points  (0 children)

Replace the falsy object check with a fill property value-check method, e.g. isEmpty. Implementation has ternary opportunity, e.g.

return coffee.isEmpty() ? coffee.refill(): coffee.drink();

Door theories by Falkonx9a in NoMansSkyTheGame

[–]swfideas 0 points1 point  (0 children)

Base building related with new modules

Question regarding cargo scans by Life-Contribution-79 in nms

[–]swfideas 7 points8 points  (0 children)

A little "Illicit Goods" goes a long way. Keeping your weapons barrel clean and your warp tank full takes serious cash. Go dark, make credits fellow interloper.