PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
So you're running a Rails application and want to spruce up your YARD documentation. Here's the guide I wish I had.
Add yard-activerecord and yard-activesupport-concern to your Gemfile, add --plugin activerecord and --plugin activesupport-concern to your .yardopts flags, and db/schema.rb to the end of your .yardopts sources. Your models' attributes and assocations should now be included in the documentation.
To modify your YARD template, create doc-src/templates/default/fulldoc/html, then add --template-path doc-src/templates to your project's .yardopts. You can now create a doc-src/templates/default/fulldoc/html/css/common.css and the styles will be included (but overwrites need to be !important).
| # Guitar Tabs Template | |
| # Created by: Ultimate Guitar | |
| # Source URL: https://www.ultimate-guitar.com/lessons/for_beginners/guitar_tabs_template.html | |
| ----------------------------------------------------------------- | |
| SONG NAME - Band Name | |
| ----------------------------------------------------------------- | |
| Tabbed by: | |
| Email: |
| { | |
| "name": "Sample Dark Theme", | |
| "background": "#000000", | |
| "backgroundLight": "#9b9b9b", | |
| "backgroundNeutral": "#535353", | |
| "foreground": "#ffffff", | |
| "foregroundNeutralSecondary": "#ffffff", | |
| "foregroundNeutralTertiary": "#ffffff", | |
| "tableAccent": "#0c62fb", | |
| "dataColors": [ |
Twitter has released the official API v2 endpoint for the bookmark feature. https://twittercommunity.com/t/build-with-bookmarks-on-the-twitter-api-v2/168804/
The following descriptions are or will soon be no longer useful; I suggest using the new official API.
| # The following comments fill some of the gaps in Solargraph's understanding of | |
| # Rails apps. Since they're all in YARD, they get mapped in Solargraph but | |
| # ignored at runtime. | |
| # | |
| # You can put this file anywhere in the project, as long as it gets included in | |
| # the workspace maps. It's recommended that you keep it in a standalone file | |
| # instead of pasting it into an existing one. | |
| # | |
| # @!parse | |
| # class ActionController::Base |
| # Original source: https://gist.github.com/hopsoft/56ba6f55fe48ad7f8b90 | |
| # Merged with: https://gist.github.com/kofronpi/37130f5ed670465b1fe2d170f754f8c6 | |
| # Benefits of: https://gist.github.com/e12e/e0c7d2cc1d30d18c8050b309a43450ac | |
| # And fixes of: https://gist.github.com/joelvh/f50b8462611573cf9015e17d491a8a92 | |
| namespace :db do | |
| desc 'Dumps the database to backups' | |
| task dump: :environment do | |
| dump_fmt = ensure_format(ENV['format']) | |
| dump_sfx = suffix_for_format(dump_fmt) | |
| backup_dir = backup_directory(Rails.env, create: true) |
| # frozen_string_literal: true | |
| require 'dotenv' | |
| require 'net/http' | |
| require 'json' | |
| module Codewars | |
| Dotenv.load('.env') | |
| ENDPOINT = 'https://www.codewars.com/api/v1/' | |
| API_KEY = ENV['CW_API_KEY'] |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Example", | |
| "type": "node", | |
| "request": "launch", | |
| "runtimeExecutable": "node", | |
| "runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"], |
| #http://stackoverflow.com/questions/6348289/download-a-working-local-copy-of-a-webpage | |
| #http://stackoverflow.com/questions/8755229/how-to-download-all-file-from-website-using-wget | |
| #http://stackoverflow.com/questions/4272770/wget-with-authentication?rq=1 | |
| #add browser headers: | |
| #--header="Accept: text/html" --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/30.0" | |
| #add .htaccess authentication details: | |
| #--password=password --user=user | |
| wget -m -p -E -k -K -np http://site/path/ | |
| wget -p -k http://ExampleSite.com | |
| # and another via Quora https://www.quora.com/How-do-you-export-a-WordPress-site-to-a-static-HTML |