Skip to content

Instantly share code, notes, and snippets.

Avatar
🤬
GitHub, cancel your contract with ICE!

Boris Bügling neonichu

🤬
GitHub, cancel your contract with ICE!
View GitHub Profile
View demo.json
{
"formatVersion": "1.0",
"generatedAt": "2021-05-20T23:27:39Z",
"generatedBy": {
"name": "Boris Buegling"
},
"keywords": [
"cs-307"
],
"name": "CS 307",
View collection.json
{
"formatVersion": "1.0",
"generatedAt": "2021-05-13T04:40:48Z",
"generatedBy": {
"name": "Boris Buegling"
},
"keywords": [
"wwdc21"
],
"name": "WWDC21 Demo Collection",
View collection-signed.json
{
"formatVersion": "1.0",
"generatedAt": "2021-05-13T04:40:48Z",
"generatedBy": {
"name": "Boris Buegling"
},
"keywords": [
"wwdc21"
],
"name": "WWDC21 Demo Collection",
View test.json
{
"formatVersion": "1.0",
"generatedAt": "2021-05-07T21:54:12Z",
"generatedBy": {
"name": "John Appleseed"
},
"keywords": [
"best"
],
"name": "Test Package Collection",
View package-index-collection.json
This file has been truncated, but you can view the full file.
{"formatVersion":"1.0","generatedAt":"2021-03-26T01:00:10Z","generatedBy":{"name":"Jane Doe"},"keywords":["swift packages"],"name":"Test Package Collection","overview":"A test package collection","packages":[{"url":"https://github.com/0111b/Conf.git","versions":[{"defaultToolsVersion":"5.1.0","manifests":{"5.1.0":{"packageName":"Conf","products":[{"name":"Conf","targets":["Conf"],"type":{"library":["automatic"]}}],"targets":[{"moduleName":"Conf","name":"Conf"}],"toolsVersion":"5.1.0"}},"summary":"","version":"0.0.4"},{"defaultToolsVersion":"5.2.0","manifests":{"5.2.0":{"packageName":"Conf","products":[{"name":"Conf","targets":["Conf"],"type":{"library":["automatic"]}}],"targets":[{"moduleName":"Conf","name":"Conf"}],"toolsVersion":"5.2.0"}},"summary":"","version":"0.0.3"},{"defaultToolsVersion":"5.2.0","manifests":{"5.2.0":{"packageName":"Conf","products":[{"name":"Conf","targets":["Conf"],"type":{"library":["automatic"]}}],"targets":[{"moduleName":"Conf","name":"Conf"}],"toolsVersion":"5.2.0"}},"summary":"",
View nft.json
{
"url": "https://pbs.twimg.com/media/ExXVVWVUYAQFp1R?format=jpg&name=900x900",
"owner": {
"name": "Sam Soffes",
"twitter": "https://twitter.com/soffes"
}
}
View apple.json
{"formatVersion":"1.0","generatedAt":"2021-02-13T00:21:41Z","name":"Apple Swift Packages","overview":"Swift packages published by Apple","packages":[{"readmeURL":"https://github.com/apple/swift-argument-parser#readme","summary":"Straightforward, type-safe argument parsing for Swift","url":"https://github.com/apple/swift-argument-parser.git","versions":[{"defaultToolsVersion":"5.2.0","manifests":{"5.2.0":{"packageName":"swift-argument-parser","products":[{"name":"ArgumentParser","targets":["ArgumentParser"],"type":{"library":["automatic"]}}],"targets":[{"moduleName":"ArgumentParser","name":"ArgumentParser"}],"toolsVersion":"5.2.0"}},"summary":"Update changelog for 0.3.1 release (#237)","version":"0.3.1"},{"defaultToolsVersion":"5.2.0","manifests":{"5.2.0":{"packageName":"swift-argument-parser","products":[{"name":"ArgumentParser","targets":["ArgumentParser"],"type":{"library":["automatic"]}}],"targets":[{"moduleName":"ArgumentParser","name":"ArgumentParser"}],"toolsVersion":"5.2.0"}},"summary":"Update changelo
@neonichu
neonichu / handover.md
Last active September 27, 2016 15:05
View handover.md

Project Handover

Here are a few of my OSS projects that are still looking for new maintainers. DM me via Twitter if you want to take any of them over (@NeoNacho). If you take over a project, please follow these rules:

  • Do not claim to be the original author, so the license should retain my name, but feel free to add yourself to it once you have made any substantial contributions. If the current README mentions my name or Twitter handle, keep that information intact if you make edits, but you can move it around as you see fit.
  • If at any point in the future, you want to stop maintaining the project and you cannot find anyone to take it over, please add an unmainted badge (see here) to the README and transfer the project back to my GitHub account (@neonichu). That will allow me to find a new maintainer myself or to at least keep the project available for historical purposes.
  • My GitHub account ([@neonichu](https://
@neonichu
neonichu / radars.py
Created June 27, 2016 22:56
Extract open radar numbers from radar web HTML
View radars.py
#!/usr/bin/env python
from BeautifulSoup import BeautifulSoup as soup
s = soup(file('radars.html'))
for span in s('span'):
if span.has_key('class') and span['class'].startswith('quickViewProblemId'):
print(span.text)