Skip to content

Instantly share code, notes, and snippets.

View MeowFack's full-sized avatar
:octocat:
Working from home

Viktoria Novikova MeowFack

:octocat:
Working from home
  • Audioform
  • Moscow, Russia
View GitHub Profile
@francisfeng
francisfeng / save-tabs-safari-anybox.applescript
Last active January 17, 2025 12:44
Save all tabs of Safari’s current window to Anybox
tell application "Safari"
repeat with tabItem in tabs of window 1
set link to URL of tabItem
tell application id "cc.anybox.Anybox"
save link
end tell
end repeat
end tell
@LarsWerkman
LarsWerkman / Main.java
Created February 11, 2013 13:53
A sample application which shows what the HoloColorPicker library can do.
public class Main extends Activity implements OnColorChangedListener {
private ColorPicker picker;
private SVBar svBar;
private OpacityBar opacityBar;
private Button button;
private TextView text;
@Override
protected void onCreate(Bundle savedInstanceState) {