Jump to content


Cross_Sans's Content

There have been 63 items by Cross_Sans (Search limited from 10-February 22)


By content type

See this member's


Sort by                Order  

#263486 StarFormat - simple format software

Posted by Cross_Sans on 07 January 2017 - 12:33 PM in APIs and Utilities

View Postitzstarstruck, on 03 January 2017 - 01:48 AM, said:

View PostRedall, on 01 January 2017 - 03:25 PM, said:

...
Because I felt like it

If you were making a program that delete specific files per date, size, etc... it would be more useful.

EDIT: I looked more with your code, and you were using shell.run("..."); which is not recommended. Prefer using fs.delete("..."); than shell.run("...");.



#263487 access denied when deleteing my files

Posted by Cross_Sans on 07 January 2017 - 12:38 PM in Ask a Pro

I tried:
local file = fs.open("/password.txt");
file.close();

and worked.



#263488 EMRLD Shell ver 1.0 ALPHA

Posted by Cross_Sans on 07 January 2017 - 12:40 PM in Operating Systems

View PostWeareverylucky, on 29 December 2016 - 01:51 AM, said:

...

Why default programs ? Some users like me do not like default programs pre-installed like LuaIDE because I use external software to edit programs or Ink because I do not have need to write formated documents.



#263533 [WIP] Helium - My (semi-)developer-friendly OS

Posted by Cross_Sans on 08 January 2017 - 08:34 AM in Operating Systems

Looks great. Good job !



#263534 KrapFile - File Manager

Posted by Cross_Sans on 08 January 2017 - 08:37 AM in Programs

The program is useful, but why "KrapFile" ? (Krap = Crap = Rubbish? I still do not understand why this name :lol: )



#263644 KrapFile - File Manager

Posted by Cross_Sans on 13 January 2017 - 05:39 PM in Programs

View PostTheRockettek, on 08 January 2017 - 06:48 PM, said:

View PostRedall, on 08 January 2017 - 08:37 AM, said:

why "KrapFile"Krap = Crap = Rubbish?

That is why :P

Why not xD



#264025 cLinux [now with OPTIONAL Desktop Enviroment] [Bye CraftOS, kappa]

Posted by Cross_Sans on 25 January 2017 - 02:01 PM in Operating Systems

Why the LL command does not exists ?



#264026 FLCF - Fast Lightweight Compressed File

Posted by Cross_Sans on 25 January 2017 - 03:05 PM in APIs and Utilities

FLCF - Fast Lightweight Compressed File


Hello !

Today, I created a lightweight API called FLCF which will helps you to compress files.

Download it here:
http://pastebin.com/2rYQaQef
or with the CraftOS shell:
pastebin get 2rYQaQef FLCF

It's really simple to use it:

os.loadAPI("FLCF"); -- Loads our API
FLCF.createArchive("/myArchive.flcf"); -- Create the archive at the root directory.
uarch = FLCF.openArchive("/myArchive.flcf"); -- Opens the archive newly created.
uarch.addFile("/rom/programs/edit", "/edit"); -- Adds the file edit from /rom/programs to the root directory of the archive.
uarch.saveArchive(); -- Save our edited archive.
uarch.extractFile("/edit", "/a_editor"); -- Extracts the file edit from the root directory of the archive.
uarch.removeFile("/edit"); -- Removes the file edit from the root directory of the archive.
uarch.saveArchive(); -- Save our edited archive.


That is it. Note that if you want to add multiple files from a directory, use this code:
os.loadAPI("FLCF");
FLCF.createArchive("/myArchive.flcf");
uarch = FLCF.openArchive("/myArchive.flcf");

for _, file in ipairs(fs.list("/photos")) do
if fs.isDir("/photos/" .. file) then
uarch.addFile("/photos" .. file, file);
end
end

uarch.saveArchive();

License:
Because of a outdated project stolen by Anonymous (click there to see the topic) without any permission (and also my fault because I did not put a license), this API is under MIT license (click here for license details). You can freely edit, modify, share with your friends this program; but do not forget to take credit to me if you are going to use this in a program or a operating system.

Thanks for reading my little post. I hope that you will find it useful. Please take some time to write your impressions and what needs to be added.

Have a nice day, Redall.



#264028 "tree" program for ComputerCraft

Posted by Cross_Sans on 25 January 2017 - 03:37 PM in APIs and Utilities

Interresting, this could be useful if the program has a filter (to display only a certain list of file via a pattern...).



#264066 "tree" program for ComputerCraft

Posted by Cross_Sans on 26 January 2017 - 03:48 PM in APIs and Utilities

View PostCrazedProgrammer, on 25 January 2017 - 11:07 PM, said:

...

Okay. Anyway, useful program.



#264067 cLinux [now with OPTIONAL Desktop Enviroment] [Bye CraftOS, kappa]

Posted by Cross_Sans on 26 January 2017 - 03:50 PM in Operating Systems

View PostAnavrins, on 25 January 2017 - 04:22 PM, said:

View PostRedall, on 25 January 2017 - 02:01 PM, said:

Why the LL command does not exists ?
And what does that command do?
Edit: if you're talking about the ls -l alias, that's simply because both an alias program, nor ls -l has been implemented yet.

Yes, this is the ls -l linked to ll, that should be added to the aliases (because I always use ll).



#264068 make v2.1 - Lua pre-processor for ComputerCraft

Posted by Cross_Sans on 26 January 2017 - 03:57 PM in APIs and Utilities

After realizating that this program transforms plain lua to byte code, this program has potential !

Good work :).



#264077 Claire (screenshot) - A hexadecimal programming language

Posted by Cross_Sans on 26 January 2017 - 05:41 PM in Media

This is just a screenshot of a program written in Claire and its output:
Posted Image
That is it, a preview of a project in development.



#264079 What OS do you use?

Posted by Cross_Sans on 26 January 2017 - 05:52 PM in General

View PostJiloacom, on 25 January 2017 - 11:12 PM, said:

View PostH4X0RZ, on 25 January 2017 - 09:40 PM, said:

View PostJiloacom, on 24 January 2017 - 03:19 AM, said:

Windows 7, because I don't like Linux but I don't like Windows 10.

Why do you dislike Linux and Win 10, but like Win 7? I know that it's your own opinion, but it just doesn't make that much sense to me :/

Because with Linux, you have to use emulators if you want Windows only programs to work, but with Windows 10, I feel like I'm using a tablet AND compatibility with Windows programs are still broken. Windows 7 still works with games from the 90's while looking decent in the process, plus I already own it and have it installed.

I personally did not encounter any problems with the Wine emulator on openSUSE 43.1 Leap which I am using currently. It's almost stable. It always runs correctly my Windows applications (paint.NET [with Mono], Notepad++...). I destest Windows 10 (Anniversary Update or not), because it is not stable, Cortana always want to connect with the useless Microsoft Account, and it is not working with old applications I have currently on a old Windows XP computer.

(PS: I use CraftOS in-game :P )



#264080 cLinux [now with OPTIONAL Desktop Enviroment] [Bye CraftOS, kappa]

Posted by Cross_Sans on 26 January 2017 - 05:56 PM in Operating Systems

View PostPiorjade, on 26 January 2017 - 04:14 PM, said:

Didn't think about alias lol.

Though I might consider implementing something like .bashrc to set aliases at starting a terminal up.

Aaaaand of course alias itself.

Btw ls -l is indeed an interesting idea!


Though I'm currently struggling to learn Java and C# at the same time.... yeah... maybe I should try to learn one language at a time.

Never learn two languages at the same time. You could mess it up all of your knowledge.
Otherwise, it could be a great idea to implement ~/bashrc, this would be useful.



#264081 Does any Linux user experience that too?

Posted by Cross_Sans on 26 January 2017 - 06:05 PM in General

View PostEldidiStroyrr, on 19 September 2016 - 10:42 PM, said:

I'd recommend just downloading Oracle Java. Here's an article that will help you with that.

Oracle Java for Linux is not recommended. Using openjdk is much better and faster.

View PostPiorjade, on 19 September 2016 - 09:09 PM, said:

...

I think that CCEmuRedux is always re-paiting the window, causing in a big amount of lags.



#264086 CraftOS 2.0 - Dan's Secret Project

Posted by Cross_Sans on 26 January 2017 - 07:33 PM in General

View PostMindenCucc, on 19 May 2015 - 07:27 PM, said:

It looks like graphics.com ported to ComputerCraft :P graphics.setMode(19)? :D

I also think of :3



#264087 CraftOS 2.0 - Dan's Secret Project

Posted by Cross_Sans on 26 January 2017 - 07:41 PM in General

The "CraftOS 2.0" of this project is for game development. I am really sure of that.
The font of this project is also thinking me of Apple IIgs font.



#264119 FLCF - Fast Lightweight Compressed File

Posted by Cross_Sans on 27 January 2017 - 11:21 AM in APIs and Utilities

View PostBomb Bloke, on 27 January 2017 - 01:05 AM, said:

Er um I don't see the part where it compresses anything?

Yes, it not compress the data, but the files into a single file. But I plan to compress data when more people will be interested in this. And yes, I use textutils.serialise, but I will change that soon too. I was bored, so I created this API.



#264128 Claire (screenshot) - A hexadecimal programming language

Posted by Cross_Sans on 27 January 2017 - 04:49 PM in Media

View PostLyqyd, on 27 January 2017 - 03:20 PM, said:

Moved to Media.

Thank you for moving this topic to the appropriate section.



#264129 Does any Linux user experience that too?

Posted by Cross_Sans on 27 January 2017 - 04:50 PM in General

View PostPiorjade, on 27 January 2017 - 04:45 PM, said:

View PostRedall, on 26 January 2017 - 06:05 PM, said:

View PostEldidiStroyrr, on 19 September 2016 - 10:42 PM, said:

I'd recommend just downloading Oracle Java. Here's an article that will help you with that.

Oracle Java for Linux is not recommended. Using openjdk is much better and faster.

View PostPiorjade, on 19 September 2016 - 09:09 PM, said:

...

I think that CCEmuRedux is always re-paiting the window, causing in a big amount of lags.

I think I already wrote that, but just in case: Minecraft does these lags too and I think that OpenGL is causing that too.

Yup.



#264130 [Language] Valerie

Posted by Cross_Sans on 27 January 2017 - 04:59 PM in Media

This looks really great.



#264134 What OS do you use?

Posted by Cross_Sans on 27 January 2017 - 06:14 PM in General

View PostPiorjade, on 27 January 2017 - 05:10 PM, said:

View PostRedall, on 26 January 2017 - 05:52 PM, said:

View PostJiloacom, on 25 January 2017 - 11:12 PM, said:

View PostH4X0RZ, on 25 January 2017 - 09:40 PM, said:

View PostJiloacom, on 24 January 2017 - 03:19 AM, said:

Windows 7, because I don't like Linux but I don't like Windows 10.
Why do you dislike Linux and Win 10, but like Win 7? I know that it's your own opinion, but it just doesn't make that much sense to me :/
Because with Linux, you have to use emulators if you want Windows only programs to work, but with Windows 10, I feel like I'm using a tablet AND compatibility with Windows programs are still broken. Windows 7 still works with games from the 90's while looking decent in the process, plus I already own it and have it installed.
I personally did not encounter any problems with the Wine emulator on openSUSE 43.1 Leap which I am using currently. It's almost stable. It always runs correctly my Windows applications (paint.NET [with Mono], Notepad++...). I destest Windows 10 (Anniversary Update or not), because it is not stable, Cortana always want to connect with the useless Microsoft Account, and it is not working with old applications I have currently on a old Windows XP computer.
(PS: I use CraftOS in-game :P/> )
Wow you're lucky with that Windows 10 Anniversary Edition.
Mine always gave me a BSOD after 5 min of uptime, no matter what I was doing.

Windows 10 is crap, and will still be.



#264135 The Office

Posted by Cross_Sans on 27 January 2017 - 06:15 PM in Media

Huh ?



#264160 What OS do you use?

Posted by Cross_Sans on 28 January 2017 - 10:05 AM in General

View Posthouseofkraft, on 27 January 2017 - 10:24 PM, said:

I have Windows 10 Anniversary Update and I really like it. It is completely stable, never had an issue with it (except activation, worked in a few days) and it never failed me. I use it for playing games, coding, and other things. I really like having Windows 10 on my computer.

You know that Windows 10 (Anniversary Update) watches your personal data ?
Sources:
http://www.mirror.co...ou-fans-6187498
http://www.newsweek....ery-move-358952
http://www.makeuseof...tching-worried/
http://www.zerohedge...ging-everything

If you created an Microsoft Account, this will happen:
<< From the moment an account is created, Microsoft begins watching. The company saves customers’ basic information—name, contact details, passwords, demographic data and credit card specifics —but it also digs a bit deeper >>