-
Support @QUE.COM replied to the topic IDE Cloud in the forum 48 – Programming 3 days, 11 hours ago
Added to the list.
https://www.vscodecloud.com/ – I love working using Visual Studio, this is my first option.
And these two cloud IDE. -
Support @QUE.COM wrote a new post, TrickBot Malware – advanced Trojan using spearphishing campaigns 1 month ago
The Cybersecurity and Infrastructure Security Agency (CISA) and Federal Bureau of Investigation (FBI) have observed continued targeting through spearphishing campaigns using TrickBot malware in North America. A […]
-
Support @QUE.COM replied to the topic Making a website using Vue and Steem in the forum 46 – Website 1 month, 2 weeks ago
Another guide using steemjs, foreign language but the video should be enough to learn.
-
Support @QUE.COM started the topic Setting Up a IPFS Server in the forum 46 – Website 1 month, 2 weeks ago
Guide provided by CloudFlare.
-
Support @QUE.COM replied to the topic Git – Keeping your code up to date! in the forum 48 – Programming 1 month, 2 weeks ago
// I cloned nitrous
git clone https://github.com/hive-engine/nitrous.git
// Checkout branch for PESOS
git checkout scotty_pesos//configured the server, tested.
//created new branch scotty_pesos_v2 with all changes.
git checkout -b scotty_pesos_v2//add my nitrous forked so I can update.
git remote add nitrous…[Read more] -
Support @QUE.COM replied to the topic Call of Duty in the forum 80 – Games 1 month, 2 weeks ago
I have no luck playing the COD – Zombie since I purchased the Outbreak FREE week.
Should be live from Feb 25 to March 5.How about you?
-
Support @QUE.COM wrote a new post, Malwa – Malware Analysis 1 month, 2 weeks ago
New to Malware Analysis or Malware reverse engineering, and still looking for tools to use. I’ve gather some of the well known malware analysis tools available today, and if you are using one that is listed below […]
-
Support @QUE.COM started the topic Checking the integrity of download. in the forum 48 – Programming 1 month, 2 weeks ago
Website provides a hash value of download so you can verify it.
In Windows, use this command.
Open command prompt.
CertUtil -hashfile C:pathtofile SHA256In Linux.
sha256sum /path/to/fileIn Mac.
shasum -a 256 /path/to/file -
Support @QUE.COM replied to the topic Making a website using Vue and Steem in the forum 46 – Website 1 month, 3 weeks ago
Comparison of JavaScript frameworks
-
Support @QUE.COM replied to the topic Making a website using Vue and Steem in the forum 46 – Website 1 month, 3 weeks ago
-
Support @QUE.COM started the topic Making a website using Vue and Steem in the forum 46 – Website 1 month, 3 weeks ago
Useful references to start building your own website.
Build social media platform with the Steem Blockchain #1 — Vue.js, Storybook.js and Steem.js
View at Medium.com(Part 1) Build Steem blockchain application with Vue.js —…[Read more]
-
Support @QUE.COM wrote a new post, How Can Companies Manage Their Data Optimally While Growing? 1 month, 3 weeks ago
In today’s digitized, information-driven world, data is the new currency. According to many experts, data and information are the single most important thing that can drive a company towards its desired goal. H […]
-
Support @QUE.COM wrote a new post, SwapToken.com – is live. 1 month, 3 weeks ago
From our very simple SwapToken.com v1.0 website to our latest upgrade using a content management system.
To support our business growth we added cool features highlighted below.
Decentralized Exchange […]
-
Support @QUE.COM wrote a new post, How to Get a Medical Card in Utah 2 months ago
Most parts of the world are becoming open-minded and accepting medical marijuana as a legitimate treatment plan for some conditions. The state of Utah is one of the places that has legalized the use of medical […]
-
Support @QUE.COM replied to the topic Debugging – GDB Tutorial in the forum 48 – Programming 2 months ago
1. gcc -o example example.c // compile your program
2. gdb ./example // run GNU Debug
3. (gdb) disas main // run disassembly main
take note of the address, this is for 64bit.Now for 32bits compile code.
gcc -o example -fno-stack-protector -m32 -z execstack example.c // not working
gcc -o example -m32 example.c
Command: gcc -m32 geek.c -o…[Read more] -
Support @QUE.COM replied to the topic Play Flappy Bird – Leaderboard. in the forum 80 – Games 2 months ago
Nice
-
Support @QUE.COM replied to the topic Debugging – GDB Tutorial in the forum 48 – Programming 2 months ago
Another good tutorial using GDB program.
NOTE: If this tutorial is not working it is likely that you have aslr enabled. To disable it run the following command in your terminal
echo 0 | sudo tee /proc/sys/kernel/randomize_va_space
When you are finished I strongly recommend you turn it back on with the…[Read more] -
Support @QUE.COM replied to the topic Debugging – GDB Tutorial in the forum 48 – Programming 2 months ago
Additional resources.
http://www.brendangregg.com/blog/2016-08-09/gdb-example-ncurses.html (GDB)
http://phrack.org/issues/49/14.html (Buffer Overflow Concepts)
https://www.cprogramming.com/gdb.html (GDB)https://www.hacksplaining.com ( For SQL injection / Javascript / XSS/ CSRF Vulnerabilities)
-
Support @QUE.COM replied to the topic Git – Keeping your code up to date! in the forum 48 – Programming 2 months, 1 week ago
// delete branch locally
git branch -d localBranchName// delete branch remotely
git push origin –delete remoteBranchName -
Support @QUE.COM started the topic Debugging – GDB Tutorial in the forum 48 – Programming 2 months, 1 week ago
You need to know how to debug your program to make it easier to correct any bugs. Here’s a tutorial video using GDB or GNU Debugger tool.
- Load More