Skip to content
#

scripting

Here are 1,029 public repositories matching this topic...

StephenGregory
StephenGregory commented Feb 19, 2019

Bitbar 1.9.2
macOS 10.14.3

Given this output, it is impossible to view the dropdown items. Clicking or context-clicking on "foo menu" will always open the URL and never reveal the dropdown.

echo "foo menu | href=http://somewhere.com/"
echo "---"
echo "You'll never see this"
TheBricktop
TheBricktop commented Dec 6, 2018

Describe the bug
The Unity usage example assumes that user has Rantionary.rpkg file in assets/resources folder but there is no step by step information on how to import those and from what source.
The Rant3.zip from github doesn't contain said file.

To Reproduce
Steps to reproduce the behavior:

  1. Follow the Running in Unity tutorial
  2. Run the example in Unity
  3. See the erro
Invius
Invius commented Feb 28, 2020

Trying to play the helloCharacter level, crashes the editor...
After a little bit of debugging the problem lives in this two functions, even spawning only one character, crashes the engine.

function createCharacter() {
        let pos = randomPoint()
        pos.Z += 100

        // All UObject has static function .C({UObject}), which just return its input arg.
        // But *.d.ts ha
lwouis
lwouis commented Mar 12, 2020

Describe the bug

My app alt-tab-macos queries the OS for all the NSRunningApplications currently running. In that list, we check each app activationPolicy. CopyQ's policy is incorrectly set as .prohibited. Apple's docs describe this policy as:

The application doesn’t appear in the Dock and may not create windows or be activated.

Becau

voldenet
voldenet commented Apr 25, 2020

Feature description

Very apparent when nicklist is horizontal: /set weechat.bar.nicklist.position top

When there's many people on one channel, the longest nick slot is used to properly space names in the nicklist . In normal case it works well:

@me  b   d   f   h   j   l   n   p   r   t   v   x   z
 a   c   e   g   i   k   m   o   q   s   u   w   y
-------------------------------
peetinc
peetinc commented Feb 21, 2020

Feature Enhancement: When "Interface None" is selected do not call any UI elements that will stop the Platypus created app from executing as a LaunchDaemon or LaunchAgent in the LoginWindow context. Consider an argument that can be passed to the app binary of any "Interface" type that would disable any UI calls.

Use Case: Because of PPPC controls using 'naked' shell scripts as launchd p

bitfield
bitfield commented Apr 26, 2020

It's common when writing scripts that install or configure things to need input from the user (at a minimum, something like 'Press Enter to continue'; at a maximum, to be able to prompt the user for input, with an optional default value, and return that value).

Let's use this issue to design how that would look, and I invite suggestions!

borkdude
borkdude commented Apr 29, 2020
(def table-as-str (:out (shell/sh "mysql" "-udba" "-pdba" "corp" "--column-names" "-e" "select * from company_settings_nodes limit 2")))
(def table-as-lines (str/split-lines table-as-str))
(def table-headers (str/split (first table-as-lines) #"\t"))
(def table-as-maps (map #(zipmap table-headers (str/split %1 #"\t")) (rest table-as-lines)))
(clojure.pprint/print-table table-headers table-
baszalmstra
baszalmstra commented Mar 29, 2020

The MarkSweep struct implements GcRuntime to facilitate garbage collection for Mun. Currently, the implementation is quite inefficient. One of the things that could be improved is to implement a slab allocator (or object pool) instead of randomly allocating memory through a Pin<Box<ObjectType<T>>>. The general idea of the allocator is to alloc

vks
vks commented Jul 8, 2016

The documentation tells you how to create doc comments, but it is not clear what they are good for. Maybe give a hint at how to use them?

(use code documentation)
(print (documentation ...))

It might make sense to have a function help that prints the documentation, like in Python. It would not be terribly useful at the moment, because it seems that the built-in functions and operators

Improve this page

Add a description, image, and links to the scripting topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the scripting topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.