- Post-factum CI
- Error(s) already in code base
- Difficult to rollback changes
- Manual merge
- Cumbersome
- Difficult
- Error-prone
| import javax.swing.*; | |
| import java.awt.*; | |
| public class Form01 extends JFrame { | |
| private final static Color SKYDARK =new Color(128,200,255); | |
| private Form01() { | |
| initComponents(); | |
| } |
| for (i=0;i<60;i++){ | |
| var test; | |
| test = "CODE:"; | |
| test +="TAG POS=1 TYPE=DIV ATTR=TXT:Withdraw" + "\n"; | |
| var w1 = ("name") | |
| var w2 = ("name") | |
| var itemname = content.document.getElementsByClassName("item-name")[i].innerHTML | |
| if (w1 != itemname) | |
| {iimDisplay("aaaa!" + i)} | |
| else{content.document.getElementsByClassName("item-name")[i].click() |
Community
Cheatsheets
Books
| /** | |
| * Causes <i>doRun.run()</i> to be executed asynchronously on the | |
| * AWT event dispatching thread. This will happen after all | |
| * pending AWT events have been processed. This method should | |
| * be used when an application thread needs to update the GUI. | |
| * In the following example the <code>invokeLater</code> call queues | |
| * the <code>Runnable</code> object <code>doHelloWorld</code> | |
| * on the event dispatching thread and | |
| * then prints a message. | |
| * <pre> |
| docker stop $(docker ps -a -q) | |
| docker rm $(docker ps -a -q) |
| package trash; | |
| import javax.swing.*; | |
| import java.awt.*; | |
| public class JSliderDemo { | |
| private JFrame frame = new JFrame("Slider"); | |
| private JSlider slider = new JSlider(1, 50, 1); | |
| public JSliderDemo() { |
| class A | |
| def to_s | |
| "class a" | |
| end | |
| end | |
| class B | |
| def B.new() | |
| A.new() | |
| end |