Skip to content

Instantly share code, notes, and snippets.

View vytis's full-sized avatar
🗿
〰️〰️

Vytis vytis

🗿
〰️〰️
View GitHub Profile
{
"6.4.4-xcode11": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.4-Xcode-11.3.1/Carthage.framework.zip",
"6.4.7-xcode11.4.1": "https://github.com/usabilla/usabilla-u4a-ios-swift-sdk/releases/download/v6.4.7-Xcode-11.4.1/Carthage.framework.zip",
}
rdar://40812552 Parallel testing: total test time displayed is wrong
rdar://40868476 Parallel testing: Only 2 simulators launched on MacBook Pro
rdar://40869112 XCTest: add ability to test for memory leaks
rdar://40612247 visible property on XCUIElement
rdar://40644674 XCUIElement should provide away to clear text input
rdar://40953235 XCTest: add way to disable/ignore/close system alerts
rdar://40645876 Elements in a UIImagePickerController report relative coordinates
rdar://40871141 XCTest: Add ability to simulate external keyboard
rdar://40870443 XCTest: Add API for accessing parent and siblings
rdar://40870527 XCTest: Add ability to use URL schemes
@vytis
vytis / xss.js
Created February 16, 2018 13:22
alert();
### Keybase proof
I hereby claim:
* I am vytis on github.
* I am vytis (https://keybase.io/vytis) on keybase.
* I have a public key whose fingerprint is 3D7E F864 B06B A87C 14FF 7DEA 483C 60DC 2924 9F4F
To claim this, I am signing this object:
@vytis
vytis / list_crashes.py
Created August 24, 2012 07:04
Creates a bar chart of number Xcode and ibtoold crashes in the last month
#!/usr/bin/env python
# Using https://developers.google.com/chart/image/docs/chart_params
import os
import datetime
import calendar
path = os.path.expanduser("~/Library/Logs/DiagnosticReports")
files = os.listdir(path)
prefixes = ["Xcode", "ibtoold"]
colors = ["16537E", "6D9ED9"]
@vytis
vytis / check_dns.py
Created June 2, 2011 20:40
Checking all available domain names
#!/usr/bin/env python
import itertools
import string
import time
import subprocess
import socket
import sys
import os
import optparse