Difference between revisions of "User talk:GeoSn0wOLD"

From The iPhone Wiki
Jump to: navigation, search
m
m (IAdam1n moved page User talk:GeoSn0w to User talk:GeoSn0wOLD: Automatically moved page while renaming the user "GeoSn0w" to "GeoSn0wOLD")
 
(18 intermediate revisions by 4 users not shown)
Line 9: Line 9:
 
I wish to inform you that as your app uses xpwn applications (specifically xpwntool and hfs), the GNU General Public License requires you to release your source code under the GNU GPL v3. --[[User:5urd|5urd]] ([[User talk:5urd|talk]]) 22:12, 3 November 2015 (UTC)
 
I wish to inform you that as your app uses xpwn applications (specifically xpwntool and hfs), the GNU General Public License requires you to release your source code under the GNU GPL v3. --[[User:5urd|5urd]] ([[User talk:5urd|talk]]) 22:12, 3 November 2015 (UTC)
 
: For sure, may I create a Github repo for it? <small>--The preceding unsigned comment was added by [[User:GeoSn0w|GeoSn0w]] ([[User talk:GeoSn0w|talk]]){{#if: | &nbsp;{{{2}}} }}. Please [[The iPhone Wiki:Signing talk page entries|consult this page]] for more info on how to sign pages, and how to fix this.</small><!-- Template:Unsigned -->
 
: For sure, may I create a Github repo for it? <small>--The preceding unsigned comment was added by [[User:GeoSn0w|GeoSn0w]] ([[User talk:GeoSn0w|talk]]){{#if: | &nbsp;{{{2}}} }}. Please [[The iPhone Wiki:Signing talk page entries|consult this page]] for more info on how to sign pages, and how to fix this.</small><!-- Template:Unsigned -->
::A GitHub repo with the source code is fine— it's disclosing the source code, after all. Please address this issue promptly, though— otherwise, I will delete the page once again by the end of the month. (libimobiledevice is also licensed under the similar GNU GPL v2.) --[[User:Dialexio|Dialexio]] ([[User talk:Dialexio|talk]]) 19:21, 28 November 2015 (UTC)
+
::A GitHub repo with the source code is fine— it's disclosing the source code, after all. Please address this issue promptly, though— otherwise, I will delete the page once again by the end of the month. (libimobiledevice is also licensed under the similar GNU GPL v2.) --[[User:Dialexio|Dialexio]] ([[User talk:Dialexio|talk]]) 16:59, 30 November 2015 (UTC)
:::Git REPO for GPL v3 version (not including my graphical design and icons) is available on https://github.com/GeoSn0w/Firmware-Manager-GPLv3 {{unsigned|GeoSn0w|19:24, November 29, 2015‎ (UTC)}}
 
::::I see that you made a GitHub repo, but I do not see any of the required source code in it. --[[User:Dialexio|Dialexio]] ([[User talk:Dialexio|talk]]) 23:10, 29 November 2015 (UTC)
 
:::::Pay more attention. Check this one https://github.com/GeoSn0w/Firmware-Manager-GPLv3/blob/master/StartSmart.vb
 
:::::It's from the same repo (StartSmart is the main form). {{unsigned|GeoSn0w|12:44, November 30, 2015 (UTC)}}
 
::::::There is no source code for any of the components from XPwn or libimobiledevice that you used. Heck, "xpwn" appears exactly once in that file, and it's only a reference to xpwntool.exe (which isn't even provided in the repo).
 
::::::On an unrelated note, please add your signature to future talk page entries— you can do this by either typing <code>--~~<nowiki />~~</code>, or clicking the second-to-last button in the editing toolbar (next to the horizontal line). --[[User:Dialexio|Dialexio]] ([[User talk:Dialexio|talk]]) 16:59, 30 November 2015 (UTC)
 
   
  +
This is the repo containing the Sources requested. I also updated app's page.--[[User:GeoSn0w|GeoSn0w]] ([[User talk:GeoSn0w|talk]]) 21:29, 5 December 2015 (UTC)
Sorry to say, but I have to teach you VB.NET.
 
Let's roll.
 
The source code for example has this:
 
   
  +
https://github.com/GeoSn0w/F.C.E.-365-Firmware-Manager [[User:GeoSn0w|GeoSn0w]] ([[User talk:GeoSn0w|talk]]) 21:49, 7 December 2015 (UTC)
Private Sub Button12_Click(sender As Object, e As EventArgs)
 
   
  +
: Hey, why not just create git submodules for the libraries/tools used? Also, VB.Net is easy to learn and all, but dump it for C# or even C or C++ when you can. Trust me, you won't regret it. --[[User:Haifisch|Haifisch]] ([[User talk:Haifisch|talk]]) 00:05, 8 December 2015 (UTC)
Dim psi As ProcessStartInfo
 
Dim pat1 As String = Application.StartupPath
 
Dim procname = pat1 + "/Data/xpwntool.exe"
 
Dim filename = TextBox9.Text
 
Dim newfile = TextBox7.Text
 
Dim kapa = "-k"
 
Dim iv = TextBox10.Text
 
Dim ivname = "-iv"
 
Dim key = TextBox8.Text
 
Dim args = String.Format(" {0} {1} {2} {3} {4} {5}", filename, newfile, kapa, key, ivname, iv)
 
psi = New ProcessStartInfo(procname, args)
 
Dim proc As New Process()
 
proc.StartInfo = psi
 
proc.Start()
 
   
  +
The terrible part is that I code in Assembly, C#, PY, VB.NET but have no idea on where to get me started on C or Objective-C. I'll buy myself a new iMAC these days and I'll start porting my app into C# for the moment.
End Sub
 
   
  +
BTW, I'm stuck with some Arduino II project for the moment and some exams :)--[[User:GeoSn0w|GeoSn0w]] ([[User talk:GeoSn0w|talk]]) 22:22, 8 December 2015 (UTC)
In this code, is the actual part where I call xpwntool with some parameters. Dim procname = pat1 + "/Data/xpwntool.exe" will call the app from Data folder, and
 
Dim args = String.Format(" {0} {1} {2} {3} {4} {5}", filename, newfile, kapa, key, ivname, iv) are parameters to be passed (from textboxes and radiobuttons of the gui).
 
proc.start will launch the app xpwntool from App's Data folder and will pass the parameters to it as it is a CLI.
 
   
  +
== Multiple edits ==
The same for libi where code is:
 
   
  +
Please use the "Show preview" button in order to find mistakes and use less edits on the same page when adding something. I've noticed a lot lately that you tend to make at least 2 edits most of the time for one thing. This clogs up the [[Special:RecentChanges|recent changes]] page a lot more than it should be. --[[User:IAdam1n|iAdam1n]] ([[User talk:IAdam1n|talk]]) 23:00, 8 December 2015 (UTC)
Private Sub Button21_Click(sender As Object, e As EventArgs)
 
   
  +
Ok, my bad, sorry and thanks for advice. I'm still new in Wikis.
  +
I'll definitely use that tool.--[[User:GeoSn0w|GeoSn0w]] ([[User talk:GeoSn0w|talk]]) 23:02, 8 December 2015 (UTC)
  +
:No problem :) --[[User:IAdam1n|iAdam1n]] ([[User talk:IAdam1n|talk]]) 23:03, 8 December 2015 (UTC)
   
  +
== Signing talk topics ==
Dim psi2 As ProcessStartInfo
 
Dim proc As New Process()
 
Dim process3 = pat1 + "/Data/idevicerestore.exe"
 
Dim udid = udidval.Text
 
Dim ipswname1 = ipswname.Text
 
Dim param1 = param.Text
 
Dim finalpatch = TextBox16.Text
 
Dim args3 = String.Format("{0}{1} {2} {3}", parameter1, udid, param1, ipswname1)
 
psi2 = New ProcessStartInfo(process3, args3)
 
proc.StartInfo = psi2
 
proc.Start()
 
proc.WaitForExit()
 
If proc.HasExited = True Then
 
MsgBox("Finish Message", MsgBoxStyle.Information)
 
End If
 
   
  +
:Please sign talk topics that you comment on. This makes it clearer who made the comment. --[[User:IAdam1n|iAdam1n]] ([[User talk:IAdam1n|talk]]) 18:11, 17 December 2015 (UTC)
End Sub
 
The code is pasted here from https://github.com/GeoSn0w/Firmware-Manager-GPLv3/blob/master/StartSmart.vb
 
If you don't know Vb.NET please let someone you trust and knows to analyze the source.
 
   
  +
Understood. Thanks.
--[[User:GeoSn0w|GeoSn0w]] ([[User talk:GeoSn0w|talk]]) 21:48, 30 November 2015 (UTC)
 

Latest revision as of 13:32, 11 September 2022

Firmware Manager page

Hi there! I noticed that you created a program to help facilitate decrypting firmware files. While all of us encourage contributions, we have had issues with an influx of GUI wrappers (specifically VFDecrypt GUIs) in the past. In addition, as the creator of the program, I think it would be best for an unsolicited person to add your program — otherwise, it looks a little like you're trying to use The iPhone Wiki as a billboard to advertise on. (Listings on the Main Page are also reserved for software with a unique function and a significant number of users.) As such, I made the decision to delete your page from the wiki, as this appeared to conflict with section 3.8 of the Ground rules. If you have any questions about my decision, feel free to respond to this message. --Dialexio (talk) 03:33, 12 October 2015 (UTC)

-M'kay. Can I publish it as a page if I don't list it to main page? It has 3192 users. --The preceding unsigned comment was added by GeoSn0w (talk) 12:23, October 24, 2015‎ (UTC). Please consult this page for more info on how to sign pages, and how to fix this.
That's an oddly specific number. (If it's a download count, do keep in mind one person might download it multiple times... but I digress.) I suppose that it's fine, considering the feature set and amount of users it has. I'll undelete the page so you don't have to recreate it from scratch. --Dialexio (talk) 00:57, 25 October 2015 (UTC)
MM'kay, thanks You can rest asure the app will be updated with more and more features so that will be useful for all users. Have a great day and thanks for recovering the page.

--GeoSn0w

Firmware Manager Source Code

I wish to inform you that as your app uses xpwn applications (specifically xpwntool and hfs), the GNU General Public License requires you to release your source code under the GNU GPL v3. --5urd (talk) 22:12, 3 November 2015 (UTC)

For sure, may I create a Github repo for it? --The preceding unsigned comment was added by GeoSn0w (talk). Please consult this page for more info on how to sign pages, and how to fix this.
A GitHub repo with the source code is fine— it's disclosing the source code, after all. Please address this issue promptly, though— otherwise, I will delete the page once again by the end of the month. (libimobiledevice is also licensed under the similar GNU GPL v2.) --Dialexio (talk) 16:59, 30 November 2015 (UTC)

This is the repo containing the Sources requested. I also updated app's page.--GeoSn0w (talk) 21:29, 5 December 2015 (UTC)

https://github.com/GeoSn0w/F.C.E.-365-Firmware-Manager GeoSn0w (talk) 21:49, 7 December 2015 (UTC)

Hey, why not just create git submodules for the libraries/tools used? Also, VB.Net is easy to learn and all, but dump it for C# or even C or C++ when you can. Trust me, you won't regret it. --Haifisch (talk) 00:05, 8 December 2015 (UTC)

The terrible part is that I code in Assembly, C#, PY, VB.NET but have no idea on where to get me started on C or Objective-C. I'll buy myself a new iMAC these days and I'll start porting my app into C# for the moment.

BTW, I'm stuck with some Arduino II project for the moment and some exams :)--GeoSn0w (talk) 22:22, 8 December 2015 (UTC)

Multiple edits

Please use the "Show preview" button in order to find mistakes and use less edits on the same page when adding something. I've noticed a lot lately that you tend to make at least 2 edits most of the time for one thing. This clogs up the recent changes page a lot more than it should be. --iAdam1n (talk) 23:00, 8 December 2015 (UTC)

Ok, my bad, sorry and thanks for advice. I'm still new in Wikis. I'll definitely use that tool.--GeoSn0w (talk) 23:02, 8 December 2015 (UTC)

No problem :) --iAdam1n (talk) 23:03, 8 December 2015 (UTC)

Signing talk topics

Please sign talk topics that you comment on. This makes it clearer who made the comment. --iAdam1n (talk) 18:11, 17 December 2015 (UTC)

Understood. Thanks.