If you're moving files (i.e. a asp.net website) from another computer to a server running Windows 2008 Server (or similarly new version) you'll risk having to unblock all the files one-by-one as they are deemed "not safe". I'm guessing this can be rectified by the network/domain/whatever-admins by defining what parts of the network is considered safe to copy files from.
But if they aren't doing it you can use Streams to recursively unblock an entire directory and it's very easy to use.
Labels
- linux (21)
- script (15)
- css (12)
- bash (9)
- cli (9)
- customize (8)
- stylish (7)
- windows (6)
- firefox (5)
- userchrome.css (5)
- xbmc (5)
- ahk (3)
- autohotkey (3)
- command line (3)
- tt-rss (3)
- ubuntu (3)
- SQL (2)
- automation (2)
- batch (2)
- config (2)
- google reader (2)
- javascript (2)
- mpd (2)
- photos (2)
- spotify (2)
- virtualbox (2)
- API (1)
- GW2 (1)
- Guild Wars 2 (1)
- SQL Server (1)
- android (1)
- animals (1)
- arch linux (1)
- backup (1)
- bukkit (1)
- c# (1)
- cross browser (1)
- curl (1)
- debian (1)
- deluge (1)
- ext.net (1)
- facebook (1)
- flexget (1)
- flowers (1)
- gentoo (1)
- greasemonkey (1)
- kodi (1)
- openbox (1)
- pidgin (1)
- python (1)
- raspberry (1)
- rpi (1)
- scriptish (1)
- tasker (1)
- tellstick (1)
- tmux (1)
- update (1)
- video (1)
- youtube (1)
Wednesday, February 22, 2012
Monday, February 20, 2012
tmux - Resize pane to specific width and height
Quick post on how to resize a tmux-pane to a specific width and height.
I'm presuming you only have one session and that you've changed base-index to 1 and your prefix key combo to ctrl+a (ctrl+b is silly).
I'm presuming you only have one session and that you've changed base-index to 1 and your prefix key combo to ctrl+a (ctrl+b is silly).
Sunday, February 19, 2012
CRON - cause I always forget
The cron format.
Every minute
More examples can be found here.
I addition to the above syntax you can use the following, more easily remembered, special words.# .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * [command to be executed]
@yearly, @monthly, @daily, @hourly, @reboot (at startup)These are however not available in every cron daemon.
Every minute
* * * * * /miff/moff/meff.shEvery five minutes
*/5 * * * * /miff/moff/meff.shEvery two minutes the first half hour of every hour
0-30/2 * * * * /miff/moff/meff.sh
More examples can be found here.
Saturday, February 04, 2012
Openbox - Simple application-rule example in rc.xml
Update: Or you could use Obapps (and while you're at it try Obthemes) to set these rules up in a GUI. ;)
In openbox, the only wm you'll ever need (imho(tm)), you can set up rules for application windows. You can define where the window will appear, whether it should be decorated, shades or minimized (iconic). These rules are pretty simple to understand, but examples are always helpful so here goes.
In openbox, the only wm you'll ever need (imho(tm)), you can set up rules for application windows. You can define where the window will appear, whether it should be decorated, shades or minimized (iconic). These rules are pretty simple to understand, but examples are always helpful so here goes.
Subscribe to:
Posts (Atom)