No description provided.
If you want to compile `lepus_cmd_exec` with **CMake**, please use **`python tools/oliver/lynx-tasm/gn_to_cmake_oliver.py`** to generate or update **CMakeLists.txt** in advance.
Oliver JavaScript Style - React - ESLint Shareable Config
Oliver JavaScript Style - ESLint Shareable Config
Oliver Core
Oliver TypeScript Style - React - ESLint Shareable Config
Oliver TypeScript Style - ESLint Shareable Config
oliver bryan resume cli
If you want to compile `lepus_cmd_exec` with **CMake**, please use **`python tools/oliver/lynx-tasm/gn_to_cmake_oliver.py`** to generate or update **CMakeLists.txt** in advance.
Icon set for visualisation as PNG from Oliver Twardowski.
- Version: 1.2.3 - Author: Wictor Hiago - License: MIT - Description: CLI OLIVER is a CLI for building RESTful APIs with Node.js. Oliver CLI provides a rapid and clean architecture structure, fully customizable, and includes pre-configured packages such
Spacing, typography, color tokens for Oliver portfolio
``` - Version: 1.3.7 - Author: Wictor Hiago - Github: https://github.com/WictorHiago/cli-oliver.git - Description: CLI OLIVER is a CLI for building RESTful APIs with Node.js. - Oliver CLI provides a rapid and clean architecture structure, fully custo
A fork of [svg2planck](https://github.com/zOadT/svg2planck) by Oliver Zell.
Compact version of Jimp
This packages offers some tools to interact with me, Oliver Seitz.
oliver-cli-dev
Vendored win32 ExifTool for Node.js
Lightweight library for testing javascript and typescript
TypeScript definitions for cloudflare-turnstile
Download ebook pdf mobi epub Oliver Schröm Gefährliche Mission is available now
Stupid scaffoling: create a copy of a directory with variable substitution
A workflow manage system with React.
Oliver TypeScript Style - React Native - ESLint Shareable Config
Lightweight CLI mod development tool for Baldur's Gate 3 on Linux
Hazelcast like distributed data grid in Rust
A powerful, schema-aware API generation library.
An enum of color names, with a catchall RGB variant
Compute the CEA2034 properties of a loudspeaker also called a Spinorama
A library of macros for polymorphism using enums
High-precision sRGB to Munsell color space conversion with 100% reference accuracy
rich terminal, follow's python's famous rich library
A command-line interface for managing and working with Cooklang recipes
Semantic diffing for GraphQL schemas
CLI to run commands and store structured stdout/stderr execution logs
Tailwind CSS v4 color palette as (u8, u8, u8) RGB constants
Local Git(Hub) made easy.
Olive is the rails helper gem that enables content_for in controllers.
Olive Drab Green Theme is a standalone theme for Spree Commerce
Ruby port for Jonathan Oliver's EventStore. See https://github.com/joliver/EventStore for details.
A v1 of ruby library for https://animatedgif.me. A gem example from GoRails by Chris Oliver. Created for the current Animatedgif JSON.
Welcome to the StudioGame Run studio_game.rb via ruby with optional player.csv files. > ruby studio_game.rb others.csv (for example) Then choose # of rounds and watch your players get blammed (bad), w00ted (good) and see what treasures they find. Cheers. Oliver Cheng, 2014
Lookout-Rack Lookout-Rack provides easy interaction with Rack¹ from Lookout². It provides you with a session connected to your Rack application through which you can make requests, check responses, follow redirects and set, inspect, and clear cookies. ¹ See http://rack.rubyforge.org/ ² See http://disu.se/software/lookout/ § Installation Install Lookout-Rack with % gem install lookout-rack § Usage Include the following code in your ‹Rakefile› (provided that you’re using Lookout-Rake¹): require 'lookout-rack-3.0' Lookout::Rake::Tasks::Test.new do |t| t.requires << 'lookout-rack-3.0' end ¹ See http://disu.se/software/lookout-rake/ Then set up a ‹fixtures/config.ru› file that Lookout-Rack will use for loading your Rack app. load 'path/to/app.rb' use Rack::Lint run Path::To::App This file, if it exists, will be loaded during the first call to #session. If it doesn’t exist, ‹config.ru› will be used instead. You can now test your app: Expectations do expect 200 do session.get('/').response.status end end The #session method returns an object that lets you #get, #post, #put, and #delete resources from the Rack app. You call these method with a URI¹ that you want to access/modify together with any parameters that you want to pass and any Rack environment that you want to use (which isn’t very common). For example, let’s get ‹/pizzas/› with olives on them: expect 200 do session.get('/pizzas/', 'olives' => '1').response.status end ¹ Abbreviation for Uniform Resource Identifier The #response method on #session returns a mock Rack response object that can be queried for results. Similarly, there’s a #request method that lets you inspect the request that was made. Lookout-Rack also deals with cookies. Assuming that ‹/cookies/set/› will set any cookies that we pass it and that ‹/cookies/show/› will simply do nothing relevant, the following expectation will pass: expect 'value' => '1' do session. get('/cookies/set/', 'value' => '1'). get('/cookies/show/').request.cookies end Sometimes you may want to set cookies yourself before making a request. You then use the #cookie method, which takes a String of ‹KEY=VALUE› pairs separated by newlines, commas, and/or semicolons and sets those cookies in the session: expect 'value' => '1', 'other' => '2' do session. cookie("value=1\n\nother=2"). get('/cookies/show/').request.cookies end You may also want to clear all cookies in your session using #clear: expect({}) do session. get('/cookies/set', 'value' => '1'). clear. get('/cookies/show').request.cookies end Finally, to test redirects, call the #redirect! method on the session object, assuming that ‹/redirected/› redirects to another location: expect result.redirect? do session.get('/redirected/').response end expect result.not.redirect? do session.get('/redirected/').redirect!.response end That’s basically all there’s to it. You can check the {API documentation}¹ for more information. ¹ See http://disu.se/software/lookout-rack/api/Lookout/Rack/ § Financing Currently, most of my time is spent at my day job and in my rather busy private life. Please motivate me to spend time on this piece of software by donating some of your money to this project. Yeah, I realize that requesting money to develop software is a bit, well, capitalistic of me. But please realize that I live in a capitalistic society and I need money to have other people give me the things that I need to continue living under the rules of said society. So, if you feel that this piece of software has helped you out enough to warrant a reward, please PayPal a donation to now@disu.se¹. Thanks! Your support won’t go unnoticed! ¹ Send a donation: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=now@disu.se&item_name=Lookout-Rack § Reporting Bugs Please report any bugs that you encounter to the {issue tracker}¹. ¹ See https://github.com/now/lookout-rack/issues § Authors Nikolai Weibull wrote the code, the tests, the documentation, and this README. § Licensing Lookout-Rack is free software: you may redistribute it and/or modify it under the terms of the {GNU Lesser General Public License, version 3}¹ or later², as published by the {Free Software Foundation}³. ¹ See http://disu.se/licenses/lgpl-3.0/ ² See http://gnu.org/licenses/ ³ See http://fsf.org/
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.