Search Results

Search found 6339 results on 254 pages for 'josh 24 2'.

Page 95/254 | < Previous Page | 91 92 93 94 95 96 97 98 99 100 101 102  | Next Page >

  • News about Programming Entity Framework 2nd Edition

    Programming Entity Framework 2nd Edition (based on the RTM of VS2010/.NET 4.0) is currently available on Safari Rough Cuts at http://oreilly.com/catalog/9780596807252. At this point most of the chapters are there. You’ll find 2-23. Note that chapter 4 will be broken into 4 and 5 in the final edition. I changed the chapter numbering after chapter 16 to accommodate this which is why there is no chapter 17. Chapters 24 is about n-Tier CLient applications using an WPF example and chapter 25 is...Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.

    Read the article

  • Apps Script Office Hours - November 9, 2012

    Apps Script Office Hours - November 9, 2012 In this episode Ikai and Eric ... - Plugged the upcoming hackathon in Los Angeles. - Covered the release notes from the past week, which included some great enchancements to the Gmail and Drive services. - Discussed the new Google Cloud SQL integration in Apps Script. - Hyped the upcoming special episode with the creator of the "Google Analytics Report Automation (Magic)" script. - Answered questions about integrating Apps Script with Google Docs and Forms. The schedule of future episodes can be found at: developers.google.com From: GoogleDevelopers Views: 61 2 ratings Time: 31:24 More in Science & Technology

    Read the article

  • Automatic login option is missing in 12.04

    - by grossogrossum
    Automatic login option is missing from System Settings User Accounts, how can I solve this? I either can't set the automatic login by editing /etc/lightdm/lightdm.conf [SeatDefaults] autologin-user=x autologin-user-timeout=0 user-session=ubuntu greeter-session=unity-greeter After restart login screen asks for my password. There is a thread in Ubuntu forums http://ubuntuforums.org/showthread.php?p=11889259 . It's in lubuntu forum, but there are ubuntu users afected too. I'm runing 12.04 (precise) 64-bit with Kernel Linux 3.2.0-24-generic. Excuse my bad english, please.

    Read the article

  • Vista missing from grub bootlist after installing ubuntu

    - by tacomensa
    I installed Ubuntu on a logical partition a while ago. When I get to the grub bootlist, Vista is not there. What i get is this: Ubuntu, with linux 2.6.32-26 Ubuntu, with linux 2.6.32-26 (Recovery mode) Ubuntu, with linux 2.6.32-25 Ubuntu, with linux 2.6.32-26 (Recovery mode) Ubuntu, with linux 2.6.32-24 Ubuntu, with linux 2.6.32-26 (Recovery mode) Memory test (memtest86+) Windows vista (loader) (on/dev/sda1) windows recovery environment (loader) (on/dev/sda2) "Windows vista (loader)" is an acer erecovery manager Im guessing that grub installed on my primary partition so it overwrite the vista MBR and i dont have the option to boot vista. Is there some way i can just edit the MBR and add vista to it or how will i have to repair this? here is my boot script http://pastebin.com/7HZFjBT7

    Read the article

  • Ubuntu 12.04 intermittently fails to wake up from sleep

    - by stacksia
    When I put my Ubuntu 12.04 machine into sleep, sometimes on waking up, it fails, logs me out, and takes me back to login screen. When I log back in, it tells me some unexpected error happened, but it fails to let me report the bug. This has started to happen recently, but I don't know what triggered it. uname -a Linux [name] 3.2.0-30-generic #48-Ubuntu SMP Fri Aug 24 16:52:48 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux The issue seems similar to Xorg intermittently restarts after suspend. But in my case I am not sure if it is a Xorg issue. I looked at xorg logs, but didn't notice anything indicating an error. I know I am not providing a lot of info, but I am not sure where (e.g. which log files) I should seek for more info.

    Read the article

  • Getting trayer to work with dual screen setup

    - by Ikke
    I'm using XMonad as my window manager, and want to use trayer as a icon panel for things like nm-applet. The problem was that the panel wouldn't appear on the top of the screen. If I set it to the bottom it just appeared. After a lot of trying, I found out it is because my xorg.conf is setup for dualscreens, and probably the trayer panel is spawned outside my view (I currently have only a single screen, but I switch a lot). After manualy tweaking the xorg.conf file to allow for just one screen, the panel appears on the right spot. These are the things I had to modify: Section "Monitor" Identifier "0-LVDS" Option "VendorName" "ATI Proprietary Driver" Option "ModelName" "Generic Autodetecting Monitor" Option "DPMS" "true" Option "PreferredMode" "1366x768" Option "TargetRefresh" "60" Option "Position" "0 0" # Was 1280 256 Option "Rotate" "normal" Option "Disable" "false" EndSection SubSection "Display" Viewport 0 0 Virtual 1366 768 # Was 2646 2646 Depth 24 EndSubSection The problem is ofcourse that I can't use my dual screen setup anymore. Is there a way to force trayer on the right position even with the dualscreen setup?

    Read the article

  • Is it okay for an application to check for automatic updates in less than 20 hour interval?

    - by FlameStream
    I have a desktop application that has the ability to automatically update itself on the next restart (without the user's consent - but this is another issue altogether). Assuming that the user would never notice anything related to application updating (such as a progress bar, or pop-up requiring restart), and that our server would support the request spam load, is there any reason why it should not check for updates in less than 20 hour interval? The reason I'm asking this is because all applications that I know that have auto-update capability check for update every 20 to 24 hours and at startup. I was just wondering if there was an ethical rule about it, or simply because of the risk of overloading the server.

    Read the article

  • how to focus the desktop on unity

    - by user25119
    I'm using Ubuntu 11.10 (unity 4.24.0) and I can't seem to focus the desktop. For example, if I press Mod4+D, the window I had opened stays focused, but the image is see is my wallpaper. If I minimize all windows one by one, the last window I minimize is still focused when the desktop finally appears. This means I can't add desktop icons, nor use the mouse in it. I thought about reporting a bug, but everything works fine on other computers with the latest version of Ubuntu I've used, so I'm wondering about what's happening. Before, when I pressed Mod4+D, the Unity Top Menu would say "Desktop - File Edit ..." and I could use the desktop properly. Thanks in advance!

    Read the article

  • Size of an image imported with FreeImage

    - by KaiserJohaan
    I'm having abit of a brainfart and I can't quite grasp what I'm doing wrong. It's quite simple, I am importing an image with FreeImage (http://freeimage.sourceforge.net/) which has a method FreeImage_GetBits that returns a pointer to the first byte of the image data. I then try to load all the data into memory using (bitsperpixel / 8) * pixelsWidth ' pixelHeight, like this: uint32_t bitsPerPixel = FreeImage_GetBPP(bitmap); // resolves to 24 uint32_t widthInPixels = FreeImage_GetWidth(bitmap); // resolves to 1024 uint32_t heightInPixels = FreeImage_GetHeight(bitmap); // resolves to 1024 // container is a std::vector<uint8_t> pkgMaterial.mTextureData.insert(pkgMaterial.mTextureData.begin(), FreeImage_GetBits(bitmap), FreeImage_GetBits(bitmap) + ((bitsPerPixel/8) * widthInPixels * heightInPixels)); I have a jpg which is 31 kilobytes in size on disc. Yet when I load it using the above formula, I see the vector is then filled with 3145728 bytes, which is approx 3145 kilobytes. What am I doing wrong?

    Read the article

  • Introduction to the SQL Server Analysis Services Neural Network Data Mining Algorithm

    In data mining and machine learning circles, the neural network is one of the most difficult algorithms to explain. Fortunately, SQL Server Analysis Services allows for a simple implementation of the algorithm for data analytics. Dallas Snider explains 24% of devs don’t use database source control – make sure you aren’t one of themVersion control is standard for application code, but databases haven’t caught up. So what steps can you take to put your SQL databases under version control? Why should you start doing it? Read more to find out…

    Read the article

  • Cursor-Killing: Accessing Data in the Next Row

    Cursors are considered by many to be the bane of good T-SQL. What are the best ways to avoid iterative T-SQL and to write queries that look and perform beautifully? This first part in an ongoing series of cursor-killing handles inter-row analysis. 24% of devs don’t use database source control – make sure you aren’t one of themVersion control is standard for application code, but databases haven’t caught up. So what steps can you take to put your SQL databases under version control? Why should you start doing it? Read more to find out…

    Read the article

  • Mandriva Linux 2010.2 est disponible, et apporte de nombreux correctifs et améliorations autour du noyau Linux 2.6.33.7

    Mandriva Linux 2010.2 est disponible, elle apporte de nombreux correctifs et améliorations autour du noyau Linux 2.6.33.7 Mise à jour du 24.12.2010 par Katleen La distribution Linux Mandriva est désormais disponible dans une nouvelle version, la 2010.2. Il s'agit d'une mise à jour majeure et incrémentielle de Mandriva Linux 2010 Spring. Elle apporte plusieurs amélioration de sécurité ainsi que des correctifs de bogues. Cette version est la seconde dite "d'entretien". Elle est construite autour du noyau Linux 2.6.33.7 et intègre de nombreux environnements et outils : - GNOME 2.30.0 - KDE 4.4.3 - XFCE 4.6.1 - OpenOffice 3.2 - Thunderbird 3.0 -...

    Read the article

  • Ubuntu VM cannot start after Kernel upgrade

    - by AAz
    Several Ubuntu 10.04 VMs were restarted after few months and began getting "Kernel Panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)" message. Restoring those VMs from backup (to the "paused" state) allows to boot normally. However restarting the VM again results in the mentioned error message. I suspect it's the updated kernel version (2.6.32-37-server, 2.6.32-38-server) that misbehave - another Ubuntu VM (that's used as template for those failing VMs) still has 2.6.32-24-server and reboots fine. We're using HyperV (2008R2) as the server host. Nothing were changed in it's configuration. Has anyone faced this issue, please advise the solution. Many Thanks in advance!

    Read the article

  • SAP annonce des pré-résultats records pour ses ventes de logiciels au 4ème trimestre 2010

    SAP annonce des pré-résultats records Pour ses ventes de logiciels au 4ème trimestre 2010 Malgré le départ de son PDG pour HP et l'affaire TomorrowNow qui l'oppose à Oracle, l'éditeur allemand de solutions professionnelles SAP se porte bien. La société vient d'annoncer des pré-résultats records pour le le 4ème trimestre de son année fiscale 2010, qui se terminait le 31 décembre 2010. . Ses revenus liés à la vente de logiciels s'élèvent à 1,5 milliards d'Euros, soit une progression de + 34 % (+ 24 à taux de change constant). SAP s'en félicite. « Nous sommes heureux d'annoncer le meilleur trimestre de ventes de logiciels de l'histoire de SAP. Nous avons réalisé une...

    Read the article

  • SQL Saturday #303 - Rochester, NY

    Don’t miss your opportunity to attend SQL Saturday #303, the largest FREE training event dedicated exclusively to SQL Server Administration, Development and Business Intelligence to hit Rochester, NY. This event also features 2 paid-for preconferences, run by Bill Pearson and David Klee. Register while space if available. 24% of devs don’t use database source control – make sure you aren’t one of themVersion control is standard for application code, but databases haven’t caught up. So what steps can you take to put your SQL databases under version control? Why should you start doing it? Read more to find out…

    Read the article

  • Surface sous Windows RT sera supportée jusqu'en avril 2017, la tablette de Microsoft recevra des mises à jour pendant plus de 4 ans

    Surface sous Windows RT sera supportée jusqu'en avril 2017 la tablette de Microsoft recevra des mises à jour pendant plus de 4 ans Surface sous Windows RT bénéficiera d'un support de 4 ans et demi. Microsoft a procédé à une mise à jour de sa politique de support en intégrant une nouvelle section pour sa tablette fonctionnant avec la version ARM de Windows. Les possesseurs du dispositif pourront recevoir des mises à jour logicielles, des correctifs de sécurité, ainsi que des mises à jour du firmware (micrologiciel intégré dans le hardware) jusqu'au 24 avril 2017. Contrairement aux versions traditionnelles de Windows qui bénéficient d'un support principal de 5 ans, Mi...

    Read the article

  • Android 3.0 devrait sortir en mars 2011, sera-t-il trop tard pour percer sur le marché des tablettes ?

    Android 3.0 devrait sortir en mars 2011, sera-t-il trop tard pour percer sur le marché des tablettes ? Mise à jour du 24.12.2010 par Katleen Après l'installation d'un bonhomme de pain d'épices dans le jardin du QG de Google aux Etats-Unis, d'autres indices viennent préciser les conditions de l'arrivée d'Android 3.0. Si la firme reste très évasive sur le sujet, elle dissémine néanmoins quelques informations, directement ou non. Ainsi, plusieurs constructeurs ont annoncé l'arrivée de leurs modèles de tablettes tournant sous l'OS mobile à partir d' avril 2011. Pour que les industriels puissent proposer leurs produits, il faut bien que le système d'exploitation soit disponible. Ce qui sit...

    Read the article

  • Transparent Data Encryption (TDE) in SQL Server

    There are several ways to implement encryption in SQL Server; Arshad Ali focuses on Transparent Data Encryption (TDE), which was introduced in SQL Server 2008 and is available in later releases. 24% of devs don’t use database source control – make sure you aren’t one of themVersion control is standard for application code, but databases haven’t caught up. So what steps can you take to put your SQL databases under version control? Why should you start doing it? Read more to find out…

    Read the article

  • Getting wifi working on 14.04

    - by user286114
    I have installed Ubuntu 14.04 on my laptop. When I plug in the ethernet cable the internet works fine, but I can't see any wireless network in the networking manager. The wifi switch is definitely on on my laptop! It's a Dell XPS M1330. I'm not sure what the network card is - how can I find out? nm-tool gives me this: NetworkManager Tool State: connected (global) - Device: eth0 [Wired connection 1] ------------------------------------------- Type: Wired Driver: tg3 State: connected Default: yes HW Address: 00:23:AE:28:FE:A2 Capabilities: Carrier Detect: yes Speed: 100 Mb/s Wired Properties Carrier: on IPv4 Settings: Address: 192.168.1.26 Prefix: 24 (255.255.255.0) Gateway: 192.168.1.254 DNS: 192.168.1.254

    Read the article

  • 2014?6???OTN?????????????&????

    - by OTN-J Master
    ??????????????????????????????????????????????????????????????????????????????OTN????????Oracle Database????????????????!????????????????????????????????????????????????????????????????????????????????????·Oracle Database ???????????·??????~?????????????·Oracle Database 12c ?????????·Oracle Real Application Testing?????????????????????????DB?????????????????????????????????????????????????????????????(?!)?????????????!?????????Oracle Database ?????????????2014?6???OTN?????????????&???? [5/28??]???????? ?????? ????? 2014 6?10?(?)13:30~17:30 @ ??????????????IT??????????????????????????????????????????????????????????? ??????????????? ?????????????????????:??????????Internet of Things ??? Java ????:NTT???????M2M?????IoT?????????:?????????????/NEC?/????????????????????? ~???????????! -???????/?????????? ~6?18?(?)15:30 ~17:00 @ ?????????????????(???)6?18?(?)18:30~20:00 @ ?????????????????(???)Oracle10g???SQL????????????????????????????????Oracle???????·????????????????SQL?????????????????????SQL??????????????????????????????????????????????????????????????????????????~!!?????????????????????????~OracleDatabase12c??????????~? 6?18?(?)18:30 ~20:00 @ ?????????? ???? ???????Oracle Database 12c??????????????????????????????????????????????? ????·????·????????????????·???? Oracle Audit Vault and Database Firewall ?????????????????????????????????????????????????????????????????????????????ORACLE MASTER Bronze Oracle Database 12c ?????????????? 6?26?(?)14:30 ~ 16:30 @ ?????????? (??) ???24????????????? ORACLE MASTER??????????!ORACLEMASTER Bronze Oracle Database 12c????????????Bronze ???????????????ORACLE MASTER??????????????????ORACLE MASTER????????12c?????????????????????????

    Read the article

  • Oracle Days ???????????????????????????!!

    - by OTN-J Master
    ???????????????????????2????Oracle Days 2012 Tokyo??????????????? Oracle Days???????????????????Oracle OpenWorld 2012???·???????????????????????????????????????????????????OpenWorld?????????????????????????????????????????????????????????????????????????????????????(10/24??)??????????????????????????????????????·????????????????????????????????????????????????????? -------------------------------------------10?30?(?)???????????????D1-E-1?13:00-13:45 (1) ??????·????????D1-E-2?14:00-14:45(2) Oracle Real Application Clusters?D1-E-3? 15:00-15:45 (3) ????????/???????D1-E-4? 16:00-16:45 (4) ????-------------------------------------------??????????????????????????????????????????????????????????????????????????????????????????? >>  ??????????(??????????????????) >> ???????????????????!

    Read the article

  • ???????

    - by Ada Li
    ???????????, ??????????????,??????????   ??????Effie, ????????,?????? ?Google, Baidu????,????,????????,??????,??????   ????????????:“???????, ????????????“ ? ??????????: ??msn:??????????? ??????Sean:Jialin_Rubicon:?????????96????? georgiazhao:?????????????e-visa, ????????,????????? qyjohn_:????????????????,????,???????????????????????????????? ???:???,?????????????,???????,?????   ?????????,????????,???????????,?????? ??John??????,????,???????,?????? Georgia??????,E-Visa?Google??,E-Visa?????,??24????????????,??????????SingID?SingPass.   ????????,????SingID?SingPass?????????????????????,??????chensz????,???,?????SingID?SingPass? ???E-Visa??,????????????,????????????????,?????,???????,????????,????,?????? ????????????,?????????????????,????????????????,??????????Georgia, ?chensz???????,??????????,???????,?????????,??????????????????,?????????

    Read the article

  • ???????????!??????·?????

    - by Kumiko Fujita
    “???????????!”???? “???????????!”????????????·????????????????????????????????????????????????????????????? ???????????????????????????????????????????????! ??????????·????? ??????·????????????????????????????????????????????????24??365??????????·??????????????????????????????????????????????????????????·????????????????????? ????????????????????????????????????????????????????????????????????????????????????????·???????????????????/??/????????????????????????????????????DBA?????????????·?????????????????????????????????????????????! ???? ????? ????? ??????????·??????? ???????!? ??????&?????? PDF??(WMV)??(MP4) ??????? ????????????-????????????????? PDF??(WMV)??(MP4) RMAN??? ??!! ??????·????~?????? VS RMAN ?????????~ PDF??(WMV)??(MP4) ?????????!????????? ??!! ??????·????~???????????????????????~ PDF??(WMV)??(MP4) ????????? ????????????????????????????? PDF??(WMV)??(MP4) ???? ?????????????|???????????

    Read the article

  • ????!DBA & Developer Day ??????????????????????????????!

    - by OTN-J Master
    ???(11?20?)??????????????????????????????Oracle DBA & Developer Day????????????????????????????????????????????????? ???????????????????????????????????·?????????????????????????????????????????????????????????????????? ???????????????”?”????????????????????????????????????????????????????????????????????????? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?????????????????????????????????????????!! OTN???????????????24?????????????????????????????????????????????·?????????????????????????????????????????12???????????????????OTN???????????????????????????? ???????·?????(MyProfile??)??????????????????????OTN???????????????????????·????????????????????????????????????·????????????????????????????? (?????????) >> OTN????????????????????

    Read the article

  • ????????

    - by Tatsuya Sugi
    ???????????????? ???????????????? ????????????????????????????????????????????????????????????????????·????????????????????????... ????????? ????????? ?????????? ???????????? ?????????????·?????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????? ???????????????????????????? ??·??????????????????????????????????????????????????????????????????????????????????????????????????????? ???????????... ???????????????????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????????????????????????? ???????????????? ???????????????????????????????????????????????????? ??????????????????????? ????????????????????? ??????????? ??????????????????????? ??????? = ?????? ???????????????????????????????????????????????????????????????????????? ??????????????????????????????????/???(HA)?????????-???????????????????? ???????????????????????????????????????????????????????????????????????? ???????????????????????????????? ???????????????! ?????????????24??365???????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????????????? ??????????????????????? Oracle Coherence ??? ???????????????????? 1. ?????????????PC/????????? Oracle Coherence ?????????????????????·??????????·?????????????????????????????????????????????????? 2. ?????????????????? ??????????????????????????????????????????????????CPU???????????????????????????????????????????????????????? 3. ???????????????????????????? ??????????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????

    Read the article

< Previous Page | 91 92 93 94 95 96 97 98 99 100 101 102  | Next Page >