Click Here More Stuff Here
Home Blog Gallery Links Tutorials Projects
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:
207 visits on page.
1175 visits on site.
Detailed Statistics
Misceleanous Content