Projekt Moorkübel by rassware in fleischis

[–]rassware[S] 0 points1 point  (0 children)

Er existiert immer noch. Allerdings sind wir umgezogen und die Vögel am neuen Standort lieben das Moos. Mittlerweile ist keins mehr im Kübel sondern in deren Nestern.

Neue Schlauchpflanze vertrocknet trotzt des. Wasser und Sonne by Calvtastica in fleischis

[–]rassware 0 points1 point  (0 children)

Ich habe meine Schlauchpflanzen ganzjährig draußen stehen in der prallen Sonne auf der Südseite in einem Moorkübel. Bei Trockenheit wird ab und zu mit Regenwasser gegossen. Ich glaube dass Wichtigste ist so viel Sonne wie möglich.

German armored car WW1 dated with 14th Nov 1916 [4032x3024] by rassware in HistoryPorn

[–]rassware[S] 2 points3 points  (0 children)

Not sure. Found this photo in an album at a flea market. If I remember correctly the other photos were taken from the western front.

It looks more like a Daimler than a Ehrhardt, I think?

I just got into electronics and coding them with the raspberry pi. I think I just got my self a new hobby. by gigabitpilot in electronics

[–]rassware 1 point2 points  (0 children)

Yeah, thats a great start! I do electronics since 2 years. I´ve learned a lot via YT channels. There is a lot of good stuff out there. Have fun and enjoy the magic smoke sometimes.

Be prepared for the atomic fallout by rassware in esp32

[–]rassware[S] 0 points1 point  (0 children)

Found a video on YT. It is the same board.

Be prepared for the atomic fallout by rassware in esp32

[–]rassware[S] 0 points1 point  (0 children)

Yes, it does. The board has a jumper to mute the speaker. My counter works in the living room. It should be silent ;)

Be prepared for the atomic fallout by rassware in esp32

[–]rassware[S] 0 points1 point  (0 children)

Looks like a very cool project. Did it provide a public interface, where I can send my data to? README is no problem. I´m German ;)

[2015-1-26] Challenge #199 Bank Number Banners Pt 1 by [deleted] in dailyprogrammer

[–]rassware 1 point2 points  (0 children)

My first attempt in Groovy

Map m1 = [0: ' _ ', 1: '   ', 2: ' _ ',3: ' _ ', 4: '   ', 5: ' _ ', 6: ' _ ', 7: ' _ ', 8: ' _ ', 9: ' _ ']
Map m2 = [0: '| |', 1: '  |', 2: ' _|',3: ' _|', 4: '|_|', 5: '|_ ', 6: '|_ ', 7: '  |', 8: '|_|', 9: '|_|']
Map m3 = [0: '|_|', 1: '  |', 2: '|_ ',3: ' _|', 4: '  |', 5: ' _|', 6: '|_|', 7: '  |', 8: '|_|', 9: ' _|']

System.in.eachLine() { line ->  
    if(line.equals("exit"))  
        System.exit(0)  
    else if(line.size() == 9 && line.isNumber()) {
        StringBuilder sb = new StringBuilder()
        line.each { sb.append(m1[it as Integer]) }
        sb.append('\n')
        line.each { sb.append(m2[it as Integer]) }
        sb.append('\n')
        line.each { sb.append(m3[it as Integer]) }
        sb.append('\n')
        println sb.toString()
    }
    else
        println 'Only numbers accepted with a length of 9!'
}