This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"strconv"; | |
"reflect" | |
) | |
func intToSlice(num int) ([]int) { | |
str := strconv.Itoa(num) | |
var nums []int |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var x = 0; | |
var active = true; | |
var prev = JSON.stringify(GM.grid.cells); | |
function moved() { | |
if (prev == JSON.stringify(GM.grid.cells)) { | |
prev = JSON.stringify(GM.grid.cells); | |
return false | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window=new(ui.Window,"Hover Dialog",ui.Layout.Vertical) | |
window.ChildAnchors=ui.Anchors.Fill | |
hovering = false | |
target_alt = 0 | |
target_vs = 0 | |
old_throttle = ship.throttle | |
window.Add(new(ui.Button,"Start Hover",function() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Pipe Organ Database Stoplist Scraper | |
license = ''' | |
Copyright 2021 Joshua Sobel | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software | |
and associated documentation files (the "Software"), to deal in the Software without restriction, | |
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, |
OlderNewer