Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
58% Quality Score
Upvotes Received
23
Posts with Upvotes
22
Upvoting Members
18
Downvotes Received
26
Posts with Downvotes
23
Downvoting Members
6
7 Commented Posts
5 Endorsements
Ranked #341
Ranked #3K
~105.44K People Reached
Favorite Tags

186 Posted Topics

Member Avatar for Reverend Jim

# "Big" brother pluto # You could wrap Russia around Pluto with a bit of left overs. Russia area - Pluto area = "only" 1398km^2 # Faith not crazy # Christopher Langan. American with IQ reported between 195-210 claims that within religions and science there is possibility they will cross …

Member Avatar for John_smith
10
21K
Member Avatar for Ancient Dragon

https://pbs.twimg.com/media/BhHy2C6IUAESE0m.png:large I just put it here.

Member Avatar for jkon
4
4K
Member Avatar for jerry12

If you really want a protection, paranoidal, I recommend you **Comodo** with **Paranoid Mode** on. I almost fell off the chair, when I found Comodo asking "Can I allow *explorer.exe* access to *C:/Users/admin/Desktop/games/*". Or "Can I allow *firefox.exe* access to registry keys".

Member Avatar for Amy_11
0
1K
Member Avatar for RikTelner

About 3 days ago. My laptop started behaving strangely (I'm on it, right now). I let it fall couple of times, but that was really some time ago about 3 months. Everything worked fine, no errors, crashes, "instant deaths". But recently, as said, 3 days ago. Laptop popped me out …

Member Avatar for Peter_67
0
5K
Member Avatar for RikTelner

`l(x)` is my shortcut to `console.log(x)`. `item.php` has text "EYES!!", just that. var session = $.get("item.php", function(data) { session = data; }) l(session); // *all XHR flags in an object, responseText ("EYES!!"), status (200) etc. $.get("item.php", function(data) { session = data; }) l(session); // undefined $.get("item.php", function(data) { l(data) }) …

Member Avatar for stbuchok
0
208
Member Avatar for RikTelner

I have main PHP file, and dozen of less files, something like modules, they work this way (imaginary file): if ($_GET["action"] == "login") { require_once("login.php"); return login_something($_GET["credit"]); } That `require_once();` and `return function(data);` recur a lot in my code. It looks kinda nasty, is there no way to make this …

Member Avatar for cereal
0
460
Member Avatar for RikTelner

$(document.getElementById("item1"), document.getElementById("item2")).click(function () { $(this).fadeOut(); }); <span id="item1">This is item 1</span><br /> <span id="item2">This is item 2</span> span#item1 { color: red; } span#item2 { color: green; } `span#item1` is affected. `span#item2` not, that means I made mistake in syntax. Is there a way to get it to work. I know …

Member Avatar for RikTelner
0
528
Member Avatar for RikTelner

Assume you guys are done with your professional projects. Do you write explanation of working of your projects in the comments in the code. Or do you write entire documentation addressing every variable and function? Or do you do both? If you do both, how do you avoid repeating yourself? …

Member Avatar for rproffitt
0
213
Member Avatar for RikTelner

https://jsfiddle.net/yr2r4Ldj/4/ I've tried 5 different solutions, **FIVE** of them, and **NONE** of them work. I hear Microsoft laughing ever so evily around the corner while grinding hands against one another like a psychopath. Does Microsoft hate developers or something? THEIR OWN FILTERS, DON'T WORK. WHY PROVIDE IMPLEMENTATION OF SOMETHING THAT …

Member Avatar for gentlemedia
0
436
Member Avatar for RikTelner

Things like maintenance, website background, website title, favicon etc., where would it be best to store them? It would be single array of items. Do I just write it in flat CSV file, flat XML file, or use database for it (sounds pretty stupid to create single-row-table)? (*sorry for mess …

Member Avatar for jkon
0
247
Member Avatar for RikTelner

I take two versions of Open Sans from Google Fonts' servers. Regular and a bold one. As soon as page loads, the font is shown nicely. The idea is something like this a.link { font-weight: 400; } a.link.selected { font-weight: 800; } There's jQuery snippet that says that as soon …

Member Avatar for gentlemedia
1
367
Member Avatar for RikTelner

Let's say I have such table: +----+------------------+ | id | participantsId | +----+------------------+ | 1 | 1,24,192,3481,12 | +----+------------------+ I'd like to select every single result in this table, where user with ID `3481` has partcipated. How can I do that? Ye old `SELECT * FROM example WHERE paricipantsId=$id` won't …

Member Avatar for cereal
0
160
Member Avatar for RikTelner

http://oi68.tinypic.com/dxohtu.jpg Here are two latest Firefox's screenshot of my latest project. On Microsoft Windows 7 and Linux Ubuntu 14.04LTS. Couple things of concern: - I aligned both screenshots so that logo's (blurred) align perfectly from first pixel. - Even though it looks like barely 100 pixels overhead, Windows' menu takes …

Member Avatar for RikTelner
0
227
Member Avatar for RikTelner

I have following (really long) statement: > When I develop website that is entirely compatible with Microsoft Internet Explorer 9, and make it work foulless, I'll make sure that website doesn't require JavaScript to run, and I will make it work entirely without it. Afterwards I will add CSS3 little …

Member Avatar for gentlemedia
0
400
Member Avatar for RikTelner

--- (nevermind, I'm just not good enough for it, I'll go for less appealing solution that I know) ---

Member Avatar for gentlemedia
0
258
Member Avatar for RikTelner

https://jsfiddle.net/fzbx09qL/1/ Having above code. This is as far as I've gotten. I need someone to instruct me on three things. First off, how do I make sure it appear smoothly? I have `transition` but it doesn't seem to work, must be other way. Second, there is some code that I …

Member Avatar for gentlemedia
0
322
Member Avatar for RikTelner

https://jsfiddle.net/jLt3reca/ `nav a div { display: none; }` is being ignored. I don't know why, it's just these 3 simple "selectors" on to another, I really can't see it. In `<nav>` there's a `<a>` and there's `<div>` in this `<a>` that needs to be hidden. It doesn't hide. This isn't …

Member Avatar for godfreysseki
0
223
Member Avatar for RikTelner

Currently I have something like this (a bit modified): function function1($param) { $ans = @file_get_contents($param); if (!$ans) return ("Failure"); return json_decode($ans, true); } Extremely straight forward. However, the `file_get_contents()` gets answer from an API, that has proven to be a little stinky boa. It sometimes answers incorrectly, or "Access Denied" …

Member Avatar for RikTelner
0
780
Member Avatar for RikTelner

Consider following back-end script. <?php if (isset($_GET["req"])) { $req = $_GET["req"]; if ($req == "delete") { // Very intense calculation which finally results in deletion. } if ($req == "add") { // Very intense calculation which finally results in addition. } if ($req == "modification") { // Very intense calculation …

Member Avatar for jkon
0
234
Member Avatar for RikTelner

That might be quiet strange question. Would any of you tell me basic teachings about your life? Something as if you would be thinking like "Oh darn, if I just knew 30 years ago to do that, life would've been much easier!", or "Crap, why didn't I do this in …

Member Avatar for diafol
0
431
Member Avatar for jim3472

I would recommend, if you have any installation CD of Windows or USB of any type. To reinstall your Windows on the drive itself, DO NOT FORMAT OR DELETE PARTITIONS, just select partition where your Windows is installed or was installed. After installation process, your old files (from older Windows) …

Member Avatar for mindmergepk
0
196
Member Avatar for cproger
Member Avatar for Aeonix
0
7K
Member Avatar for christina>you
Member Avatar for RikTelner

recently ive seen video of a man which showed on how A* works, that is some algorhythm for pathfinding in 2d in games, to show this he made a game in c# (visual studio only), where he could explore the "maze" board in 3d and could see the red square …

Member Avatar for RikTelner
0
2K
Member Avatar for RikTelner

If I had a server, but I don't want to have it at home, at all costs. (dreaming starts here) I'd like to put my server (size of a home PC) in a room that would be 1m by 1m by 2m. Which would have electricity slot (I don't know …

Member Avatar for RikTelner
0
232
Member Avatar for RikTelner

Related: https://www.daniweb.com/hardware-and-software/linux-and-unix/threads/494353/urgent-nothing-boots-anymore The error of my laptop, the HDD turned out to be the culprit. They tried to recover data, but it won't really work and I think they just pull me off my money, I can get them to wipe the HDD and make it useful again for 50 …

Member Avatar for RikTelner
0
480
Member Avatar for sham

Let me ask you a question, if I told you you have two apples for each day, how many apples would you have at the end of the year? Solve this without using memory, then 2 minutes later, come to me with answer without reading it or hearing it anywhere.

Member Avatar for RikTelner
-1
2K
Member Avatar for jim3472

C:\Users\myname>systeminfo | FINDSTR /C:"Memory" Total Physical Memory: 3.983 MB Available Physical Memory: 1.148 MB Virtual Memory: Max Size: 7.965 MB Virtual Memory: Available: 4.571 MB Virtual Memory: In Use: 3.394 MB C:\Users\myname> Try command `systeminfo | FINDSTR /C:"Memory"`, it may kinda take long. **Total Physical Memory:** Actual RAM installed: 4GB. …

Member Avatar for RikTelner
0
238
Member Avatar for roscotech

May you be using laptop? I have sometimes same problem, it turns out, that when my charger is plugged out, it has much better performance = 120FPS in game, 45MB/s HDD. But when it's plugged in, text appears 2 seconds later, 25FPS in game, 20MB/s HDD. And it's not performance …

Member Avatar for RikTelner
0
129
Member Avatar for omarsherpur

If your uh, USB has a letter (let's assume it has letter B). Use following commands: DISKPART list disk select disk X format fs=dat32 label="My pendrive" quick assign letter Z Don't just copy this, just copy-paste this LINE BY LINE. After `list disk`, you will be given all the disks …

Member Avatar for RikTelner
0
269
Member Avatar for JorgeM

> Where is the facts that support such a claim that risk is high? In certain pentesting distribution, breaking into Windows XP SP1 is as easy as double clicking an icon and inserting IP, your AV might react, but then again, there are surely people who are more capable than …

Member Avatar for RikTelner
0
599
Member Avatar for RikTelner

Fast story: After I restarted my laptop. I met critical error, I tried to LiveCD-boot from Ubuntu (to repair GRUB with it), but when I try to try it without installing, try to check memory, try to check disk. It prompts me these errors: http://oi59.tinypic.com/2hg8mrt.jpg http://oi58.tinypic.com/2ecmdsz.jpg Please, help.

Member Avatar for RikTelner
0
697
Member Avatar for RikTelner

I just couldn't fit all of it in the title, actual title is: **How to send and receive messages (data packets) between UI and the server. And what would be most minimalistic CLI Linux edition that would only be able to receive and send such data and also perform "basic" …

Member Avatar for RikTelner
0
460
Member Avatar for RikTelner

Eh... I lost recently laptop to Windows, Microsoft made me cost about 700$, and that all in just 2 weeks. And even though I start hating it, I cannot deny the fact that many applications and certain games I rely on are runable only on Windows. Graphics card aren't really …

Member Avatar for RikTelner
0
255
Member Avatar for RikTelner

Around 21:00 GMT+1 on 15-04-2015 (d-m-y), DaniWeb was unaccessable to me, responding in 404 error. Is there something specific going on on servers, or an unwanted guest is trying to troll again?

Member Avatar for blud
0
129
Member Avatar for Niloofar24

> With this, you can see the database data will be one<br />two<br />three<br />four if user entered > one > two > three > four > while it will showing one two<br />three four if user insert > one two > three four Isn't it it's purpose? It changes …

Member Avatar for Niloofar24
1
1K
Member Avatar for RikTelner

I wanted to donate 10€ (not a lot, I know) to DaniWeb, I went over to donation page, it asked me how much I wanted to donate. Later it asked me to log in into PayPal, after I did this, website I had in-front of my nose just wouldn't let …

Member Avatar for RikTelner
0
321
Member Avatar for RikTelner

Almost every single topic I'll start will start with `OP Kudos:`? Just because I have **+18** on reputation now? Not all of the questions I ask are that extremely important, some are just normal question where I ask you to share your knowledge, or I ask your opinion. Sure, it's …

Member Avatar for diafol
0
326
Member Avatar for William_10

Try typing this into CMD `ipconfig /renew` If this doesn't work, you could search for actual working drivers. Most popular is http://www.official-drivers.com/installer/?seed=Atheros&gclid=CI6ymrPZxLsCFcZc3godzw4AnA I had met like 20 computer eye-to-terminal and all had it, so it's highly probable you also have that.

Member Avatar for Ranosys
0
576
Member Avatar for RikTelner

me@MYFIRSTNAME-Ubuntu:~$ cd ~/tux* me@MYFIRSTNAME-Ubuntu:~/tuxlol-0.1-dd62ba8-bin$ mono tuxlol.exe patch --dir "~/.PlayOnLinux/wineprefix/LeagueOfLegends/drive_c/Riot\ Games/League\ of\ Legends/" The specified directory is invalid. me@MYFIRSTNAME-Ubuntu:~/tuxlol-0.1-dd62ba8-bin$ ll total 384 drwxrwxr-x 2 me audio 4096 sep 29 2013 ./ drwx------ 27 me me 4096 apr 5 16:03 ../ -rw-rw-r-- 1 me me 84480 sep 15 2013 CommandLine.dll -rw-rw-r-- 1 …

Member Avatar for RikTelner
0
578
Member Avatar for RikTelner

I installed Qt, again, on new installation of Ubuntu. It asked me for `sudo` password, which is not strange since it wants to write it's data in kind of restricted environment. But what if some cracker, has embedded a virus and went of distributing working software from trustworthy company, but …

Member Avatar for RikTelner
0
249
Member Avatar for RikTelner

Title may be kind of confusing. Let me explain with an example. If someone wants to make native and precise Windows applications, and wants to look and seem professional and wants to use official tools. They most likely need to learn *high* language, C# would suffice, they also need native …

Member Avatar for iamthwee
0
790
Member Avatar for happygeek

I'm no expert. But it may be because NSA has installed malware on Windows and Macintosh, Windows' servers are widely within use and when having these malware in them, it's much easier to bypass the SSL if, for example, you connect Windows 8.1 to Windows Server 2013. Both having malware …

Member Avatar for Tcll
3
939
Member Avatar for RikTelner

I had 2 Linux's on my laptop. But I really needed to start something that required DirectX in it, also, it had to be on Windows. I tried to use VMware and VirtualBox but to no avail, so it had to be real machine, not virtual one. I installed Windows …

Member Avatar for Bala_2
0
302
Member Avatar for RikTelner

My situations is as follows. `main.cs` is a main script (you don't say, whaaaaaa?), it includes `functions.cs` by `using functions;`. I managed to get OOP working (had some struggle with it, but figured it out). I know that I can pass variables from `main.cs` to `functions.cs` by executing: Class FavVarName …

Member Avatar for RikTelner
0
177
Member Avatar for RikTelner

Our dear Windows XP died some time, there's quite an amount of applications that don't work on it anymore. That's because it is Windows NT 5.2, many relying libraries are not supported anymore, et cetera. But now, I'm wondering, what will happen with Windows 7? So far, it's the best …

Member Avatar for rubberman
0
366
Member Avatar for pritaeas

It's always great that you're trying to improve "popularity" of this forum. But maybe there could be some kind of menu for this? A sort of checkbox that you can turn on and off for this size of text. Because, geez, I'm 18 years old and I severly dislike such …

Member Avatar for diafol
4
851
Member Avatar for RikTelner

Lately I've been playing around with Unity3D. The one fun thing was, you were able to execute command from another file by using. `GetComponent()`. What you were able to do is, for example set users speed, even though script wasn't attached to player, so you technically were able to execute …

Member Avatar for djjeavons
0
165
Member Avatar for Farrukh saleem

Unix is an old "program", something like DOS. It's like a parent of Linux and iOS. They're both UNIX based. If you would look at this biologically, Unix in Neanderthal and Linux/iOS have evolved further and are better (in my opinion).

Member Avatar for ShouldAt3
0
355
Member Avatar for RikTelner

I have 4.7GB DVD with me. I looked at it, it has no data on it (looks clean). I put it into the drive. I hovered over it with mouse and it says "Free space: 0 bytes", okay... I tried to choose .iso file I wanted to install on DVD. …

Member Avatar for RikTelner
0
140

The End.