- ββP - Show Editor Pop-Up Menu
- β§β1 - Git Popup menu
- β§β3 - Favorites Popup menu
- β§β₯F - Favorites Popup menu
- β§β3 - Editor Tab Popup menu
- β§β4 - Goto Popup menu
- β§β9 - Project Popup menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace Bastille | |
{ | |
/// <summary> | |
/// Yes, pretty controversial using inheritance for code reuse! I personally think this approach is demonised unfairly. In giant projects, | |
/// it makes sense though - you need that extra insulation. Otherwise its been very convenient in my 20 years of development. | |
/// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.psk.playground; | |
/** | |
* *** Bastille Agency coding test Part 3.*** | |
* Node class that holds references to 3 neighbours. Implements Comparable but this isn't currently used. | |
*/ | |
public class Node implements Comparable<Node> { | |
@Override | |
public String toString() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2021-12-26T20:35:46.388Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import keyring | |
import gkeepapi | |
################################################################ | |
# Simple script that exports Google Keep notes to a file called | |
# export-google-keep.py in the current directory. A note will | |
# look like this: | |
# Hearthstone want list 2,β Aggro Druid commonβs : Mark of the Lotus, power of the wild | |
# Rogue eviscerate, cold blood, | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Props to https://gist.github.com/kaleksandrov/3cfee92845a403da995e7e44ba771183 from whom I took the code inside | |
# the conditional. | |
THIS_SCRIPT_INVOCATION=$0 | |
# The return status of this function will be 0 if globalprotect is running, 1 if not running because grep returns 0 | |
# if it finds a match and 1 if not. | |
# We basically grep for globalprotect but exclude all the matches we don't want |
- ββ§I - show file changes/diff/compare
- ββ§O - goto symbol in file (works!)
- ββ§, - go back in edit locations
- ββ§. - go forward in edit locations
- β§ββM - View: Maximize Editor Group and Hide Side Bars
- β§β₯M - View: Reset Editor Group Sizes
- β₯. + β₯O - diff with previous version of file
- ββ₯. - pop up, navigable code structure dialog
- β₯β - git commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title scrcpy | |
# @raycast.mode inline | |
# Optional parameters: | |
# @raycast.icon π€ | |
# @raycast.packageName org.psk.raycast |