Source
Rider's top keyboard shortcuts
Finding everything
Command Shortcut
#!/bin/bash | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title scrcpy | |
# @raycast.mode inline | |
# Optional parameters: | |
# @raycast.icon 🤖 | |
# @raycast.packageName org.psk.raycast |
#!/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 |
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, | |
# |
{"lastUpload":"2021-12-26T20:35:46.388Z","extensionVersion":"v3.4.3"} |
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() { |
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> |