#Project TMP3
Explore tagged Tumblr posts
Text
Project: TMP3
So in 2022 (I believe), I had a little project in mind to make a TMP3, and this was a sponsor card:

While I was digging through my old drawings, I discovered this and decided to remake it. So now, it looks like this:
(EDIT: Forgot to add Nerd. I’m so stupid.) Whaddaya think of my designs now? I’ll post the four characters that look unfamiliar probably soon. IDK LOL
#jackbox#trivia murder party#jackbox games#jackbox fanart#tmp#Gacha Life 2#Project TMP3#tmp fanart#tmp dolls#tmp host#tmp oc#tmp wrath#Tmp gluttony#Tmp lust#Tmp envy#Tmp greed#Tmp pride#tmp despair#Tmp sloth#Tmp red herring#Tmp alpha#Tmp screamer#tmp sheriff#tmp believer#Tmp jester#tmp lovers#Tmp nerd
9 notes
·
View notes
Text
(picmix made by @/sweetest-starlight!!)
Fibby’s Pinned Post!
(Last Update: June 18th, 2025)
Info:
No pronouns most preferred (refer to me by name), but He/Him and She/Her work fine!
Neurodivergent (ADHD, Autistic, Dyslexic)
Black
Bi Arospec + Genderfluid
I support Palestine! Zionists can go fuck themselves.
Minor (Adults can interact and follow!)
Tags:
#kae is screaming again - regular post
#kae can draw? - art post
#kae made a thing - non-art creation post
#big fav - my favorite posts
#kae is fucking livid - rant/vent post
#kae answers an ask - me responding to an ask
#:D - art reblog
Interests (Bold is Special Interest, Italics is Rarely Posting, Cross Out means I do not support the company behind it):
Jackbox Games/You Don’t Know Jack
Kendrick Lamar
Tyler, The Creator
Vs. Void
Mii-Related Media
Unikitty!
Cookie Run Kingdom
WarioWare
Rhythm Heaven
The Disastrous Life Of Saiki K.
World History
Zola Project
Parappa The Rapper
Date Everything
BYF:
I have very low self-esteem.
I do not reblog fundraisers or donation posts. Please don’t send me them in my askbox!
Please use tone tags with me!
Ask me for triggers!
I do not do commissions, but if you wanna send me money, go ahead /hj
My birthday is August 6th!
My timezone is EST!
I block VERY freely.
I do not mind dms! Feel free to message me any time!
As for why I do not support Jackbox Games as a company, they are adding micro transactions to TMP3 and are blocking people who criticize them, even though they promote themselves as a company who “listens to their fans”.
I AM A NON-SHARING YUMESHIPPER. I feel uncomfortable seeing others ship themselves with my favorites, but if we are already mutuals we are fine. However, if you share the same yume as me, I will not harass you. I will likely just not interact or block you. Sorry!
DNI (Any bullet points in Red & Bold is an insta-block):
Basic Criteria (Zionist, Homophobes, Pedos, etc.)
NSFW/18+ Accounts
Proshippers
Vivziepop Fans (If you like Hazbin Hotel/Helluva Boss, it’s fine. But if you actually like the creator, DNI.)
Support @/justanothermicrophone (Reason: would frequently upload fetish porn in my server, exhibited weird sexual behaviors towards other members, and DID NOT apologize) DO NOT HARASS JONATHAN.
Support @/kimulokml (Reason: Faked being a grooming victim, accused me of faking my personal trauma, lied about me and my friends being zionists, and more!) DO NOT HARASS KIM.
Support @/alienatedclowny (Reason: In general asshole who insults me and my friends and supports Kim) DO NOT HARASS DAVE.
Support @/linkylove123 (Reason: Got me and all of my friends banned from the Official Jackbox Server for lies and false allegations) DO NOT HARASS LINKY.
Support @/lavenderroomie (Reason: Lied about me and my friends shit-talking people, lied about being on our side, openly defends Kim and Claudie, and just makes me generally uncomfortable) DO NOT HARASS DELILAH.
Post/Reblog a lot of PureLily content.
White Lily Cookie stans (you guys make me uncomfortable, sorry!)
Saiteru (Saiki X Teruhashi) Shippers
Hoyoverse Supporters
Chance X Lux Shippers (It makes me EXTREMELY uncomfortable, sorry!)
#kae is screaming again#kae made a thing#pinned post#info post#pinned info#kendrick lamar#proship dni#looking for mutuals
17 notes
·
View notes
Text
PVCS -> SVN -> Git
I didn’t find a concise guide on how to export a PVCS repository to Git. This is what I came up with. It uses Polarion’s SVNIMPORTER program available here:
https://polarion.plm.automation.siemens.com/products/svn/svn_importer
On windows after install configure the configuration.properties file in the main directory of the importer. This assumed that PVCS was installed and working already. My sample config file is listed at the end of this post.
Important things to know:
If the svnimporter process can’t connect to PVCS it will fail immediately but not state that it can’t connect to the authentication server. I believe the error it gives is -1.
If your path to the PVCS project is wrong you receive error -3 with no description. Your project path must end in a /. Your subproject must not have a / at the end or the start. It’s advised to not have spaces in your project paths as this causes additional errors. I’d suggest renaming those paths before you start. It’s only an issue with the configuration tool and how it handles escaping the paths (spoiler: it doesn’t nicely).
If you are logged into the domain already, you do not need to provide a password to the config.properties. This will also cause the login to fail again with -3 and no description as to why.
With the config file in place, svn server installed, git installed, and svnimporter installed on a machine that has PVCS configured; you can run the following commands to start the export.
c:\svnimporter\run.bat full config.properties
While this runs in another terminal you can run tail -f on the svnimporter.log file to see it’s progress.
When it finishes you should see an export in c:\svn.
Start SVN serve in this directory so that we can query the repository.
c:\Subversion\bin\svnserve.exe -r c:\SVN -X
Next get a listing of authors so that we can create a mapping file for the Git import
svn log svn://localhost/ --xml | grep author
You’ll want to create a mapping file with the following format:
schacon = Scott Chacon <[email protected]> selse = Someo Nelse <[email protected]>
With that done create a directory for the git repository and change to that folder. In this example mine is named c:\temp. My authors names file is located at c:\svn\names.txt
cd c:\temp git svn clone svn://localhost/ --no-metadata -stdlayout temp git svn clone svn://localhost/ --no-metadata --authors-file=c:\SVN\names.txt -stdlayout temp2
Delete the trunk branch if SVN created it.
git branch -d trunk
And finally add an origin to be able to push this repository to a remote server.
git remote add origin git@somegitserver:Project/Projectfile.git git push
This is my config.properties file. Note that the parameter only_trunk is set to YES in this example as I didn’t want it to bring over branches in PVCS as branches in SVN/Git. My repository for PVCS is located at D:/PVCSREPO
# The source repository provider, # either cvs,cvsrcs,pvcs,mks,cc,vss or st srcprovider=pvcs
########################################################################### # Import dump settings # # import_dump_into_svn - If enabled then after dump creation, # it will be imported into svn repository via svnadmin # (you must write proper svn autoimport options) # If svn repository is not exist it will be created. # # existing-svnrepos - if enables and if import enabled by previous # option then dump will be imported into svn repository ONLY IF REPOSITORY EXISTS # # clear_svn_parent_dir - if enabled and import enabled then application will delete all # existing records in svn's parent directory before import dump to it. # (affect for full dump only) #
import_dump_into_svn=yes
#existing_svnrepos=yes
clear_svn_parent_dir=yes
# Option enables that feature: # "Now the importer always import whole history(with possibilities like trunk-only etc.). # It should be possible to import only current state as one revision. It is useful for # the incremental import. In current situation we will never be able to import whole because # of the size of the dump file." # But see the new parameter "dump.file.sizelimit.mb" below. # # AFFECT FOR FULL DUMP CREATION ONLY! use_only_last_revision_content=no
# VM systems often allow to set a description on a versioned file (one for all revisions). # svnimporter is able to migrate it to a svn property. Since there is no predefined # property key for this purpose in subversion, you can configure it here. If you do # not give a property key name, the file description will not be migrated. # NOTE: migration of properties is presently implemented only for PVCS # file_description_property_key=description
# If use_file_copy is set to yes, svnimporter uses SVN file copy operations for tags and # branches. This raises the quality of the import dramatically. On the other hand, # it works reliably for one-shot imports only. DO NOT SET THIS TO YES if you # want to make incremental imports to synchronize repositories; otherwise the resulting # dump files may not be importable to SVN. # # If set to no, every branch and tag operation is implemented as a simple file add operation. # The origin of the tag or branch from the trunk is not recorded. # # Presently, this flag is evaluated only by the import from PVCS, CVS, MKS, ClearCase. # use_file_copy=yes
##################################################################################### # FILE SETTINGS # # full.dump.file - file name pattern for saving full dump # incr.dump.file - file name pattern for saving incremental dump # incr.history.file - file for saving history for incremental dump # list.files.to - destination file for saving scm's files list # dump.file.sizelimit.mb - rough maximum dump file size in MegaBytes. See below.
##################################################################################### full.dump.file=full_dump_%date%.txt incr.dump.file=incr_dump_%date%.txt incr.history.file=incr_history.txt list.files.to=files_%date%.txt
# svnimporter checks the size of the current dump file before dump of each revision. If # the size (in Megabytes) exceeds this limit, a new dump file is created. For large # source repositories and/or small size limits, a run of svnimporter will generate a # sequence of dump files. Their actual sizes will be slightly larger than the limit # specified here. # # Take care not to set the limit too small. The dump file names are distinguished # by their date part only which has a resolution of one second. Producing one dump file # should therefore take longer than one second. # # Set the value to 0 to switch off this feature.
dump.file.sizelimit.mb=400
####################################################################################### # SVN DUMP OPTIONS # # trunk_path - location of "trunk" folder. Can be "." if "only_trunk" option is enabled # branches_path - location of "branches" folder # tags_path - location of "tags" path # svnimporter_user_name - name of service user, which create first revision etc. # only_trunk - if enabled then convert only trunk of repository (skip tags and branches) ####################################################################################### trunk_path=trunk branches_path=branches tags_path=tags svnimporter_user_name=NOVA1313 only_trunk=yes
####################################################################################### # SVN AUTOIMPORT OPTIONS # # svnadmin.executable - path to svnadmin executable # svnadmin.repository_path - path to svn repository # svnadmin.parent_dir - parent dir in svn repository for importing dump (must be created manually) # svnadmin.tempdir - temp directory for svnadmin # svnclient.executable - path to svn executable # svnadmin.import_timeout - The value is length of time to wait in milliseconds, # if this parameter is set and "svnadmin load" did not finished after specified length of time # then it's process will be killed and svnimporter execution will be aborted. # svnadmin.path_not_exist_signature - when importer checks repository path for existing # it compares output of "svn ls" command with given string. If given string not found # in command output and command return code is not null then importer cannot determine # path exist or not, then exception will be thrown. # If you runs importer not in English locale and log file contains similar as following error: # EXCEPTION CAUGHT: org.polarion.svnimporter.svnprovider.SvnAdminException: # error during execution 'svn ls' command: svn: URL 'file:///c:/tmp/ImportFromCvs/zzzzz' existiert nicht in dieser Revision # then you should change signature to "existiert nicht in dieser Revision" ####################################################################################### svnadmin.executable=C:/Subversion/bin/svnadmin.exe svnadmin.repository_path=c:/SVN svnadmin.parent_dir=. svnadmin.tempdir=c:/tmp1 svnclient.executable=C:/Subversion/bin/svn.exe svnadmin.verbose_exec=yes #svnadmin.import_timeout=1800000
svnadmin.path_not_exist_signature=non-existent in that revision #svnadmin.path_not_exist_signature=existiert nicht in dieser Revision
################################################################################# ########################## PVCS PROVIDER CONFIGURATION ########################## #################################################################################
pvcs.class=org.polarion.svnimporter.pvcsprovider.PvcsProvider pvcs.executable=C:/Program Files/Serena/vm/win32/bin/pcli.exe pvcs.projectpath=d:/PVCSREPO/PVCS_NAME/ pvcs.subproject=PROJECT/PATH/SUBPATHNAMEHERE pvcs.tempdir=c:/tmp2 pvcs.log.dateformat=MMM dd yyyy HH:mm:ss pvcs.checkouttempdir=c:/tmp3 pvcs.log.datelocale=en pvcs.log.encoding=Cp1251 #pvcs.log.datetimezone=Europe/Berlin pvcs.verbose_exec=yes pvcs.username=PVCSDOMAINUSER #pvcs.password=NOTNEEDED
# If you set keep_vlogfile to "yes", and there already exist vlog.tmp and files.tmp # files in the tempdir from a previous run of svnimporter, these files will not # be regenerated. This is useful in some special situations, for example when you # want to make sure you import the same state of the PVCS archive as before. # # pvcs.keep_vlogfile=yes
# If import_attributes=yes, svnimporter will try to map the PVCS archive attributes # to SVN properties. However, it is usually better to use the auto-props feature of Subversion # to set properties during the import. # # pvcs.import_attributes=yes
# The bug was occasionally observed during import of big projects # (many files/revisions) and heavy PVCS load (probably). # This bug is actually caused by invalid behaviour of pcli.exe get command, # which sometimes returns invalid file content (wich less than 0.1% probability) # if pvcs.validate_checkouts set to "yes" then importer will detect this bug # and try to fix it. # It may slow down import process because each checkout will be performed twice (at least)
pvcs.validate_checkouts=yes
################################################################################# ########################## LOG4J CONFIGURATION ################################## ################################################################################# log4j.rootLogger=DEBUG, file
#log4j.logger.cz=DEBUG, file #log4j.logger.cz=DEBUG, stdout
log4j.logger.historyLogger=DEBUG, historyFile
log4j.appender.file=org.apache.log4j.FileAppender log4j.appender.file.File=svnimporter.log log4j.appender.file.layout=org.apache.log4j.PatternLayout log4j.appender.file.layout.ConversionPattern=%d{HH:mm:ss,SSS} [%t] %5p %c{1}:%L - %m%n
log4j.appender.historyFile=org.apache.log4j.FileAppender log4j.appender.historyFile.File=history.log log4j.appender.historyFile.layout=org.apache.log4j.PatternLayout log4j.appender.historyFile.layout.ConversionPattern=%m%n
log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%c{1}:%L %5p - %m%n
################################################################################# ############################### DEBUG OPTIONS ################################### ################################################################################# # # do not delete provider's temporary files # disable_cleanup=yes
# Create or playback a playback log file # This playback log file, plus your config.properties file can be emailed # to the developers who can play it back to identify specific problems with # your migration attempts.
# record.mode = normal - normal operation, nothing will be recorded or played # record - record all interactions with RCS system # record-stubs - same as record, except actual contents of # member files will be replaced with a single # line containing the file name and revision number # Makes a much smaller file that reveals much # less sensitive information. # playback - Play back previously recorded playback log file # record.file = name of playback log file to record or playback
record.mode=normal record.file=playback-log.txt
0 notes
Text
Project TMP3: Stepsister and Robin Hood!
And now for the second half!
Introducing: Stepsister and Robin Hood!
#trivia murder party#jackbox#jackbox games#jackbox fanart#tmp#tmp dolls#Tmp oc#Project TMP3#Cinderella#Robin Hood#gacha life 2
4 notes
·
View notes
Text
Project TMP3: Rapunzel and Snow Queen!
So I decided to post the first half of the four dolls that will be accompanying you on your journey to defeat the evil queen in my TMP3 project!
They are: Rapunzel and Snow Queen!
#trivia murder party#jackbox#jackbox games#jackbox fanart#tmp#Tmp oc#Project TMP3#Rapunzel#Snow Queen#gacha life 2
4 notes
·
View notes