Live data from Hacker News

Let’s Draw Together

multiuser-sketchpad.glitch.me

11–20 of 48 posts

Re: Let’s Draw Together

#15
post #14

Whats wrong with swastica? It's a holy symbol.

On the off chance that you don't know, what's wrong with is that it is (or is very close to or easily mistaken for, depending on the style chosen) a symbol of Nazism. https://en.wikipedia.org/wiki/Swastika#Use_in_Nazism

From wikipedia:

>The word swastika comes from Sanskrit: स्वस्तिक, romanized: svástika, meaning 'conducive to well being' or 'auspicious'.

Re: Let’s Draw Together

#17
post #14

Whats wrong with swastica? It's a holy symbol.

On the off chance that you don't know, what's wrong with is that it is (or is very close to or easily mistaken for, depending on the style chosen) a symbol of Nazism. https://en.wikipedia.org/wiki/Swastika#Use_in_Nazism

I tried reporting content labelled as "nazi flag" in an iOS app to no avail. I submitted multiple tickets in different places, sent multiple emails to Apple and to the application developer.

Yet nazi flags are still present on the home page of Divoom application. Also present in this ages 4+ rated application are plenty of drug symbols and other assorted strangeness.

I spent way too much time with this and am amazed just how non-responsive Apple has been.

Re: Let’s Draw Together

#18
#!/usr/bin/env zsh

dir=0

up() { xdotool mouseup 1 }

down() { xdotool mousedown 1 }

right() { dir=$(expr $dir + $1) }

left() { dir=$(expr $dir - $1) }

walk() { for i in {1..$1}; do xdotool mousemove_relative --sync --polar $dir 1 done }

square() { down for i in {1..4}; do walk 20 right 90 done up }

block () { down for i in {1..10}; do walk 200 right 90 walk 1 right 90 walk 200 left 90 walk 1 left 90 done up }

circle () {

}

block

# go crazy

Post reply on HN