• 5ffd57393a85553ab55b
• 5cd28e2a812e5c65c9f7320e0726da18
• b6a6676a84b51c8200d0673a5b4a87c5
The quotes on this page come from this deleted question on Stackoverflow:
| #!/bin/sh | |
| echo Install all AppStore Apps at first! | |
| read -p "Press any key to continue... " -n1 -s | |
| echo '\n' | |
| echo Installing Homebrew... | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| echo Installing Brew favorites... | |
| brew tap homebrew/cask-fonts |
| #!/bin/zsh | |
| echo Time to install all apps at once! | |
| read -p "Press any key to continue... " -n1 -s | |
| echo '\n' | |
| echo Installing Homebrew... | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| echo Installing Oh My Zsh... | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
The quotes on this page come from this deleted question on Stackoverflow:
| #!/usr/bin/env haxex -lib mcli @ | |
| /** | |
| Taken from mcli example https://github.com/waneck/mcli | |
| Say hello. | |
| Example inspired by ruby's "executable" lib example | |
| **/ | |
| class HaxeScript extends mcli.CommandLine | |
| { | |
| /** |
| /** | |
| * Rotates coordinate system for velocities | |
| * | |
| * Takes velocities and alters them as if the coordinate system they're on was rotated | |
| * | |
| * @param Object | velocity | The velocity of an individual particle | |
| * @param Float | angle | The angle of collision between two objects in radians | |
| * @return Object | The altered x and y velocities after the coordinate system has been rotated | |
| */ |
pandocでmarkdownをhtmlに変換する際に使用するcssの選択。
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |
| import tink.core.Error; | |
| import tink.core.Future; | |
| import tink.core.Outcome; | |
| import ufront.web.result.ContentResult; | |
| class AsyncTestController extends ufront.web.Controller { | |
| @:route('/async') public function async() return simulatedAsyncProcess(); | |
| function simulatedAsyncProcess(): Surprise<ContentResult, Error> { |
| import neko.Lib; | |
| import sys.FileSystem; | |
| import sys.io.File; | |
| import tink.core.Future; | |
| import tink.core.Outcome; | |
| class FutureTriggerExample | |
| { | |
| static function main() |