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
@Grab(group = "org.twitter4j", module = "twitter4j-core", version = "4.0.2") | |
import twitter4j.* | |
Twitter twitter = new TwitterFactory().instance | |
def user = twitter.verifyCredentials() | |
println "Nb followers de ${user.name} (alias ${user.screenName}) : ${user.followersCount}" | |
long cursor = -1 | |
def followers = twitter.getFollowersList(user.screenName, cursor, 200) | |
followers.each {println "${it.screenName} - ${it.name}"} |
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
#!/bin/sh | |
xrandr --newmode "1280x720_60.00" 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync | |
xrandr --addmode VGA1 1280x720_60.00 | |
xrandr --addmode LVDS1 1280x720_60.00 | |
xrandr | |
xrandr --output VIRTUAL1 --off --output LVDS1 --mode 1280x720_60.00 --pos 0x0 --rotate normal --output VGA1 --mode 1280x720_60.00 --pos 0x0 --rotate normal |
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
Dell Latitude E6520 | |
Intel® Core™ i7-2720QM CPU @ 2.20GHz × 8 | |
8Go DDR3 | |
************************************************************** | |
java version "1.7.0_13" | |
Java(TM) SE Runtime Environment (build 1.7.0_13-b20) | |
Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode) |