GitHub Scrape

Post Reply
User avatar
everamzah
Member
Posts: 490
Joined: Thu Jan 29, 2015 00:47
GitHub: everamzah
IRC: everamzah
In-game: everamzah

GitHub Scrape

by everamzah » Post

Here's a link to my Minetest stuff (mods/subgames) on GitHub: https://archive.org/details/everamzah-mt_git

Here's a copy of my last issue on github.com/minetest/minetest:

Code: Select all

I imagine this is in duplicate, and I apologize for being vague, but I feel it's worth posting.

The player's position isn't saving in the player's file when using minetestserver, leaving the server running, and joining and disconnecting and re-joining. Examining the worlddir/players/playername file shows missing or incorrect values.
Image

Code: Select all

Shows in worlddir/players/playername as:

breath = 11
hp = 20
name = everamzah
pitch = 8.19
position = (-3456.02,140.6,2793.44)
version = 1
yaw = -44.88
PlayerArgsEnd

Code: Select all

Other times showing just:

name = everamzah
version = 1
PlayerArgsEnd
The result is that the player is positioned at 0,0,0 on join.
Thank you for Minetest!
Attachments
pos.png
pos.png (56.42 KiB) Viewed 848 times

red-001
Member
Posts: 205
Joined: Tue Jan 26, 2016 20:15
GitHub: red-001
IRC: red-001

Re: GitHub Scrape

by red-001 » Post


User avatar
TheReaperKing
Member
Posts: 531
Joined: Sun Nov 22, 2015 21:36
Contact:

Re: GitHub Scrape

by TheReaperKing » Post

Just wondering but why did you remove your mods from github?
Become A Real Life Superhero - http://SuperheroHill.com
Project Lead of the Doom 3 Mod Last Man Standing - http://Doom3Coop.com
Project Lead of Platinum Arts Sandbox Free 3D Game Maker - http://SandboxGameMaker.com
Youtube Channel - https://www.youtube.com/user/PlatinumArtsKids

User avatar
Fixer
Member
Posts: 904
Joined: Sun Jul 31, 2011 11:23
IRC: Fixer
In-game: Fixer
Location: Ukraine

Re: GitHub Scrape

by Fixer » Post

Issue above should be fixed. Why you leave github?

User avatar
stu
Member
Posts: 923
Joined: Sat Feb 02, 2013 02:51
GitHub: stujones11
Location: United Kingdom

Re: GitHub Scrape

by stu » Post

everamzah wrote:Thank you for Minetest!
I do hope this is not another 'rage-quit' you are a valued member of this community and I, for one, would be sad to see you go.

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: GitHub Scrape

by taikedz » Post

Oh dear... I hope this is not what it looks like...!

Fingers crossed to be seeing you back soon.... and if not, best wishes and best of luck for whatever new climes you are headed towards!

User avatar
Fixer
Member
Posts: 904
Joined: Sun Jul 31, 2011 11:23
IRC: Fixer
In-game: Fixer
Location: Ukraine

Re: GitHub Scrape

by Fixer » Post

https://archive.org/details/everamzah-mt_git

Anyone interested in cloning his stuff to github? Now links to his mods are not working, someone needs to mirror it using file above (but properly, one by one, not everything in one pile, also history of commit and stuff should be here too)

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: GitHub Scrape

by taikedz » Post

I intend to get to it tomorrow some point properly with full git logs

User avatar
TheReaperKing
Member
Posts: 531
Joined: Sun Nov 22, 2015 21:36
Contact:

Re: GitHub Scrape

by TheReaperKing » Post

What about having them moved into here? Seems like a good place:
https://github.com/minetest-mods
Become A Real Life Superhero - http://SuperheroHill.com
Project Lead of the Doom 3 Mod Last Man Standing - http://Doom3Coop.com
Project Lead of Platinum Arts Sandbox Free 3D Game Maker - http://SandboxGameMaker.com
Youtube Channel - https://www.youtube.com/user/PlatinumArtsKids

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: GitHub Scrape

by taikedz » Post

The ReaperKing - that involves a process. We'd have to probably bring them back to github first.

I'm going to get a start on this shortly....

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: GitHub Scrape

by taikedz » Post

OK I scripted the reupload, results here https://github.com/taikedz?tab=repositories

Any github.com/everamzah/repo has become github.com/taikedz/everamzah-repo

There were some that were duplicates, some that were just working forks, so I might remove a few eventually.

In case anybody needs to do something like this again, here's the bash item. Written for Ubuntu. Should work in cygwin ; may work in gitbash.

Code: Select all

#!/bin/bash

for evergit in *; do
	if [[ ! -d "$evergit" ]]; then continue; fi

	(
		cd "$evergit"
		everurl=$(git remote -v|grep fetch|awk '{print $2}')

		#if [[ "$(git remote -v|gre)" -gt 0 ]]; then
		if [[ -n "$DOLIST" ]]; then
			echo "$everurl"
			continue
		fi

		echo -e "\n=====\nViewing $evergit readme and licenses (use ':n' to read subsquent files)"
		sleep 2
		ls | egrep 'license|readme' -i | xargs less

		read -p 'Upload ? y/N> '
		if [[ ! "$REPLY" = y ]]; then continue; fi

		tairepo="everamzah-$(basename "$everurl"|sed -r 's/.git$//')"
		echo "Determined repo name $tairepo"

		curl -u taikedz https://api.github.com/user/repos -d '{"name":"'$tairepo'"}' || continue

		echo "Setting new remote everamzah for $everurl"
		git remote add everamzah "$everurl"

		echo "Setting origin for $tairepo"
		git remote set-url origin "ssh://git@github.com/taikedz/$tairepo"

		echo "Pushing repo"
		git push origin master
	)
done

User avatar
Fixer
Member
Posts: 904
Joined: Sun Jul 31, 2011 11:23
IRC: Fixer
In-game: Fixer
Location: Ukraine

Re: GitHub Scrape

by Fixer » Post

Nice, thank you a lot! I've added new links in his mod topics to your repo so players can download them.
Last edited by Fixer on Wed Nov 09, 2016 17:36, edited 4 times in total.

User avatar
Fixer
Member
Posts: 904
Joined: Sun Jul 31, 2011 11:23
IRC: Fixer
In-game: Fixer
Location: Ukraine

Re: GitHub Scrape

by Fixer » Post

Any github.com/everamzah/repo has become github.com/taikedz/everamzah-repo
There were some that were duplicates, some that were just working forks, so I might remove a few eventually.
I've checked it manually with his mod topics on forum and it seems all stuff is his mods/forks, so you should keep everything. Only two things have no their forum pages that I will mention here so people can find them:
1) https://github.com/taikedz/everamzah-mese_crystals - mese_crystals used in his dcb subgame
2) https://github.com/taikedz/everamzah-spawn - spawn mod for servers

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: GitHub Scrape

by taikedz » Post

@Fixerol - many thanks for going through these.

For `mese_crystals` it's actually a fork of RealBadAngel's mod - he just did some PNG compression on the textures, I am tempted to remove this repo, it's not really got any purpose and muddies the waters

For `spawn`, it's such a simple mod that I expect it was from his days learning about modding. There are better alternatives.

User avatar
taikedz
Member
Posts: 698
Joined: Sun May 15, 2016 11:11
GitHub: taikedz
IRC: DuCake
In-game: DuCake
Location: Scotland, UK
Contact:

Re: GitHub Scrape

by taikedz » Post

For info - the "everamzah" account has been re-created as an organisation; all original links now work. Github is currently redirecting my old "taikedz/everamzah-repo" links over to "everamzah/repo" now, I hope those don't break over time.

I've reached out to jas (originally everamzah) to have in the github organisation.

Post Reply

Who is online

Users browsing this forum: No registered users and 17 guests