Difference between revisions of "Hivebrain"
From Sega Retro
Line 20: | Line 20: | ||
* [https://www.mediawiki.org/wiki/Extension:FileImporter FileImporter] and [https://www.mediawiki.org/wiki/Extension:FileExporter FileExporter] | * [https://www.mediawiki.org/wiki/Extension:FileImporter FileImporter] and [https://www.mediawiki.org/wiki/Extension:FileExporter FileExporter] | ||
* More video formats for TimedMediaHandler: MKV, AVI, FLV etc. | * More video formats for TimedMediaHandler: MKV, AVI, FLV etc. | ||
+ | |||
+ | ===Shortlist=== | ||
+ | * [https://www.mediawiki.org/wiki/Extension:3DAlloy 3DAlloy] | ||
+ | * [https://www.mediawiki.org/wiki/Extension:Cargo Cargo] (Retro CDN/Sonic Retro) | ||
+ | * [https://www.mediawiki.org/wiki/Extension:CBxHandler CBxHandler] | ||
+ | * [https://www.mediawiki.org/wiki/Extension:DeleteBatch DeleteBatch] | ||
+ | * [https://www.mediawiki.org/wiki/Extension:External_Data External Data] | ||
+ | * [https://www.mediawiki.org/wiki/Extension:FileImporter FileImporter]/[https://www.mediawiki.org/wiki/Extension:FileExporter FileExporter] | ||
+ | * [https://www.mediawiki.org/wiki/Extension:MultiUpload MultiUpload] | ||
+ | * [https://www.mediawiki.org/wiki/Extension:PagedTiffHandler PagedTiffHandler] | ||
+ | * [https://www.mediawiki.org/wiki/Extension:Sync Sync] (Retro CDN only?) | ||
==To do list== | ==To do list== |
Revision as of 23:26, 30 August 2020
Sega Retro admin. [1]
Contents
Extensions wishlist
- A working version of MultiUploadViaZip that also accepts 7z files.
- Not quite the same, but a nice alternative to uploading multiple files without UploadLocal? - Scarred Sun (talk) 07:51, 4 November 2017 (CDT)
- It doesn't have the benefit of compression, but could be useful nonetheless. - Hivebrain (talk) 21:56, 4 November 2017 (CDT)
- Extension:MultiUpload might work. - Hivebrain (talk) 14:33, 22 November 2019 (EST)
- It doesn't have the benefit of compression, but could be useful nonetheless. - Hivebrain (talk) 21:56, 4 November 2017 (CDT)
- OBJ or some other 3D object viewer (with PNG thumbnails). Maybe 3DAlloy. Something that supports textured models would be better (for example, loading the model and texture files from a single zip file).
- Something that can read bytes from uploaded files.
- Something that can view the contents of zip/7z files ("ZipHandler").
- I'm imagining the file page for a zip contains a list of all its files, each of which has its own file page and can be viewed/downloaded individually (e.g. "File:Zipfile.zip/Anotherfile.bin").
- Sync looks like a good way to share templates between wikis. From what I can tell it would only needed to be installed on Retro CDN.
- External Data so we can share info stored in Cargo tables.
- PSD thumbnails. PSDs contain layer information that gets lost when converted and uploaded as PNGs. Maybe thumbnails for other formats too, such as TIF. PagedTiffHandler would work.
- RTF/DOC/DOCX/PPT thumbnails.
- Something to bulk copy files from here to Retro CDN (by category for example).
- Something to bulk delete pages/files (by category for example). Extension:DeleteBatch might be good if it works on files.
- FileImporter and FileExporter
- More video formats for TimedMediaHandler: MKV, AVI, FLV etc.
Shortlist
- 3DAlloy
- Cargo (Retro CDN/Sonic Retro)
- CBxHandler
- DeleteBatch
- External Data
- FileImporter/FileExporter
- MultiUpload
- PagedTiffHandler
- Sync (Retro CDN only?)
To do list
- DLC
- User:Hivebrain/Article plan
- RealOne Arcade
- Sega Mobile games
- Sonic Cafe games
- arcade PCB, cartridge and disc photos
- http://mora.jp/search/top?keyWord=sega
- PlayStation sites: JP, UK, KR, AU, US, US (new)
- JP: http://www.jp.playstation.com/software/title/slpm62211.html
- UK: uk.playstation.com/ps2/games/detail/item35418/Astro-Boy
- US: http://us.playstation.com/games-and-media/games/ncaa-basketball-2k3-ps2.html
- US (old): http://www.us.playstation.com/games.aspx?id=ULUS-10019
- US (old2): http://www.us.playstation.com/PSP/Games/ULUS-10244
Portable programs needed
- Cogwheel
- FreezeSMS
- PC-Saturn - hidden in 16-bit installer, probably 16-bit itself
- Satan - hidden in 16-bit installer, probably 16-bit itself
- SSEmu
- Yabause (creates files in user AppData folder)
Problem emulators
- A-Saturn - needs a BIOS file I can't find
- Xe - needs GTK+
- Daphne - needs some kind of video files
- Looking up "Daphne for dummies" may be a pleasure
- Makaron - seems to require Xbox 360 controller
- To use a keyboard: change "X360PAD.dll" to "MakaronKEY.dll", under "[PortA]" in "Maple.ini"
- Gearsystem - missing component
- SSE - doesn't detect BIOS
- Retrocade - couldn't get it to detect roms
- Virtua - uses nonstandard rom set
Pricing notes
- Tax in Japan:
- 1989-04-01 - 1997-03-31 : 3%
- 1997-04-01 - 2014-03-31 : 5%
- 2014-04-01 - 2019-09-30 : 8%
- 2019-10-01 - ? : 10%
- Microsoft Points: phased out on 2013-08-26
- Euro: introduced 1999-01-01
Wiki notes
prefix | sitename |
---|---|
sega | Sega Retro |
sonic | Sonic Retro |
nec | NEC Retro |
cdn | Retro CDN |
Direct link to pdf thumbnail: {{#replace:{{filepath:CVG UK 100.pdf|180}}|page1-|page3-}}
Replace text notes
Special characters: "( ) . * + ? [ ] | /" (Add "\" before these to use them as a normal character.)
Original text | Replacement text | Result | Comment |
---|---|---|---|
a(.*)c | ac$1 | abc -> acb aanythingc -> acanything |
Finds any string of any length. |
a(B*)c | ac$1 | aBBBBc -> acBBBB | Finds the letter B repeated any number of times. |
ab(C+) | $1ab | abCCC -> CCCab | Finds the letter C repeated one or more times. |
ab(C?) | $1ab | abC -> Cab | Finds the letter C zero or one times. |
ab(C{5}) | $1ab | abCCCCC -> CCCCCab | Finds the letter C five (or specified number) times. |
ab(C{3,5}) | $1ab | abCCCC -> CCCCab | Finds the letter C three to five times. |
ab([0-9]) | cd$1 | ab5 -> cd5 | Finds a single digit between 0 and 9. Also works with letters (e.g. [a-z]) and lists (e.g. [aceg]). Brackets can be omitted if $1 isn't needed in replacement text. |
ab([^0-9]) | cd$1 | abx -> cdx | Finds a single digit not between 0 and 9. Same as above. |
ab(cd|ef) | $1 | abcd -> cd acef -> ef |
Finds any of the specified strings in brackets. |
123(.*)456 | {$1}123456 | 123x456 -> x123456 | Curly brackets indicate $1 instead of $1123456. |
(?i)iphone | iPhone | IPhone -> iPhone | Makes the search case insensitive. |
\n | Finds a line break. Same as using an actual line break. | ||
^ | Finds the beginning of the page. | ||
$ | Finds the end of the page. |
Done list
- User:Hivebrain/Mega Drive codes, User:Hivebrain/Mega Drive codes/Non-JUE
- User:Hivebrain/Master System codes, User:Hivebrain/Game Gear codes
- User:Hivebrain/Mega-CD codes
- General magazines combed and review-linked:
- ACE
- Computer Gaming World (1-100, 140, 215, 216)
- Mean Machines
- Sega magazines combed and review-linked: