Search found 360 matches

by Marcus
2024.08.22 00:45
Forum: Silly
Topic: Best of Scientific Shitposting
Replies: 2
Views: 2638

Re: Best of Scientific Shitposting

when-you-die.jpg
when-you-die.jpg (194.82 KiB) Viewed 2637 times
But it's okay, because after 225-250 million years, the milky way completes a full rotation and... Oh, scratch that, the milky way is also moving through space. Oh well.
by Marcus
2024.08.22 00:43
Forum: Silly
Topic: Best of Scientific Shitposting
Replies: 2
Views: 2638

Re: Best of Scientific Shitposting

shrodinger-dickens.jpg
shrodinger-dickens.jpg (21.3 KiB) Viewed 2637 times
by Marcus
2024.08.22 00:38
Forum: Silly
Topic: Best of Scientific Shitposting
Replies: 2
Views: 2638

Best of Scientific Shitposting

samesize.jpg
samesize.jpg (58.87 KiB) Viewed 2638 times
by Marcus
2024.08.11 00:49
Forum: 3D Printing
Topic: My designs
Replies: 0
Views: 2419

My designs

by Marcus
2024.08.11 00:47
Forum: 3D Printing
Topic: Fusion 360
Replies: 0
Views: 1094

Fusion 360

Fusion 360 has a free hobbyist tier. The only annoying thing is that you can only have 10 designs active at any time, but you can always disable (without deleting) old designs that you aren't working on.
by Marcus
2016.08.16 13:15
Forum: Java
Topic: Off topic - nice Windows stuff
Replies: 0
Views: 4222

Off topic - nice Windows stuff

To generate file hashes on Windows:

CertUtil -hashfile <filename> [<algo>]

For example:
CertUtil -hashfile C:\myFile.txt MD5

Default when not specifying a hash algorithm is SHA1.
by Marcus
2015.03.01 01:06
Forum: Java
Topic: Good things to consider when using Java with your RPi.
Replies: 2
Views: 3808

Re: Good things to consider when using Java with your RPi.

P4 on the PI:

Download ARMHF version. chmod +x. Copy to /usr/local/bin. Create .p4config with all settings. export P4CONFIG=/home/pi/.p4config in .bashrc.
by Marcus
2015.03.01 00:01
Forum: Java
Topic: Good things to consider when using Java with your RPi.
Replies: 2
Views: 3808

Re: Good things to consider when using Java with your RPi.

Or interactively:
sudo update-alternatives --config java
sudo update-alternatives --config javac
by Marcus
2013.12.30 23:31
Forum: Java
Topic: Good things to consider when using Java with your RPi.
Replies: 2
Views: 3808

Good things to consider when using Java with your RPi.

Install Oracle's JDK. I usually do this via synaptic. Next don't forget to switch to the Oracle JDK: sudo update-java-alternatives -s jdk-7-oracle-armhf Next install Pi4J. If on Raspbian, follow the Raspbian instructions: http://pi4j.com/install.html For Dallas 1-wire support and i2c you probably wa...
by Marcus
2013.01.14 20:39
Forum: Music
Topic: DPC latency checker
Replies: 0
Views: 6003

DPC latency checker

Got to try this tool next time I suspect DPC issues:
http://www.thesycon.de/dpclat/dpclat.pdf
by Marcus
2012.03.15 21:39
Forum: Java
Topic: Off topic - nice linux stuff
Replies: 1
Views: 4338

Re: Off topic - nice linux stuff

How to clean up your GRUB: 1. Remove old linux kernels (save the two or three latest): 1a. List the ones you have: ls /boot/vmlinuz* 1b. sudo apt-get remove linux-image-<version>-generic, e.g. sudo apt-get remove linux-image-2.6.32-36-generic 1c. (Can also reinstall an old one with apt-get install ....
by Marcus
2011.12.18 22:57
Forum: Java
Topic: Off topic - nice dos stuff
Replies: 2
Views: 4802

Re: Off topic - nice dos stuff

Windows 7, taking ownership:
takeown /f <folder> /r
icacls <folder> /grant <user>:f /t

For example:
takeown /f "Program Files" /r
icacls "Program Files" /grant Marcus:f /t