Wizdeen's Posts
Nairaland Forum › Wizdeen's Profile › Wizdeen's Posts
1 2 3 4 5 6 7 8 9 10 11 12 13 (of 13 pages)
op you and your mouth infection again, so because people here bashed you on the other thread you decided to start this one abi and expect different result.Go and See an expert for diagnosis and stop disturbing our timeline. you know what gave you the infection.Kiss ko, kiss ni |
Hey house, i just generated my transaction slip but i have to ask do i need to go a jamb accredited centre to pay and print or should i do it all online by myself, a cafe i asked here in abuja is asking for 7k. p.s if you did it all by yourself, kindly reply.Thanks , and hello to my fellow ABUSITES ![]() |
okwabayi:mr , a lot of blockchain exchanges are being hacked this days,check hackernews for more info |
am in abuja,can i still participate without the jumia vendor registration? |
Livebygrace:you can apply for Grow with google, it should still be on, google it |
I am not surprised when people say that they have made millions from stock trading. What I feel absurd is their claims to have made that profit in few months or even a year. The stock traders who solely depend on the stock trading markets for their bread and butter are not made in a day. It requires a lot of hard work and dedication to learn about stock trading. You will find people blabbering about huge profits. They would trick you into believing that stock trading is easy, and anyone can do it. I completely disagree with that statement and reject those ideologies. One needs to start learning stock and related theories from scratch and should be ready to lose. Setting a goal for maximum losses would help you decide where to start from once you start trading. And, online forums would help you understand the various nuances related to stock trading. The profound knowledge is not a piece of cake to grab. You will always have to stack your learning with the new strategies and keep learning until you trade. This is the only way to survive as a stock trader. Here are few online forums that would help you stay tuned with the basics and would also provide the guidance for becoming a successful trader. 1. Trade2win.com: This stock trading forum can get you all the answers to your unresolved questions. You can create treads and can join the discussion. With a lot of active users, this place is where you will love to park your thoughts and ask for other suggestions. They do have great articles on different topics related to stock trading. You can also check the reviews and above all, you can always have someone’s back. 2. Hashtag investing : It’s my personal favourite and I have not been able to find anything about this forum that did not like. This forum gets you everything that you would ever need to learn about stocks. You can check the threads, create your own, join the discussion, chat with experts and a plenty of other things related to stocks. 3. BabyPips.com Forex Trading Forum: If you would like to consider a forum that is not overcrowded but have a decent number of traders sharing their precious views, then this is what you need. You can find this forum highly engaging and keeping its users busy while providing the best lessons on stock trading. Starting from forex, they provide insight on evert important topics. There are users who have been on this forum from long back. This makes it a trustworthy engagement. 4. Traders Support Club - Home: If you want to rush into the premium league, join this forum managed by Ali Crooks. It has history of turning the so called non-profitable traders into full-time profitable traders. With huge fan following, this community would help you bounce forward with leaps and bounds. 5. TheLion.com - Forum : Busiest and most interesting forums of all. The active users keep the fire going on. You can learn a lot from this website. There is a lot that it offers. Once you will start using it, you will get to reap the benefits. You can even upload articles that you may feel can help others while trading and learning about stocks. 6. futures io: This forum offers chat facilities as well. Mike, the owner of the forum dedicates this forum to those who want to know about the market strategies and other information related to stock trading. 7. Penny Stocks Alerts : Stock Chat Room: Although it’s a good choice, keeping your instincts on job will help stay away from the selfish users. Especially designed as a chat forum, this website offers a lot of relevant information. But, you may find sometimes people pitching the stocks they own. 8. Discussion Groups - Stocks : You get to know about the hot stocks trending on a daily basis. Starting a research using these stocks could help you learn a lot about the stock trading. Beginners have been seen talking a lot about this forum. A great place to learn and know what cooking inside the niche. 9. Stockaholics.com: This is again a forum with chat facilities. You can expect a lot from this forum as well. Already able to pass the test of times, this forum is very popular among the stock traders. 10. Online Traders' Forum: There are not many forums that actually help traders. But, this one again is in a separate list of those that you can depend on for learning about stocks. The website is clean and easy to navigate through. You can find the list of suggested books and the courses that you can take up for leaning about stock trading in depth. 11. StockRants Stock Forum: This forum combines with its stock chat is an awesome option for those looking for quick answers. Featured with a lot more, this forum is a great place to connect with traders with huge experiences. 12. Financial Trader and Stock Market Forum 13. Traders Laboratory 14. Day Trading Forum 15. Elite Trader 16. investFeed 17. Forex Trading Information 18. Finasko - Stock Market, Personal Finance, Cryptocurrency & Investment Community 19.Nairaland-i can not forget our own nairaland too, its quite informative. if you know, you know. The Conclusion You can certainly find various other ways to learn about stock trading. However, talking to like minded people always have an upper hand over other options. So, choose wisely and keep trading. |
Seun:Our Oga at The top has said it all. Religion is Overrated ![]() |
Livebygrace:i applied on facebook, through a Developer circle group am in, but application is closed now |
ayam in, abeg where can i park my VW beetle |
antonreal:Well lets say i got 250usd for each person that registered through me aside from the 500usd bonus, its still meant to be used for trades exclusively |
In this article I am going to share some bash scripting commands and regular expressions which I find useful in password cracking. Most of the time, we find hashes to crack via shared pastes websites (the most popular of them being Pastebin.) Isolating the hashes by hand can be a time consuming process; for that reason we are going to use regular expressions to make our life easier! Extract md5 hashes # egrep -oE '(^|[^a-fA-F0-9])[a-fA-F0-9]{32}([^a-fA-F0-9]|$)' *.txt | egrep -o '[a-fA-F0-9]{32}' > md5-hashes.txt An alternative could be with sed # sed -rn 's/.*[^a-fA-F0-9]([a-fA-F0-9]{32})[^a-fA-F0-9].*/1/p' *.txt > md5-hashes Note: The above regexes can be used for SHA1, SHA256 and other unsalted hashes represented in hex. The only thing you have to do is change the '{32}' to the corresponding length for your desired hash-type. Extract valid MySQL-Old hashes # grep -e "[0-7][0-9a-f]{7}[0-7][0-9a-f]{7}" *.txt > mysql-old-hashes.txt Extract blowfish hashes # grep -e "$2a\$8\$(.){75}" *.txt > blowfish-hashes.txt Extract Joomla hashes # egrep -o "([0-9a-zA-Z]{32}) w{16,32})" *.txt > joomla.txtExtract VBulletin hashes # egrep -o "([0-9a-zA-Z]{32}) S{3,32})" *.txt > vbulletin.txtExtraxt phpBB3-MD5 # egrep -o '$H$S{31}' *.txt > phpBB3-md5.txt Extract Wordpress-MD5 # egrep -o '$P$S{31}' *.txt > wordpress-md5.txt Extract Drupal 7 # egrep -o '$S$S{52}' *.txt > drupal-7.txt Extract old Unix-md5 # egrep -o '$1$w{8}S{22}' *.txt > md5-unix-old.txt Extract md5-apr1 # egrep -o '$apr1$w{8}S{22}' *.txt > md5-apr1.txt Extract sha512crypt, SHA512(Unix) # egrep -o '$6$w{8}S{86}' *.txt > sha512crypt.txt Extract e-mails from text files # grep -E -o "\b[a-zA-Z0-9.#?$*_-]+@[a-zA-Z0-9.#?$*_-]+.[a-zA-Z0-9.-]+\b" *.txt > e-mails.txt Extract HTTP URLs from text files # grep http | grep -shoP 'http.*?[" >]' *.txt > http-urls.txt For extracting HTTPS, FTP and other URL format use # grep -E '(((https|ftp|gopher)|mailto)[.:][^ >" ]*|www.[-a-z0-9.]+)[^ .,; >"> :]' *.txt > urls.txtNote: if grep returns "Binary file (standard input) matches" use the following approaches # tr '[00-1113-37177-377]' '.' < *.log | grep -E "Your_Regex" OR # cat -v *.log | egrep -o "Your_Regex" Extract Floating point numbers # grep -E -o "^[-+]?[0-9]*.?[0-9]+([eE][-+]?[0-9]+)?$" *.txt > floats.txt Extract credit card data Visa # grep -E -o "4[0-9]{3}[ -]?[0-9]{4}[ -]?[0-9]{4}[ -]?[0-9]{4}" *.txt > visa.txt MasterCard # grep -E -o "5[0-9]{3}[ -]?[0-9]{4}[ -]?[0-9]{4}[ -]?[0-9]{4}" *.txt > mastercard.txt American Express # grep -E -o "\b3[47][0-9]{13}\b" *.txt > american-express.txt Diners Club # grep -E -o "\b3(?:0[0-5]|[68][0-9])[0-9]{11}\b" *.txt > diners.txt Discover # grep -E -o "6011[ -]?[0-9]{4}[ -]?[0-9]{4}[ -]?[0-9]{4}" *.txt > discover.txt JCB # grep -E -o "\b(?:2131|1800|35d{3})d{11}\b" *.txt > jcb.txt AMEX # grep -E -o "3[47][0-9]{2}[ -]?[0-9]{6}[ -]?[0-9]{5}" *.txt > amex.txt Extract Social Security Number (SSN) # grep -E -o "[0-9]{3}[ -]?[0-9]{2}[ -]?[0-9]{4}" *.txt > ssn.txt Extract Indiana Driver License Number # grep -E -o "[0-9]{4}[ -]?[0-9]{2}[ -]?[0-9]{4}" *.txt > indiana-dln.txt Extract US Passport Cards # grep -E -o "C0[0-9]{7}" *.txt > us-pass-card.txt Extract US Passport Number # grep -E -o "[23][0-9]{8}" *.txt > us-pass-num.txt Extract US Phone Numberss # grep -Po 'd{3}[s-_]?d{3}[s-_]?d{4}' *.txt > us-phones.txt Extract ISBN Numbers # egrep -a -o "\bISBN(?:-1[03])?:? (?=[0-9X]{10}$|(?=(?:[0-9]+[- ]){3})[- 0-9X]{13}$|97[89][0-9]{10}$|(?=(?:[0-9]+[- ]){4})[- 0-9]{17}$)(?:97[89][- ]?)?[0-9]{1,5}[- ]?[0-9]+[- ]?[0-9]+[- ]?[0-9X]\b" *.txt > isbn.txt WordList Manipulation Remove the space character with sed # sed -i 's/ //g' file.txt OR # egrep -v "^[[:space:]]*$" file.txt Remove the last space character with sed # sed -i s/.$// file.txt Sorting Wordlists by Length # awk '{print length, $0}' rockyou.txt | sort -n | cut -d " " -f2- > rockyou_length-list.txt Convert uppercase to lowercase and the opposite # tr [A-Z] [a-z] < file.txt > lower-case.txt # tr [a-z] [A-Z] < file.txt > upper-case.txt Remove blank lines with sed # sed -i '/^$/d' List.txt Remove defined character with sed # sed -i "s/'//" file.txt Delete a string with sed # echo 'This is a foo test' | sed -e 's/<foo>//g' Replace characters with tr # tr '@' '#' < emails.txt OR # sed 's/@/#' file.txt Print specific columns with awk # awk -F "," '{print $3}' infile.csv > outfile.csv OR # cut -d "," -f 3 infile.csv > outfile.csv Note: if you want to isolate all columns after column 3 use # cut -d "," -f 3- infile.csv > outfile.csv Generate Random Passwords with urandom # tr -dc 'a-zA-Z0-9._!@#$%^&*()' < /dev/urandom | fold -w 8 | head -n 500000 > wordlist.txt # tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?=' < /dev/urandom | fold -w 12 | head -n 4 # base64 /dev/urandom | tr -d '[^:alnum:]' | cut -c1-10 | head -2 # tr -dc 'a-zA-Z0-9' < /dev/urandom | fold -w 10 | head -n 4 # tr -dc 'a-zA-Z0-9-_!@#$%^&*()_+{}|:<>?=' < /dev/urandom | fold -w 12 | head -n 4 | grep -i '[!@#$%^&*()_+{}|:<>?=]' # tr -dc '[:print:]' < /dev/urandom | fold -w 10| head -n 10 # tr -cd '[:alnum:]' < /dev/urandom | fold -w30 | head -n2 Remove Parenthesis with tr # tr -d '()' < in_file > out_file Generate wordlists from your file-names # ls -A | sed 's/regexp/& /g' Process text files when cat is unable to handle strange characters # sed 's/([[:alnum:]]*)[[:space:]]*(.)(..*)/12/' *.txt Generate length based wordlists with awk # awk 'length == 10' file.txt > 10-length.txt Merge two different txt files # paste -d' ' file1.txt file2.txt > new-file.txt Faster sorting # export alias sort='sort --parallel=<number_of_cpu_cores> -S <amount_of_memory>G ' && export LC_ALL='C' && cat file.txt | sort -u > new-file.txt Mac to unix # tr '15' '12' < in_file > out_file Dos to Unix # dos2unix file.txt Unix to Dos # unix2dos file.txt Remove from one file what is in another file # grep -F -v -f file1.txt -w file2.txt > file3.txt Isolate specific line numbers with sed # sed -n '1,100p' test.file > file.out Create Wordlists from PDF files # pdftotext file.pdf file.txt Find the line number of a string inside a file # awk '{ print NR, $0 }' file.txt | grep "string-to-grep" Faster filtering with the silver searcher https://github.com/ggreer/the_silver_searcher For faster searching, use all the above grep regular expressions with the command ag. The following is a proof of concept of its speed: # time ack-grep -o "\b[a-zA-Z0-9.#?$*_-]+@[a-zA-Z0-9.#?$*_-]+.[a-zA-Z0-9.-]+\b" *.txt > /dev/null real 1m2.447s user 1m2.297s sys 0m0.645s # time egrep -o "\b[a-zA-Z0-9.#?$*_-]+@[a-zA-Z0-9.#?$*_-]+.[a-zA-Z0-9.-]+\b" *.txt > /dev/null real 0m30.484s user 0m30.292s sys 0m0.310s # time ag -o "\b[a-zA-Z0-9.#?$*_-]+@[a-zA-Z0-9.#?$*_-]+.[a-zA-Z0-9.-]+\b" *.txt > /dev/null real 0m4.908s user 0m4.820s sys 0m0.277s Useful Use of Cat Contrary to what many veteran unix users may believe, this happens to be one of the rare opportunities where using cat can actually make your searches faster. The SilverSearcher utility is (at the time of this writing) not quite as efficient as cat when it comes to reading from file handles. Therefore, you can pipe output from cat into ag to see nearly a 2x real time performance gain: $ time ag -o '(^|[^a-fA-F0-9])[a-fA-F0-9]{32}([^a-fA-F0-9]|$)' *.txt | ag -o '[a-fA-F0-9]{32}' > /dev/null real 0m10.851s user 0m13.069s sys 0m0.092s $ time cat *.txt | ag -o '(^|[^a-fA-F0-9])[a-fA-F0-9]{32}([^a-fA-F0-9]|$)' | ag -o '[a-fA-F0-9]{32}' > /dev/null real 0m6.689s user 0m7.881s sys 0m0.424s https://www.unix-ninja.com/p/A_cheat-sheet_for_password_crackers |
Any challenges guys? Air them out on the slack channel.meanwhile here are are few resourse from the schorlarship challenge library PyTorch Scholarship Challenge Resources Library https://docs.google.com/spreadsheets/d/1HnlcuI3I-d3Cli__RxOgMrxmE3aiZ8Vw5ar14WoPVRo/edit?usp=sharing |
it looks quite sleek, nice speed too, but its total bull shit. the company had to give it out freely as a marketing strategy.it can only fly for ten minutes with a human . its not even effecient as a drone ,lasts less than 30 minutes. and i charge for two hours biko |
hehehehe, Edo boiz i hail oooh ![]() |
Top 6 Reasons Why Blockchain Will Disrupt Your Industry Blockchain technology and cryptocurrency have reached an inflection point for enterprise adoption fueled by the combination of technological advancement and successful pilots for business use cases in financial services, global supply chains, government, healthcare, and many other industries. Enterprise adoption is still in the beginning phases but will ramp up quickly as innovators continue dreaming up more ways to use blockchain to disrupt and reinvent traditional business models. Industry leaders ahead of the curve on testing blockchain solutions have already experienced significant business benefits, including greater transparency, better collaboration, faster traceability, enhanced security, improved operations, and reduced costs. 1. Greater transparency The distributed ledger nature of blockchain technology is enabling more transparent transaction histories. Each participant in the network receives a full copy of the blockchain (as opposed to maintaining individual copies), and they must all agree on the entire data history and each new transaction through consensus, or mutual agreement. If anyone tries to change a previously accepted transaction, the network will immediately recognize the update as invalid and reject it. The majority of the network would have to collude to change even a single transaction record. Thus, data on a blockchain is more accurate, reliable, and transparent than when the data is created through paper-heavy processes. Even though everyone on the network has a full copy of the blockchain, blockchains like Hyperledger are developed with enterprise needs in mind and include built-in securities features that can be set up to only share the information with certain people. 2. Better collaboration Current enterprise solutions involve localized ERP or other information systems. Localized data quickly becomes fragmented in complex global supply chains. Each link in the supply chain updates its own database on its own timetable which causes the separate copies to drift out of sync, creating inconsistent data that is very difficult to track or trace. In contrast, blockchain provides an accurate, single instance of encrypted data that is always up-to-date and online, eliminating conflicting information created by data silos and system fragmentation. Because each network participant has a full copy of the blockchain, the network will never experience downtime. Always up-to-date data creates the shared efficiencies in the entire network, including simplified supply chain management and financial reporting. 3. Faster traceability Any company with products that are a part of a complex supply chain understands how difficult it can be to trace an item back to its origin. Using the blockchain to record exchanges of goods creates an audit trail that offers instant visibility into the entire supply chain from origin to destination and every stop in between, reducing the need to rely on third parties to share information. This historical transaction data also can be used to prevent fraud and verify the authenticity of assets. 4. Enhanced security The distributed, immutable blockchain technology offers inherent security advantages over traditional record-keeping systems. Every transaction must be agreed upon before its recorded. Once recorded, every process, every agreement, every payment, and every task have a digital signature and record that can be validated and identified. This provides an unequivocal source of truth for streamlined auditing, records management, and compliance processes. The network itself is secured by a consensus mechanism for verification. This effectively makes it impossible to for bad actors to launch attacks on networks at scale. Multiple participants with a copy of the blockchain ensure that the network is resilient and guarantees permanent up-time. 5. Improved operations Any business function that relies on traditional, paper-heavy processes is prone to human error and often requires validation either internally or externally. Blockchain technology offers widespread application across nearly every business function to add trust and transparency to any transaction and disrupt current back-office processes through automation. This facilitates transactions being completed must faster and more efficiently. For example, because the blockchain serves as a single digital ledger shared by all participants, the need to reconcile multiple ledgers among several parties is eliminated. Since everyone is the network has access to the same information, fewer intermediaries are needed to resolve disputes over conflicting data. 6. Reduced costs Reducing costs is a priority for any business. On top of cost reduction through automation, blockchain can also reduce the need for many third-party services. Because trust and transparency are inherent in every transaction, businesses can stop relying on third parties to settle trade disputes and instead trust the data on the blockchain. Businesses can also significantly reduce the scope of internal and external audits since data is verified in real time before being recorded. Blockchain Disruption in Your Industry The application of blockchain’s benefits extend to any industry. The decentralized nature of the ledger makes it impossible for a single party to control the information or manipulate the data to their advantage, and the immutable nature of the blockchain makes it nearly impossible to compromise. The implementation of smart contracts and IoT connected devices unlock even more possibilities. For example, parties on the blockchain can create rules to accept delivery based on timing and shipment condition. If the stated rules are not met, i.e. the delivery is late or goods arrive damaged, the delivery will be rejected. https://levelup.gitconnected.com/top-6-reasons-why-blockchain-will-disrupt-your-industry-e05bd82c3d8b |
krattoss:ill take your word for it,i might even come to owerri, who knows, meanwhile you can enjoy some music from that LG home theater while waiting |
krattoss:okay, i did warn you |
krattoss:OKAFOR DARLINGTON or whatever you are called, be carefull, i can ruin your life right now with a keyboard, choose your next words wisely. Lalasticlala, im sorry for this, but this fool is trying to test me |
krattoss:shut up bitch, be Humble, Sit down |
@ op, this is a reap off, you could get sued for this.trying to make money off a book you made nil contribution to.if you really wanted to help out, you wont be asking for fees.the book is freely available on the net. if you need it go to https://github.com/transidai1705/javascript-ebooks/blob/master/%5BThe%20Web%20Application%20Hacker%27s%20Handbook%20Finding%20and%20Exploiting%20Security%20Flaws%20Kindle%20Edition%20by%20Dafydd%20Stuttard%20-%202011%5D.pdf |
guys Any code for Nairabet ![]() |
teewhydope:betslip id please?? |
antonreal:the bonus cannot be withdrawn but profits made from the bonus can be withdrawn. go to https://secure.instaforex.com/ru/agreements/startupbonus.html to find out more |
Hey lovely people, i just got the PyTorch Scholarship Challenge from Facebook 2018/2019. Who else is a recipient ![]()
|
hey all,a recent graduate looking to diversify his means of generating passive income is interested in investing in the stock market.how would you advice him to go about it? |
whats wrong with it? |


w{16,32})" *.txt > joomla.txt
:]' *.txt > urls.txt


