I am trying to move _viminfo out of my home folder to make it simpler. So I added this to my _vimrc:
set viminfo+=n~\\AppBackup\\Vim\\_viminfo
However it's useless, Vim still create _viminfo in my home folder. Then I manually input the command above. This time it works fine, so I am sure the command itself is valid. How should I solve this problem for now?
To be more specific, I am using GVim 7.4 on Windows 8.1.
HP DL165G7 with 2x AMD 6134
target RAM: 48GB
options:
2GB dual rank registered DIMM - 24 Qty HP-2GB 2Rx8 PC3-10600R-9 Kit
4Gb single rank registered DIMM - 12 Qty HP-4GB 1Rx4 PC3-10600R-9 Kit
which of theabove is recommended for performance (ESX server)? AMD CPUs suffer any downgrade on mem bandwidth like Xeons?
I love Songbird but I was already whether it's possible add an additional column to the Songbird layout, I love categorising my music by dates as well, and find right clicking abovethe column header to change a little to messy and want even more flexibility.
So here's my mockup of the 4-pane panel library, I think I've made Songbird do this by mistake in the past through a bug. Question is, is this possible?
I'm currently using conventional HDDs like the 5200 rpms, browsing a lot, my folder and files are scattered, torrenting always and I'm not fond of optimization like disabling cache, cleaning temp
Files , etc.
My question is, given theabove conditions (no disable of cache, seeding always in torrent, downloading torrent) is it safe to use SSD? I'm pretty worried about cycles but I read an article wherein it says its safe since it will usually wear out for 10 years given that you always write heavily and continuously. Thanks
Often I have came across URLS like the following:
http://www.isthisahacker.com/{7B643FB915-845C-4A76-A071-677D62157FE07D}.htm
Do the curly braces in the URL above indicate some kind of attempt to access the registry, or is that a legitimate URL? It looks kind of suspicious to me.
Is there an application that allows you to add a virtualized version of your operating system into the mbr?
By virtualized, I mean that if you boot this one, any changes made in it will not be committed to the disk. Just like how deepfreeze, returnil, and shadow user works.
Is it possible to do that?
Because the applications mentioned above requires you to reboot if you want that changes will not be retained.
Apparently the .NET framework has a bug that prevents working set values above 2GB from accurately being determined. Between 2 and 4GB one can apply some xor-ing calculation to obtain the value, but there's no means of obtaining working set values greater than 4GB (using .Net or WMI)
What method can be used - preferably from a PowerShell script - to obtain an accurate measurement of a process' working set when the working set is greater than 4GB?
(some side details can be found in this StackOverflow question)
I'd like to know if there is a way to highlight dates that differs from one another.
I have two columns "Baseline Finish Date" and "Re-forecast Finish Date" and I would like to highlight the dates that for each task, is different in those columns.
Meaning the tasks that suffered a re-forecast due to other circumstances, and does not equal to the original dates.
I also would like a filter that does the same thing as above, showing only this different date tasks.
I have a value in one cell that has four decimal places, in the cell below, I have the metric conversion formula. I want the cell below, with the metric conversion formula to display one less decimal place than the cell above.
For example, if the English measurement is .#### (4 decimal places), I need the conversion cell to display .### (3 decimal places) and if the English measurement is .### (3 decimal places), I need the conversion cell to display .### ( decimal places), and so on.
How can I do this?
I have Virtual Box setup with the following commands:
vboxmanage setextradata myVm "VBoxInternal/Devices/pcnet/0/LUN#0/Config/transfer/HostPort" 50000
vboxmanage setextradata myVm `"VBoxInternal/Devices/pcnet/0/LUN#0/Config/transfer/GuestPort" 50000
vboxmanage setextradata myVm "VBoxInternal/Devices/pcnet/0/LUN#0/Config/transfer/Protocol" TCP
On the host machine, the following command times out:
telnet localhost 50000
What am I doing wrong? Theabove command does work on the guest machine.
I am trying to write a bash script that will rsync only a specific subset of folders. I am trying to figure out a more slick so that I can just add a variables such as FOLDER1='name of folder in home directory' and then
rsync -arvz --delete /home/emka/$FOLDER1/ /home/emka/Desktop/Mount/$FOLDER1
Currently I have FOLDER1 through FOLDER13, but I do not want to have theabove line thirteen times.
Could someone give me a push on how to do this?
I recently moved from Apache Mod_wsgi to Nginx, and I have seen a major improvement on speed a lowering on memory usage and I am generally very happy with the it.
I am not a server expert, so please be gentle.
I am wondering if there are any small configuration that I might have missed, that will cause me some issues in the long run...
Please see my nginx.conf file
user nginx nginx;
worker_processes 4;
error_log /var/log/nginx/error_log info;
events {
worker_connections 1024;
use epoll;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main
'$remote_addr - $remote_user [$time_local] '
'"$request" $status $bytes_sent '
'"$http_referer" "$http_user_agent" '
'"$gzip_ratio"';
client_header_timeout 10m;
client_body_timeout 10m;
send_timeout 10m;
connection_pool_size 256;
client_header_buffer_size 1k;
large_client_header_buffers 4 2k;
request_pool_size 4k;
gzip on;
gzip_min_length 1100;
gzip_buffers 4 8k;
gzip_types text/plain;
output_buffers 1 32k;
postpone_output 1460;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 75 20;
ignore_invalid_headers on;
index index.html;
server {
listen 80;
server_name localhost;
location /media/ {
root /www/django_test1/myapp; # Notice this is the /media folder that we create above
}
location /mediaadmin/ {
alias /opt/python2.6/lib/python2.6/site-packages/django/contrib/admin/media/; # Notice this is the /media folder that we create above
}
location / {
# host and port to fastcgi server
fastcgi_pass 127.0.0.1:8080;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_pass_header Authorization;
fastcgi_intercept_errors off;
client_max_body_size 100M;
}
access_log /var/log/nginx/localhost.access_log main;
error_log /var/log/nginx/localhost.error_log;
}
}
Mini USB Bluetooth Dongle Adapter - Windows XP, Windows Vista, Windows 7 (32-Bit + 64-Bit), Windows 8 (32-Bit + 64-Bit) - Supports Bluetooth v2.0 and v1.2 - 3Mbps
Have just purchased theabove and having trouble installing onto my laptop, it is asking me for a disc to be installed, not supplied. I am given the option to go to advanced settings but not too sure what I need to do. My laptop has Vista Premium installed can any body help me please.
My broadband speed is sometimes lacking, and therefore it can be difficult to view Flash streams of programmes.
So my idea is to start a Flash stream, let it run to completion no matter how long it takes, and then view the temporary .swf file.
I've discovered the location of my Google Chrome temporary files. However, there is no file type associated with these files.
Therefore, I'm wondering if the idea above will work, and how can I retrieve only .swf files?
I want to retrieve all the pictures viewed on the web, and I was told I can find them in the C:\Documents~[Account]\Application Data\Original\IETemply directory.
I have a question. Does the directory mentioned above include all the pictures viewed on the web? What is the relationship between the directory and C:\Documents~[Account]\Local Settings\Temporary Internet Files?
I remote access to my server install LAMP and in the middle of the installation it disconnected. and from then i cannot a remote to that server and giving the error "Cannot connect to VNC server error 60001"
Please help give some suggestion.....with the problem above
HI I wanna clear my doubt wether theabove query(title) can be done MY Graphic card supports DVI I and a VGA and I wanna Connect it to my 29' Sony FD Trinitron Wega KV EF 29 M80 Using DVI to RCA cable. To which Port do i connect for the TV.
[root@vps303 menu]# ls
icons jscookmenu menu.php _notes
[root@vps303 menu]# cat /etc/issue
CentOS release 5.4 (Final)
Kernel \r on an \m
As you see above,now the suffix is somehow invisible,how can I make them visible?
How to fix the following issue and what's the problem. Due to this problem, everything that uses python is not working.
/lib/librt.so.1: symbol
pthread_barrier_wait, version
GLIBC_2.2 not defined in file
libpthread.so.0 with link time
reference
Please install a package which
provides this module, or verify that
the module is installed correctly.
It's possible that theabove module
doesn't match the current version of
Python, which is:
2.6.2 (r262:71600, Aug 21 2009, 12:22:21) [GCC 4.4.1 20090818 (Red
Hat 4.4.1-6)]
300mbps sounds wonderful, but not with my horrible Comcast internet connection.
I doubt there's an internet connection in America that even hits 54mbps. So I'm guessing that the only reason someone would be inclined to upgrade is for faster data transfer within the local network.
With my internet connection where download rates are rarely ever above a few hundred kilobytes a second, would I even see any improvement in switching from 802.11g to 802.11n?
I have a column that I want to contain 1 or more tag values, e.g.:
row1: X
row2: Y
row3: X, Y
row4: X, Z
row5: X, Y, Z
And then, when I auto-filter on that column, I want my filtering options to simply be:
X
Y
Z
i.e. if I filter by X, then I should see rows 1, 3, 4, and 5 from above. This, instead of just seeing row 1.
Is such a setup possible?
I have a dual screen setup one is horizontal one is vertical problem is that the wallpaper on the vertical one displays as horizontal so i have black space above and below the wallpaper.
How can turn the wallpaper around so it displays correctly on the vertical screen.
I am able to create from using lvm GUI to do as follows:
/dev/var-v0l/var /var ext3 defaults 1 2
/dev/varopt-vol/var-opt /var/opt ext3 defaults 1 2
$df
/dev/mapper/var-v0l 103208224 1881092 96084460 2% /var
/dev/mapper/varopt-vol 103208224 192252 97773300 1% /var/opt
but using command line LVM I created I can not do as theabove
$ df
df: `/var/opt': No such file or directory
/dev/mapper/var-v0l 103208224 1881092 96084460 2% /var
What am I missing.