User contributions for Mmaciejewski
From Network for Advanced NMR
Results for Mmaciejewski talk block log uploads logs
A user with 965 edits. Account created on 22 January 2025.
14 September 2026
- 21:0321:03, 14 September 2026 diff hist +2 Account Update →Step 2: Reset your password and set security questions current
- 20:5920:59, 14 September 2026 diff hist 0 Account Update No edit summary
- 20:5820:58, 14 September 2026 diff hist +56 Account Update No edit summary
- 20:5720:57, 14 September 2026 diff hist +72 Account Update No edit summary
- 20:5320:53, 14 September 2026 diff hist +334 Account Update No edit summary
- 20:3720:37, 14 September 2026 diff hist 0 Account Update No edit summary
- 20:3120:31, 14 September 2026 diff hist −1 Account Update No edit summary
- 20:2920:29, 14 September 2026 diff hist +83 Account Update No edit summary
- 20:2020:20, 14 September 2026 diff hist −6 Account Update →Step 1: Start the login process
- 20:1920:19, 14 September 2026 diff hist −1 Account Update No edit summary
- 20:1820:18, 14 September 2026 diff hist +270 Account Update →Step 4: Log in
- 20:1020:10, 14 September 2026 diff hist +363 Account Update No edit summary
- 19:0219:02, 14 September 2026 diff hist +973 Account Update No edit summary
- 18:3918:39, 14 September 2026 diff hist +96 Account Update No edit summary
- 18:3618:36, 14 September 2026 diff hist +98 Account Update No edit summary
- 18:2818:28, 14 September 2026 diff hist +30 Account Update No edit summary
- 18:2618:26, 14 September 2026 diff hist +22 Account Update No edit summary
- 18:2518:25, 14 September 2026 diff hist −27 Account Update No edit summary
- 18:2218:22, 14 September 2026 diff hist +502 Account Update No edit summary
- 17:5717:57, 14 September 2026 diff hist +50 Account Update No edit summary
- 17:3917:39, 14 September 2026 diff hist +107 Account Update No edit summary
- 17:3717:37, 14 September 2026 diff hist +33 Account Update No edit summary
- 17:3617:36, 14 September 2026 diff hist +326 Account Update No edit summary Tag: Visual edit: Switched
27 February 2026
- 15:1115:11, 27 February 2026 diff hist −6 How to search and download pulse programs No edit summary current
- 15:1115:11, 27 February 2026 diff hist +7 How to search and download pulse programs No edit summary
- 15:1115:11, 27 February 2026 diff hist −3 Frequently Asked Questions →Data Browser current
- 15:0915:09, 27 February 2026 diff hist +2 Frequently Asked Questions →Data Browser
- 15:0815:08, 27 February 2026 diff hist +8 Frequently Asked Questions →Data Browser
- 15:0715:07, 27 February 2026 diff hist +542 How to search and download pulse programs No edit summary
- 15:0515:05, 27 February 2026 diff hist +334 Search and download pulse programs? No edit summary current
- 14:5814:58, 27 February 2026 diff hist −23 Search and download pulse programs? No edit summary
- 14:5714:57, 27 February 2026 diff hist −6 Search and download pulse programs? No edit summary
- 14:5714:57, 27 February 2026 diff hist +1,654 Search and download pulse programs? No edit summary Tag: Visual edit: Switched
- 14:4914:49, 27 February 2026 diff hist +248 N Search and download pulse programs? Created page with "{{DISPLAYTITLE:How do I search and download pulse programs"?}} {{FAQReturn}} thumb|935x935px|NAN Data Browser: You can sort and filter on Pulse Program name. thumb|765x765px|Dataset window: Supplemental data."
- 14:4814:48, 27 February 2026 diff hist +87 Frequently Asked Questions →Data Browser Tag: Visual edit
7 October 2025
- 20:0520:05, 7 October 2025 diff hist −10 Template:SDK navigation No edit summary current
- 17:4217:42, 7 October 2025 diff hist +19 USNAN Python SDK/Examples No edit summary current
- 17:4117:41, 7 October 2025 diff hist +19 USNAN Python SDK/API Reference No edit summary current
- 17:4117:41, 7 October 2025 diff hist +19 USNAN Python SDK/Getting Started No edit summary current
- 17:4117:41, 7 October 2025 diff hist −892 Template:SDK navigation No edit summary
- 17:3817:38, 7 October 2025 diff hist −10 Template:SDK navigation No edit summary
- 17:3617:36, 7 October 2025 diff hist +1,416 Template:SDK navigation No edit summary
- 17:3417:34, 7 October 2025 diff hist −2 USNAN Python SDK No edit summary current
- 17:3417:34, 7 October 2025 diff hist +21 USNAN Python SDK No edit summary
- 17:3217:32, 7 October 2025 diff hist +777 N Template:SDK navigation Created page with "<!-- Template:USNAN_SDK_Navbox --> {{Navbox | name = USNAN_SDK_Navbox | title = '''USNAN Python SDK''' | state = autocollapse | bodyclass = hlist | above = Main SDK page | group1 = Getting started | list1 = Install & Setup • Examples | group2 = API reference | list2 = Client & Models • Datasets..."
- 17:3117:31, 7 October 2025 diff hist +1,116 N USNAN Python SDK/Examples Created page with "= '''Examples''' = == '''Example 1: Facility Summary''' == <syntaxhighlight lang="python"> import usnan client = usnan.USNANClient() for fac in client.facilities.list(): print(f"Facility: {fac.long_name}") for spec in fac.spectrometers: print(f" - {spec.name} ({spec.field_strength_mhz} MHz)") </syntaxhighlight> == '''Example 2: Search for 2D KnowledgeBase Datasets''' == <syntaxhighlight lang="python"> search = ( usnan.models.SearchConfig(records=2..."
- 17:3017:30, 7 October 2025 diff hist +1,670 N USNAN Python SDK/API Reference Created page with "= '''API Reference''' = This section summarizes the main classes and methods exposed by the SDK. == '''usnan.USNANClient''' == The central interface to the API. '''Constructor:''' <syntaxhighlight lang="python"> client = usnan.USNANClient(base_url=None, timeout=30, num_retries=3) </syntaxhighlight> '''Attributes:''' * '''datasets''' – interface for dataset retrieval and search * '''facilities''' – interface for facility data * '''spectrometers''' – interface fo..."
- 17:2817:28, 7 October 2025 diff hist +1,657 N USNAN Python SDK/Getting Started Created page with "= '''Getting Started with the USNAN Python SDK''' = == '''Creating a Client''' == The core entry point is the '''USNANClient''' class. <syntaxhighlight lang="python"> import usnan client = usnan.USNANClient() </syntaxhighlight> By default, it connects to the public API at: <syntaxhighlight> https://dev.api.nmrhub.org </syntaxhighlight> Optional parameters: * '''base_url''' – override the API endpoint * '''timeout''' – request timeout in seconds * '''num_retries''..."
- 17:2617:26, 7 October 2025 diff hist −6 USNAN Python SDK No edit summary
- 17:2217:22, 7 October 2025 diff hist +2,205 N USNAN Python SDK Created page with "= '''USNAN Python SDK''' = The '''USNAN Python SDK''' provides programmatic access to data and metadata from the USNAN Network API. It enables researchers to discover, query, and download datasets, as well as navigate between related entities such as facilities, spectrometers, probes, and knowledgebase resources. This SDK complements the USNAN Data Browser and other web tools available through the USNAN web portal, offering a scripting interface for automation, rep..."