Click Here
Home Blog Gallery Links Tutorials Projects
Carmageddon Reincarnation Announced 2011-06-01 15:49
As you read from the title it's a true news for all Carmageddon fans. But recently due to heavy visitors traffic the site was horribly down. It's announded by Stainless Games it seemz it will be the hell of a total remake or alike. Don't forget to check carmageddon.com, you'll find interesting things and a way more :D
There goez some graphix for you :D
Video: Masm32 Hacks: Create an AutoTyper for Notepad 2011-05-30 16:55

In this video you will see how to write a nice hacking program using masm32 assembler. All you need to get it from masm32.com and use some capable text editor to edit source files. You can set or point the editor option of compilation to masm compiler there out.
This is a first implementation of youtube on my site so this gotta do alot :D
The Three Skulls: Carmageddon.com Grand Opening 2011-05-28 16:32
As the title says it will be grand opening of a new site and a publicity for a new game from Carmageddon series. The site will open in the three days from now. The domain is registered by square-enix, it's the company who bought another one that had rights on it. So it seemz taht there will be next carmageddon crash course soon :D
Check out carmageddon.com site, there's a tree skulls image as above and a countdown counting to it's possible opening :D
Running Process as System user in Windows XP 2011-04-27 11:07
Have you ever wondered how to run a program on SYSTEM account on Windows XP? It's pretty easy. For first you nead an account with an Administrator privileges running on your desktop. Next, open command line and type
Quote:
at time /interactive cmd.exe
where time is your current system time plus one minute (e.g. 11:08) and cmd.exe is a program that currently will run. On this way you can run any program with system privilages without any fuss. Happy system hacking :)
XUbuntu Linux Live Recovery and Rescue CD 2011-04-17 17:16
Alot of time went when I started to develop the Ubuntu Recovery Rescue CD with Xfce Desktop Environment. I created it almost based on guide posted on the link below with some other tweaks.
Link: https://help.ubuntu.com/community/LiveCDCustomizationFromScratch

The current progress image with the GParted utility shown.
I've removed almost any unneeded application from the build since I'm creating an ultimate Recovery cd as it should be. I'll later post detailed info how to create one yourself. Screenshot taken from the VirtualBox.
[C++] Random Junk V3 2010-07-05 12:31
This version works under linux perfectly
Quote:
#include <iostream>
#include <cstdlib> //for compiling under linux
using namespace std;
void junk();
int main (int argc, char * argv[]){
srand( time(NULL) );
junk();
}
void junk(){
int size=1024;
cout << "\x1B\x5B\x48\x1B\x5B\x32\x4A";
for(int i=0; i<size; i++) cout << (char) (rand() % (127 - 32) + 32);
cout << "\n";
}
[C++] Random Junk V2 2010-07-04 21:01
There's a new code that i created using while yesterday and today.
Quote:
#include <windows.h>
#include <iostream>
using namespace std;
void junk();
int main (int argc, char * argv[]){
srand( time(NULL) );
junk();
}
void junk(){
int size=1024;
char tmp[size];
for(int i=0; i<size; i++) tmp[i]= (char) (rand() % (127 - 32) + 32);
tmp[size]=0;
MessageBox(NULL, tmp, "Random Junk Goez Here", MB_ICONSTOP | MB_OK);
}
Compiled with C++
[C++] Random Junk Generation 2010-07-02 20:16
There's a new random generation code whitch was succefully coded from scratch. The thing is that it output random junk symbols all time. The code is below :D
Quote:
#include <iostream>
#include <cstdlib> //for compiling under linux
using namespace std;
void junk();
int main (int argc, char * argv[]){
srand( time(NULL) );
junk();
}
void junk(){
while(1) cout << (char) (rand() % 255);
}
Linux Hack Uncovered 2010-04-18 20:39
This hack shows the info for all users found on linux mashine by executing commands with their rights (works even with users that can't be normally su'ed on :D)
It outputs info like:
User root (Groups: root)
Id: uid=0(root) gid=0(root) grupės=0(root)

Command Line To try on:
Quote:
$ cat /etc/passwd | cut -d":" -f1 | sort | xargs -I {} -i sudo -u {} bash -c 'echo -e "User `whoami` (Groups: `groups`)\nId: `id`\n";'
Youtube Formats 2009-12-09 14:19
&fmt=6 Youtube Higher Quality (not HQ)
&fmt=18 HQ Lover Quality
&fmt=22 HD Quality (if available)
&fmt=35 HQ Higher Quality (if available)
Read More...

Add a Comment

Get Your IP Instantly
Name:
Enter the text from the image below to the text field next to it (text is case sensitive):
Captcha
Email:

Name:
Password:

Enter Captcha (Case Sensitive):
Captcha


Register
English
Lietuviškai

RSS Feed
Main Content
Animation
Carmageddon
Programming
Technology
Electronics
Gaming
Linux
Anything
Site News

Unique visit count:
142 visits on page.
731 visits on site.
Detailed Statistics
Misceleanous Content