Skip to content

Instantly share code, notes, and snippets.

@kennedy93
kennedy93 / BaseActivity.java
Created April 10, 2018 07:38 — forked from kevinvanmierlo/BaseActivity.java
Same Navigation Drawer on different Activities
public class BaseActivity extends AppCompatActivity
{
public DrawerLayout drawerLayout;
public ListView drawerList;
private ActionBarDrawerToggle drawerToggle;
protected void onCreate(Bundle savedInstanceState)
{
// R.id.drawer_layout should be in every activity with exactly the same id.
drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
@kennedy93
kennedy93 / frontendDevlopmentBookmarks.md
Created April 30, 2016 16:36 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@kennedy93
kennedy93 / ci-bootstrap-pagination-config.php
Created March 28, 2016 05:12 — forked from edomaru/ci-bootstrap-pagination-config.php
Codeigniter Pagination config to apply bootstrap style
<?php
$config["full_tag_open"] = '<ul class="pagination">';
$config["full_tag_close"] = '</ul>';
$config["first_link"] = "&laquo;";
$config["first_tag_open"] = "<li>";
$config["first_tag_close"] = "</li>";
$config["last_link"] = "&raquo;";
$config["last_tag_open"] = "<li>";