Archív kategorií: imported

Importovane z url. stranky

Why does switching to the tty give me a blank screen?

http://askubuntu.com/questions/162535/why-does-switching-to-the-tty-give-me-a-blank-screen?rq=1

This is usually caused because the graphical text-mode resolution set at boot up is not compatible with your video card. The solution is to switch to true text-mode by configuring Grub appropriately:

  1. Open the terminal with Ctrl+Alt+T
  2. Paste the below, and enter your password when asked:

    sudo sed -i -e 's/#GRUB_TERMINAL/GRUB_TERMINAL/g' /etc/default/grub 
  3. Then type sudo update-grub

  4. Reboot and the virtual terminals should now work.

2014-08-20 20:50:52
Comment – test – blank screen

Why does switching to the tty give me a blank screen?

http://askubuntu.com/questions/162535/why-does-switching-to-the-tty-give-me-a-blank-screen?rq=1

This is usually caused because the graphical text-mode resolution set at boot up is not compatible with your video card. The solution is to switch to true text-mode by configuring Grub appropriately:

  1. Open the terminal with Ctrl+Alt+T
  2. Paste the below, and enter your password when asked:

    sudo sed -i -e 's/#GRUB_TERMINAL/GRUB_TERMINAL/g' /etc/default/grub 
  3. Then type sudo update-grub

  4. Reboot and the virtual terminals should now work.

2014-08-20 20:50:52
Comment – test – blank screen

WP – gallery – link fix

Q:I have multiple users posting my blog. I need to know how to make all image attachments they upload link to the original image (instead of permalink) by default.

A: There is a hidden options page in WordPress under http://yoursite/wp-admin/options.php
On that endless list of undocumented options you can set a value for "image_default_link_type". You may want to set it to "file" (without the quotes) to link all your images by default to the original image.

http://wordpress.org/support/topic/make-image-attachments-default-link-to-original-image
other info about galleries: http://en.support.wordpress.com/images/gallery/

passwords for some adsl routers

Defaultné prihlasovacie údaje do aDSL zariadení
IP adresa
Meno
Heslo
D-link 2641R
192.168.1.1
user
user

Draytek Vigor 2600
192.168.1.1

admin
 
Draytek Vigor 2700 VGST
192.168.1.1
admin
admin

Draytek Vigor 2700 VoIP
192.168.1.1
admin
admin

Magio router – Draytek Vigor 2700
192.168.1.1
user
user

Magio router – Pirelli
192.168.1.1
user
user

GLITEL GT-318RI
192.168.1.1
admin
adslroot

Microcom AD 2706
192.168.1.1

admin
admin
Microcom AD 2651
10.0.0.2

admin
epicrouter
Topcom Webr@cer 821
192.168.1.1

admin
admin

excel vlookup

Excel

a 1    a 234
b 2    b 23
c 3    d 234
d 5    f 55
e 6
f 2

VLOOKUP is the method to match values of one to another.
Used for aligning tables of translations. Where we have GUID + text in one language, and GUID + text in other language, and some texts are not present in other language

gtkmm simple failure

Program hangs at Gtk::Main kit( argc, argv ); and in console you see only these messages:

GLib-GObject-CRITICAL **: gtype.c:2458: initialization assertion failed, use g_type_init() prior to this function


GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0′ failed

reason? simple! Call:

Glib::init();

on start of main. Doh!

for cycle in .bat for copying multiple dll

@echo off
SET Target=%1
SET Source=%2

ECHO Copying Spgen assemblies to bin directory…
ECHO XCOPY.EXE %Source% %Target%SharedSpgen /R /Y
XCOPY.EXE %Source% %Target%SharedSpgen /R /Y

for /r %~dp2 %%g in (*.dll) do XCOPY.EXE %%g %Target%SharedSpgen /R /Y

If ErrorLevel 1 GoTo ErrorHandler

GOTO Done
:ErrorHandler
ECHO ERRORS executing post-build steps for Spgen project
Set ErrorLevel=1
:Done

add contacts to autocomplete in outlook 2010

ja som to riesil akurat teraz. Urobil som jednak to, ze v "Contacts" kde mam v "My Contacts" zalozku "Contacts" a "Suggested Contacts" tak som skopiroval vsetky Contacts do Suggested.

A potom dalsia fajn vec je klavesa ctrl+K pri pisani mena, ctrl+k mi automaticky doplni vhodne meno

www.howtogeek.com/howto/microsoft-office/manage-your-outlook-email-address-auto-complete-list/

running MSVC 2008 Express Debug app on customer PC

 http://social.msdn.microsoft.com/forums/en-US/vcgeneral/thread/4c2bcfca-e0f0-4d27-9ad2-4cd282cc6ed0

The easiest way to do it is to copy the contents of the following folders to your program folder (the same folder you have your debug executable in)


For Visual C++ 2005:


C:program filesMicrosoft Visual Studio 8VCredistDebug_NonRedistx86


For Visual C++ 2008:


C:program filesMicrosoft Visual Studio 9.0VCredistDebug_NonRedistx86


if using the VC/MFC Feature Pack for VC++ 2008 you must also define the following two defines near the top of your stdafx.h:


#define _BIND_TO_CURRENT_MFC_VERSION 1

#define _BIND_TO_CURRENT_CRT_VERSION 1

And:
http://msdn.microsoft.com/en-us/library/aa985618.aspx