Skip to content

Instantly share code, notes, and snippets.

View manabreak's full-sized avatar

Harri Pellikka manabreak

  • Oulu, Finland
View GitHub Profile
@manabreak
manabreak / x.csv
Created November 6, 2016 11:13
Neural CLI stuff
foo bar
1 1
1 2
1 3
1 4
1 5
2 1
2 2
2 3
2 4
@manabreak
manabreak / JSON
Last active November 11, 2016 15:44
"mesh": {
"attributes": [
"a_position",
"a_texCoord0",
"a_normal",
"a_binormal",
"a_tangent"
],
"indices": [ 0, 1, 2, 2, 3, 0 ],
"vertices": [ 0, 0, 0,
@manabreak
manabreak / TestActivity.java
Created December 22, 2016 11:34
A simple example of using checkboxes in recyclerview
public class TestActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test_activity);
RecyclerView recycler = (RecyclerView) findViewById(R.id.recycler);
recycler.setLayoutManager(new LinearLayoutManager(this));