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
| ! name: Neutral News Source | |
| ! description: Search for neutral news sources | |
| ! public: true | |
| ! author: Nico F. | |
| { | |
| "name": "Neutral News Sources", | |
| "description": "Searches for news from trusted, neutral, and unbiased sources globally", | |
| "version": "1.2", | |
| "include": [ | |
| // Fuentes de EE.UU. |
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
| apiVersion: argoproj.io/v1alpha1 | |
| kind: EventBus | |
| metadata: | |
| name: default | |
| spec: | |
| nats: | |
| native: | |
| # Optional, defaults to 3. If it is < 3, set it to 3, that is the minimal requirement. | |
| replicas: 3 | |
| # Optional, authen strategy, "none" or "token", defaults to "none" |
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
| -- Pull in the wezterm API | |
| local wezterm = require 'wezterm' | |
| local act = wezterm.action | |
| -- This will hold the configuration. | |
| local config = wezterm.config_builder() | |
| -- This is where you actually apply your config choices | |
| config.default_cursor_style = 'BlinkingBlock' |
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
| HTTP status code symbols for Rails | |
| Thanks to Cody Fauser for this list of HTTP responce codes and their Ruby on Rails symbol mappings. | |
| Status Code Symbol | |
| 1xx Informational | |
| 100 :continue | |
| 101 :switching_protocols | |
| 102 :processing |
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
| #!/usr/bin/env ruby | |
| require 'net/ssh' | |
| require 'timeout' | |
| require 'unicode' | |
| require 'colorize' | |
| hosts = ['127.0.0.1'] | |
| ports = ['22'] | |
| users = ['root', 'admin', 'ec2-user'] |
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
| #!/usr/bin/env ruby | |
| require 'net/ssh' | |
| require 'timeout' | |
| require 'unicode' | |
| require 'colorize' | |
| hosts = ['127.0.0.1'] | |
| ports = ['22'] | |
| users = ['root', 'admin', 'ec2-user'] |
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
| source 'https://rubygems.org' | |
| gem 'hipchat', '~> 1.5', '>= 1.5.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
| sudo launchctl unload /System/Library/LaunchDaemons/com.apple.blued.plist | |
| sudo launchctl load /System/Library/LaunchDaemons/com.apple.blued.plist |