This file contains 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
#!/bin/bash | |
echo "alias quit='rm -rf ~/.sfdx'" >> ~/.bash_profile; | |
source ~/.bash_profile; | |
quit; | |
clear; |
This file contains 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
<!-- | |
Modified and derived from | |
<http://www.html5rocks.com/en/tutorials/file/dndfiles/#toc-selecting-files-dnd> | |
<http://bl.ocks.org/mbostock/4063663> | |
Uses $.contextMenu jQuery plug-in from <https://github.com/medialize/jQuery-contextMenu> | |
It's dual licensed so we are choosing its MIT License option. | |
Code by the Illinois VLSI CAD teaching staff. | |
Released under the University of Illinois/NCSA Open Source License |
This file contains 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
<!-- | |
Code by the Illinois VLSI CAD teaching staff. | |
Released under the University of Illinois/NCSA Open Source License | |
--> | |
<div class="alert alert-info"> | |
<p> | |
Fill in the matrix A and the vector b and click "Solve!". | |
</p> | |
</div> |
This file contains 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
<!-- | |
Modified and derived from | |
<http://www.html5rocks.com/en/tutorials/file/dndfiles/#toc-selecting-files-dnd> | |
<http://bl.ocks.org/mbostock/4063663> | |
Code by the Illinois VLSI CAD teaching staff. | |
Released under the University of Illinois/NCSA Open Source License | |
--> | |
<html xmlns="http://www.w3.org/1999/xhtml"> |
This file contains 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
<configuration> | |
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
<encoder> | |
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %ms |
This file contains 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 groovy.util.logging.Slf4j | |
@Slf4j | |
class MyExample { | |
This file contains 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
apply plugin: 'groovy' | |
repositories { | |
mavenCentral() | |
// For newer/beta versions of Groovy |
This file contains 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
# .tmux.conf file inspired from Pragmatic Tmux | |
# http://pragprog.com/book/bhtmux/tmux | |
# Default to zsh with support for Mac OS X clipboard | |
set -g default-command "reattach-to-user-namespace -l /bin/zsh" | |
# https://wiki.archlinux.org/index.php/Tmux | |
# Set more scrollback history | |
# START:scrollback | |
set -g history-limit 10000 |
This file contains 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 edu.illinois.vlsicad.tests | |
import edu.illinois.vlsicad.core.FileFormatChecker | |
import edu.illinois.vlsicad.core.URPException | |
class FileFormatCheckerTest extends GroovyTestCase { | |
void testValidFile() { | |
// Should not have any exceptions thrown | |
FileFormatChecker checker = new FileFormatChecker(file: new File("test3.cubes")) | |
checker.checkFileFormat() |
This file contains 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
PROGRAM SUBDEM | |
REAL A,B,C,SUM,SUMSQ | |
CALL INPUT( + A,B,C) | |
CALL CALC(A,B,C,SUM,SUMSQ) | |
CALL OUTPUT(SUM,SUMSQ) | |
END |
NewerOlder