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
<div className="absolute top-0 left-0 w-full text-left p-2 text-xs"> | |
<div className="sm:hidden"><sm</div> | |
<div className="hidden sm:block md:hidden lg:hidden xl:hidden 2xl:hidden">sm</div> | |
<div className="hidden md:block lg:hidden xl:hidden 2xl:hidden">md</div> | |
<div className="hidden lg:block xl:hidden 2xl:hidden">lg</div> | |
<div className="hidden xl:block 2xl:hidden">xl</div> | |
<div className="hidden 2xl:block">2xl</div> | |
</div> |
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
import java.util.*; | |
import java.lang.*; | |
public class TwitterApp{ | |
private List<String> storedTweets = new ArrayList(); | |
private dinosaur TRex; | |
public class dinosaur{ | |
} |
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
u]<C0wDik5hxk!e1t#65NPV]TGrB<iws |
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
import org.junit.Test; | |
import org.junit.runner.Computer; | |
import org.junit.runner.JUnitCore; | |
import org.junit.runner.RunWith; | |
import org.junit.runners.Suite; | |
public class MemoryLeakNotPresentInJUnit { | |
@RunWith(Suite.class) | |
@Suite.SuiteClasses({ MyTestClassWithGlobalReferenceCounter.class }) |
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
public class MyJavaGenerator extends JavaGenerator { | |
private TableDefinition table; | |
@Override | |
protected void generateRecord(TableDefinition table, JavaWriter out) { | |
this.table = table; | |
super.generateRecord(table, out); | |
} | |
@Override |
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
<?php | |
class ClassRoomAdmin extends ModelAdmin { | |
static $managed_models = array('ClassRoom'); | |
static $menu_title = 'ClassRoomAdmin'; | |
static $url_segment = 'classroom-admin'; | |
} |