- 3D-model files suitable for viewing with free software
- Rendered JPEG pictures of:
- Overall design view
- Crosssections with the board placed inside
- Crossections of three stacked cradles
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
2018/01/17 13:18:29 [INFO] Terraform version: 0.11.2 a6008b8a48a749c7c167453b9cf55ffd572b9a5d | |
2018/01/17 13:18:29 [INFO] Go runtime version: go1.9.1 | |
2018/01/17 13:18:29 [INFO] CLI args: []string{"/usr/local/bin/terraform", "apply", "-auto-approve=true"} | |
2018/01/17 13:18:29 [DEBUG] Attempting to open CLI config file: /Users/romsav01/.terraformrc | |
2018/01/17 13:18:29 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/01/17 13:18:29 [INFO] CLI command args: []string{"apply", "-auto-approve=true"} | |
2018/01/17 13:18:29 [INFO] command: empty terraform config, returning nil | |
2018/01/17 13:18:29 [DEBUG] command: no data state file found for backend config | |
2018/01/17 13:18:29 [DEBUG] New state was assigned lineage "e7e1aa7d-efe9-452c-af4b-da1b49f9dea4" | |
2018/01/17 13:18:29 [INFO] command: backend initialized: <nil> |
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
#!sh | |
dockerfile() { | |
cat <<EOF | |
FROM debian:8 | |
RUN echo 123 >/a && printf abc >/b | |
RUN echo 456 >/a && echo def >>/b | |
EOF | |
} |
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
subj |
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
class A { | |
A() { | |
func() | |
} | |
void func() { | |
} | |
} | |
void func() { | |
def t = false |
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
/** | |
* Created by romasave on 11/17/15. | |
*/ | |
class Main { | |
static abstract class Inner { | |
abstract int findA() | |
int doSomething() { | |
findA() | |
} |
The Eclipse plug-in did not really work for me and the IDE kept crashing. Instead I have resorted to installing stanadalone executable:
- Download the code generator
- Unzip it somewhere
java -jar SetupSTM32CubeMX-4.10.0.exe -console
- Answer every clumsy query
- If installed under default path, launch it as:
java -jar /usr/local/STMicroelectronics/STM32Cube/STM32CubeMX/STM32CubeMX.exe
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 ( | |
"io" | |
"log" | |
"net/rpc" | |
) | |
type pipePair struct { | |
reader *io.PipeReader |
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
private static String EXAMPLE_PARAMETER_NAMES = "abcdefghijklmnopqrstuvwxyz"; | |
private void dumpMethods(Class<?> cl) | |
{ | |
System.out.println("// Methods from " + cl.getCanonicalName()); | |
Method[] methods = cl.getMethods(); | |
for (int i = 0; i < methods.length; i++ ) | |
{ | |
Method m = methods[i]; | |
if (Modifier.isPublic(m.getModifiers()) || Modifier.isProtected(m.getModifiers())) | |
{ |