Posted by 밤치
Posted by 밤치
Posted by 밤치

Posted by 밤치

화웨이라는 회사에서 3G신호를 WiFi로 뿌려주는 장치를 선보인다고 한다. 최고 5.8Mbps의 업로드 속도와 7.2Mbps의 다운속도를 지원한다고 하며, 무게는 80g이다. 사용시간은 연속 5시간이며, 최대 5인까지 동시 접속 가능하다.
LG오즈 또는 무제한데이터요금제를 사용하고 있다면 Wibro신호를 WiFi로 변환해주는 KT의 Egg보다 훨씬 실용적이지 않을까 싶다.
아래 사진은 Egg
Posted by 밤치

Posted by 밤치
<table align="center" width="500" border="1" cellspacing="0" cellpadding="0">
<tr>
<td>
<div style="position: relative;">
<div style="position:absolute; left: 100px; top: 100px; width:300px; height:300px; background-color:#ccc;">
내용
</div>
</div>
<br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</td>
</tr>
</table>
Posted by 밤치




Posted by 밤치
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Window;
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;
import java.awt.geom.RoundRectangle2D;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JFrame;
import javax.swing.JProgressBar;
import javax.swing.JRadioButton;
import javax.swing.SwingUtilities;
public class ShapedWindow extends JFrame implements ComponentListener {
private static final long serialVersionUID = 1L;
private static RoundRectangle2D.Double shape;
private static Window w;
public ShapedWindow() {
super("Test oval-shaped window");
this.setLayout(new FlowLayout());
this.add(new JButton("test"));
this.add(new JCheckBox("test"));
this.add(new JRadioButton("test"));
this.add(new JProgressBar(0, 100));
this.setSize(new Dimension(400, 300));
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.addComponentListener(this);
}
public static void main(String[] args) {
JFrame.setDefaultLookAndFeelDecorated(true);
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
w = new ShapedWindow();
w.setVisible(true);
shape = new RoundRectangle2D.Double(0, 0, w.getWidth(), w.getHeight(), 20, 20);
com.sun.awt.AWTUtilities.setWindowShape(w, shape);
}
});
}
@Override
public void componentResized(ComponentEvent e) {
shape.width = w.getWidth();
shape.height = w.getHeight();
com.sun.awt.AWTUtilities.setWindowShape(w, shape);
}
@Override
public void componentHidden(ComponentEvent e) {
}
@Override
public void componentMoved(ComponentEvent e) {
}
@Override
public void componentShown(ComponentEvent e) {
}
}

Posted by 밤치
- 밤치
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |