url
stringlengths
13
4.35k
tag
stringclasses
1 value
text
stringlengths
109
628k
file_path
stringlengths
109
155
dump
stringclasses
96 values
file_size_in_byte
int64
112
630k
line_count
int64
1
3.76k
https://docs.collectiveaccess.org/index.php?title=Data_Import/en&oldid=2679
code
<languages/> CollectiveAccess supports batch imports of data through the user interface. Like the Batch Media Importer, this is a tool to be used with caution so as to avoid scattering faulty data throughout your system. In order to use the Data Importer, you should first have a basic understanding of Data Mapping; you must have a template in place to guide your import and tell the data where to go. For a simpler look at the entire Data Import process, visit Data Import: Creating and Running a Mapping. The import template determines which column in your data source maps to which metadata element in your CollectiveAccess system. Uploading this mapping, or "importer," is the first step towards pulling a large set of data in to your new database. To begin, navigate to Import --> Data in the global navigation bar. To upload your importer (mapping), click "+ add importers." You will then see a dotted outline around the words "Drag importer worksheets here to add or update." Simply drag the excel worksheet containing your data map from your computer into the center of this box, and wait for the upload process to complete. Once uploaded, the importer (or importers) will appear in a list on your screen. To import data, you can either click on the green arrow to the right of the Importer's name, or you can click "Run Import" on the left-hand navigation. On the "Run Import" screen, you must choose the appropriate (previously uploaded) importer, and the format (Excel, FMPro DSOResult, Inmagic XML, MARC, or MySQL) of your data source. Then you can attach the file containing your data. Once everything is set, click "Execute data import" to finish the process.
s3://commoncrawl/crawl-data/CC-MAIN-2022-21/segments/1652662522309.14/warc/CC-MAIN-20220518183254-20220518213254-00445.warc.gz
CC-MAIN-2022-21
1,674
6
https://eudatasharing.eu/technical-aspects/api-guidance
code
This is the first instalment of a series of articles providing you with technical guidance on API technology – or “application programming interface”. This content will be published according to two formulas: - Here, as episodic content, one new instalment every about two weeks, and - After the series’ completion, in early January, as a single document that you can download and read offline. This unabridged version will also be available in French and German. Each instalment will also be followed by e-learning modules on the same topics available here, to make them come alive and more memorable. The themes we are going to touch extend across the full spectrum of what is useful to know, from the basics to the more advanced topics. We will start with a general introduction, providing general context, objectives and plans for further development. This will be followed by a general overview of API technologies – introducing the basics about API construction. We are going then to go deeper in detail on a few mainstreams ways of “doing API’s”: RESTful interfaces first, and the more modern GraphQL later. Finally – we are going to cover API security design, and how to document API’s, describing all requirements for a comprehensive documentation of an API and its behaviour. So, stay tuned and don’t forget to discuss the materials by commenting on each instalment, or with your peers in our forum. 1. Overview of API technologies – Part 1 of 2 As software are complex systems it is important to structure software into manageable pieces. The basic units are modules and libraries in programming. Later larger, loosely coupled components have been implemented as distributed systems. The communication between the distributed components was still the abstraction of calling procedures of a foreign module using “remote procedure calls” (RPC) over the network. These RPCs have been mostly restricted to a homogeneous programming environment and specific framework, e.g. “Java RMI”. As the software systems became bigger and bigger the distributed components evolved into independent services and the “Service-oriented Architecture” (SOA) paradigm became popular. Each service has a clear functional focus and responsibility. This aspect became more sharpened with the appearance of the second generation of SOA pushed by the “Domain Driven Design”1 (DDD) and “microservices”2, where the border of a service is defined primarily by its core domain, its well-defined interfaces (API) and the organizational responsibility through a fully accountable team for a service. The evolution from simply distributed components to full-blown services strengthen the significance of the connecting APIs and has shown that different kinds of APIs are needed from a technical point of view. To explain this, see figure 1, showing the paradigm of “Self-Contained Systems” (SCS). Figure 1: Self-Contained Systems Based on the results of the “Domain Driven Design” one or more micro services implement a domain as a “service” with clear bounds. The service can be bundled with the data it manages. A service provides one or more APIs to other services. Especially, a service can be bundled with a micro frontend to provide a GUI to the users. A bundle of logic, data and frontend is called “Self-contained System”3 (SCS). For a domain-based service or SCS one team should be completely responsible. The figure points out that there are different ways services and SCSs can communicate to each other. A weblink in the GUI can be used to jump a new business transaction in the user interface, e.g. showing data, creating a new item and much more. The classical approach is that services communicate using a REST interface. But there can also signal events in an asynchronous mode to each other. In addition to a fixed function call between services a GraphQL interface can be provided to a frontend or other services to read and update data in a flexible manner. All these interface types are explained in detail in the later sections. To make sure that such a complex system will be maintainable and the services reusable in the long term all these interfaces must be well-defined. Well-defined means that an API must have a comprehensive formal specification as well as a comprehensive documentation, which were complete, understandable, consistent and correct have a comprehensive formal specification as well as a comprehensive documentation, where both must be compliant with the given architectural policies and be usable by third parties hassle-free and have a complete set of written binding requirements, which don’t leave spaces for interpretation Before, there exist only a few programming languages and runtime environments. But nowadays there is a zoo of programming languages and runtime ecosystems. The viewpoint is to use the best tool to solve a problem. So, the programming world became polyglot. This evolution demands programming language independent, interoperable, stable and widely adaptable realization of APIs and its clients. How should you proceed to define and implement an API? It is worth remembering that an API is effectively an interface designed to support the transfer of data between multiple systems or services, irrespective of the programming languages that these systems use. Therefore, interoperability, i.e. the ability to work together with a variety of systems and programming languages, should always rank highly. In practice, this means that well-designed APIs should ensure that systems involved in the transfer of data can use different programming languages. You can best achieve this by programming APIs with a neutral schema definition language, e.g. the “Web Service Description Language”4 (WSDL) for WS-SOAP-based APIs. But while this approach is undoubtedly preferable and dogmatically superior, it is also fraud with practical difficulties. In reality, most APIs are not defined by following an "API first" approach 5 that designs APIs in agnostic terms. Instead, specifications and documentations are frequently derived from the source code of the framework used by the service or system to which the API is attached; e.g. a Java class definition. At first, this is a quicker approach to defining suitable APIs for the originating system, but it also means that these APIs are programming language and framework specific - and often poorly documented. As a result of this unfortunate status quo, there is a strong demand to revert to the "API first" approach - assuming that this will help developers to use APIs more easily and, thus, successfully. Following the "API first" approach means that the API should be created and documented first, using a rich schema definition language to generate the required code (in the preferred language) and to write comprehensive documentation. APIs that follow this principle will eventually be more interoperable - and, thus, will simply be better APIs. In the following paragraphs, we explain and show in detail, how to achieve these goals. 1.1 Basic concepts To understand modern API technologies, we explain in this section some fundamental basic concepts used by the APIs. In the beginning of distributed systems, a programmer has to understand the basic idea of the well-known principle of procedure calls and the idea of server and client to implement a “Remote Procedure Call” over a network. With the idea of the “Web” the “Hypertext Transfer Protocol” (HTTP) and the web links as “Uniform Resource Locator”6 (URL) rise up. The HTTP protocol defines the basic transport layer for modern APIs. It is a text-based protocol, which could be easily read and understood by humans. Besides the basic control of the communication session, it allows client and server to exchange meta-information in the header and the payload in the body within a request / response cycle. The HTTP communication can be secured by encapsulating a communication session with a “Transport Layer Security” (TLS) mechanism. Nowadays HTTPS is a must to ensure that external and even internal users can’t intercept your communication. In general, an URL is simply a universal form of an address on the Internet. In the context of modern APIs, a URL could address entry points and functions of a server or address a (multimedia) resource. An URL could also contain basic parameters used by functions/methods defined in the API. WS-SOAP, Event-Bus and GraphQL are examples for using the URL only for the address of the entry point. WS-REST and Weblinks use the full power of URLs and the HTTP(S) protocol to define the API functionality. 1.1.3 Data representation format Besides the communication protocol and addressing the data representation format of the payload in the body is a core aspect of an API. Basically, you can use HTML forms for structured data, plain text or (Base64) encoded data (Binary Large Object, Blob). In practice there are several data representation formats in use for deeply structured data: XML (Extensible Markup Language7), a strongly typed language to represent structured data using tags and attributes, e.g. <message lang=”de”>Hello</message>. YAML (YAML Ain’t Markup Language9, a lightweight object notation using indented lines and properties, e.g. While XML is principally used by the WS-SOAP approach, uses WS-REST and GraphQL primarily the more lightweight approaches JSON and YAML. 1.1.4 Predefined methods The old-fashioned RPC approach provides procedures and functions in a very generic way, e.g. a function just adding to numbers. In contrast, business services handle more complex business objects. In contrast, the origin of the “Web” handles resources (data items, multimedia objects, business objects, …) in a uniform way. Therefore, the HTTP protocol predefines methods on these resources, which should be primarily used to define an API: PUT, PATCH (update) With these concepts in mind let us explore the different types of APIs in the next section. 1.2 API types As shown in figure 1 Microservices and Self-contained Systems are communicating over various kinds of APIs. In the following subsections, we give an overview of the most important API types. The “Simple Object Access Protocol” (SOAP or WS-SOAP) is a standardized protocol10 for remote procedure calls (RPC). RPCs trigger an operation between two systems using the HTTP(S) protocol and the XML data representation. HTTP(S) serves as the underlying transport protocol to access the entry point of a SOAP-service. The message which actually implements the RPC is contained in standardized XML data. SOAP is still widely used, mainly because it serves the framework-specific interoperability requirements of existing applications that follow the "Service-oriented Architecture" (SOA) approach. It is also perceived as beneficial thanks to the huge SOAP-ecosystem of technical components and implementation guidelines. These include, for example, security services and mandatory technology policies that projects should consider. A major challenge of SOAP is that APIs should use an agnostic schema definition language. This is the best starting point to create truly interoperable interface code 11 independent from the framework requirements of the system to which the API is attached. As mentioned earlier, the reality is, however, almost the exact opposite. API schemas will often be generated from the implementation code of a system, e.g. a Java class definition in an implementation (or framework) specific way. XML and SOAP are still very present today, implemented in various existing or legacy interfaces and implementations. But they are also heavyweight technologies that are increasingly replaced by applications employing a RESTful or micro service approach. This API guide focusses on more modern approaches and, therefore, does not explore SOAP in more detail. 1.3 Coming next In the next instalment of this series, we are completing this overview of API technologies before starting going deeper into the detail. We will introduce you to a few mainstreams ways of “doing API’s”: RESTful interfaces first, and the more modern GraphQL later. The overview completes by covering the basic principles of API security design, and how to document them and their behaviour. - 1. A. Avram, F. Marinescu: Domain Driven Design Quickly, see https://www.infoq.com/minibooks/domain-driven-design-quickly/ - 2. M. Fowler: Microservices - a definition of this new architectural term https://www.martinfowler.com/articles/microservices.html - 3. Self-Contained Systems - Assembling software from independent systems, see https://scs-architecture.org/index.html - 4. Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language, see https://www.w3.org/TR/wsdl20/ - 5. API University: Understanding API First Design, see https://www.programmableweb.com/api-university/understanding-api-first-design - 6. Berners-Lee, Tim (21 March 1994). "Uniform Resource Locators (URL): A syntax for the Expression of Access Information on Objects on the Network", see http://www.w3.org/Addressing/URL/url-spec.txt - 7. Extensible Markup Language (XML) 1.0, see https://www.w3.org/TR/REC-xml/ - 8. Introducing JSON, see https://www.json.org/json-en.html - 9. YAML Ain't Markup Language YAML™) Version 1.2, see https://yaml.org/ - 10. SOAP Version 1.2, see https://www.w3.org/TR/soap/ - 11. The mapping of a SOAP specification to a concrete language and framework is not in all cases bijective and simple.
s3://commoncrawl/crawl-data/CC-MAIN-2020-16/segments/1585371821680.80/warc/CC-MAIN-20200408170717-20200408201217-00290.warc.gz
CC-MAIN-2020-16
13,585
51
https://faector.nl/students/events/info/product/778/923
code
Inhouse Day Amsterdam Data Collective We are pleased to invite you to the Inhouse day at Amsterdam Data Collective (ADC), a day-long event that provides a unique opportunity to learn more about our organization and the work we do. The Inhouse day will take place on May 10, from 13:00 to 17:30, at our offices located at Geldersekade 101. The event will feature a range of activities designed to provide an insight into the daily operations of our company, including a welcome and ADC introduction, case introduction, Python training, a case study, and a case presentation. We are also excited to invite you to join us for a post-event Borrel, Pub Quiz & Dinner, starting at 17:30, where you will have the opportunity to network with our team members and other attendees. Please find the provisional schedule of the day below: 13:00 – 13:45 – Welcome & ADC Introduction 4:00 – 14:15 – Case Intro 14:15 – 15:00 – Python Training 15:00 – 17:00 – Case 17:00 – 17:30 – Case Presentation 17:30 – Borrel, Pub Quiz & Dinner We hope to see you there! This event is for bachelor-2 students and higher. Selection will be based on study phase. The application deadline is 7 May at 23:59, we will let you know on 8 May at the latest if you are selected to join!
s3://commoncrawl/crawl-data/CC-MAIN-2023-23/segments/1685224656869.87/warc/CC-MAIN-20230609233952-20230610023952-00690.warc.gz
CC-MAIN-2023-23
1,271
13
https://brolinsoftware.com/PortalProdigy-Markup-Language-for-Designers-1003-489.html
code
THTML- the PortalProdigy Markup Language for Web Designers THTML is an acronym for Template Hyper Text Markup Language. THTML along with PortalProdigy's other new features gives you total design control over your PortalProdigy website. THTML is an extension of the HTML markup language and is used to create template styles for PortalProdigy. Template styles control the visual design of the website. THTML provides tags for inserting content in the template styles and describing how it should be displayed. THTML gives you access to PortalProdigy’s forms, fields, controls, and CSS classes. THTML tags follow the same conventions as HTML tags. The PortalProdigy Server dynamically replaces THTML tags with HTML formatted content to deliver W3C compliant HTML to the user’s browser. Using THTML you can create new designs from scratch as well as create modified versions of the designs that are included with PortalProdigy. You can also use THTML to duplicate the design of an existing website for conversion to PortalProdigy. Click here to view the PortalProdigy Web Designers Guide.
s3://commoncrawl/crawl-data/CC-MAIN-2023-23/segments/1685224655027.51/warc/CC-MAIN-20230608135911-20230608165911-00622.warc.gz
CC-MAIN-2023-23
1,089
5
https://www.nickpan.com/2004/07/15/mywhitep4/
code
YEAH! i got my new PC finally. Now i don’t have to juggle with 100mb worth of empty hard disk space, neither do i need to wait for 10mins for my PC to startup. Alot of people think i’m good at buying a PC, but believe me, i’m really a nitwit at buying PCs, here is how i do it. - Ask a shop to recommend me a PC by telling them what i need the PC for. (to find out the rough amount of money i need to part with) - Ask around for a similar specification and try to get a better price. - Go find the best looking casing and buy it. - Bring the best looking casing to the shop that offers a good price + have an okay reputation according to friends - Go home The specs is as follows: - Intel Pentium 4 2.8C 800Mhz - Abit IS7-E I865PE w/SATA/Audio/GBLAN - TWINMOS 1024MB 3200/400 DDR RAM (512MBx2) - WD800JB 80GB 7200RPM HDD - SONY 1.44MB FDD - Leadtek A360LE FX5700LE 256MB w/TD/8XAGP - SAMSUNG SW-252 52x32x52 CDRW (2MB) - One sick looking white plasticky casing that i must have I don’t know if its a good buy or not, but i know now i can work more efficiently = earn more money! yeah!
s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764500095.4/warc/CC-MAIN-20230204075436-20230204105436-00837.warc.gz
CC-MAIN-2023-06
1,092
17
http://support.ishyoboy.com/forums/topic/changing-the-color-of-link-in-visual-composer/
code
I have 2 problems with changing the color of my link. <u>1) My custom CSS is not respected</u> Since I updated the theme, my custom CSS is kind of overridden… Everything is respected except my which is replaced by an underline text anyhow. Here is my custom CSS : And here is an example on line : http://www.perruchier.fr/test/ <u>2) Impossible to change the color of a link contained in a Visual Composer block text</u> No matter what I do (custom CSS or creating an extra class), I can’t change the color of a link contained in a VC block text. You can see an example on this page : http://www.perruchier.fr/test/ The first link is contained in a VC block text ; the second link is not. As you can see, the second link is modified by my custom CSS (well… sort of… cf. problem #1), although the first link is styled by something I don’t know where it comes from. What can I do to have all my links follow my custom CSS, even the one which are contained in a VC block text ? Thanks in advance, - This topic was modified 1 year by Alkarto. Usually 4-8 hrs / might get up to 48 hrs If you are satisfied with our themes & support you can motivate us even more by supporting us (via Paypal).
s3://commoncrawl/crawl-data/CC-MAIN-2018-30/segments/1531676595531.70/warc/CC-MAIN-20180723071245-20180723091245-00496.warc.gz
CC-MAIN-2018-30
1,197
14
https://www.mail-archive.com/[email protected]/msg18684.html
code
On 4/11/2014 9:10 AM, Mike Parker wrote: Google has cleared the dblog.aldacron.net domain from the blacklist, so it's safe to visit The One With D and the Derelict forums again. Ultimately, I had to root everything out myself. Tech support was friendly enough, but very little help (they advised me that I needed to find the problem, which is what I asked for help with in the first place). It turns out there was a hidden executable which was completely invisible to my ftp client. I was able to see it only through the CPanel File Manager, but I was unable to delete it. Every attempt succeeded, only for the file to come back again. But once I eliminated all sorts of php files and fixed a number of static html files that had been modified, the problem went away even if the executable did not. Tech support did, finally, tell me they would remove the offending file. Ouch! At least it's all sorted out. Because of this experience, I've decided it's time to move away from shared hosting. I'm going to transfer everything over to a VPS (either with Digital Ocean or Linode) so that I can always have shell access. Yea, shared hosting can be a pain. TBH, all my biggest web server problems have always been directly related to one shared host or another. I got fed up and switched to VPS a few years and haven't looked back. I haven't looked closely at the other VPS companies, but in my experience you can't go wrong with Linode. They're amazing. I'm ultra-critical of freaking everything, and yet I don't have a single, even minor, complaint about Linode. (But then I'm a control freak, so VPS is a natural fit for me anyway, so "FWIW".)
s3://commoncrawl/crawl-data/CC-MAIN-2018-30/segments/1531676590295.61/warc/CC-MAIN-20180718154631-20180718174631-00451.warc.gz
CC-MAIN-2018-30
1,642
25
https://www.reddit.com/r/cpp/comments/96j06/askc_looking_for_references_on_coding_for/
code
use the following search parameters to narrow your results: e.g. subreddit:aww site:imgur.com dog subreddit:aww site:imgur.com dog see the search faq for details. advanced search: by author, subreddit... ~65 users here now Discussions, articles, and news about the C++ programming language or programming in C++. For C++ questions, answers, help, and advice see r/cpp_questions or StackOverflow. There is a useful list of books on Stack Overflow. In most cases reading a book is the best way to learn C++. Show all links Filter out CppCon links Show only CppCon links This is an archived post. You won't be able to vote or comment. Ask.C++: Looking for references on coding for optimization on x86 architectures (self.cpp) submitted 7 years ago by PussyGalore I have a project where I want to squeeze every bit of performance possible out of typical Intel multicore CPUs. Beyond simply using the Intel C++ compiler and Intel performance primitive libraries (which I will use), I'd like to read up on C/C++ programming techniques, idioms, tips and tricks for optimal code generation on 64 bit multicore x86 CPUs, especially in the areas of cache friendly code and how to make the best use of multiple cores. I saw a number of books on Amazon: Memory as a Programming Concept in C and C++ Code Optimization: Effective Memory Usage Programming with Intel Extended Memory 64 Technology The Art of Concurrency: A Thread Monkey's Guide to Writing Parallel Applications C++ Concurrency in Action: Practical Multithreading Professional Multicore Programming: Design and Implementation for C++ Developers Optimizing Applications for Multi-Core Processors, Using the Intel® Integrated Performance Primitives The Software Optimization Cookbook Second Edition. High Performance Recipes for IA 32 Platforms The Memory System: You Can't Avoid It, You Can't Ignore It, You Can't Fake It I also spotted this lecture in the programming subreddit: Any recommendations would be great -- books, online articles and lectures, papers, frameworks, comments on the books listed above, etc. [–]gosh 8 points9 points10 points 7 years ago (2 children) [–]abelsson 1 point2 points3 points 7 years ago (0 children) Seconded. I came here to post just that link. [–]PussyGalore[S] 0 points1 point2 points 7 years ago (0 children) I had never heard of these manuals before. Great tip! [–]last_useful_man 4 points5 points6 points 7 years ago* (1 child) Did you see this one of Ulrich's on memory, cache-size etc? http://lwn.net/Articles/250967/ (first of several parts) But it looks like you might have memory covered. I'd say, try to use a compiler that has the new C++ rvalue references aka perfect forwarding + move semantics, or even, I believe Boost::move() might fake it if your compiler doesn't, yet. Intel's Threading Building Blocks is a very efficient task decomposition and scheduling library (has a free version). Good bunch of links you have there. If you're into lock-free algorithms, 'The Art of Multiprocessor Programming' has some. Also, spend time on comp.programming.threads, you'll get all kinds of leads there. I had completely forgotten about newsgroups, thanks! [–]abelsson 2 points3 points4 points 7 years ago* (0 children) A tip for useful tools is using the valgrind tools callgrind and cachegrind (very easy to use, good high level profiling overview) and oprofile for low level inner loop analysis and figuring out exactly what the processor is spending precious nanoseconds on. That is, assuming your platform is linux. If it's not, Intel's vtune or parallel studio is mostly equivalent in functionality, but I found the interface to be absolutely horrendous. [–][deleted] 2 points3 points4 points 7 years ago* (2 children) Intel releases books (or downloadable pdfs) on this subject: EDIT: scroll down to download the pdfs for free [–][deleted] 1 point2 points3 points 7 years ago (1 child) The actual physical books are free as well. I ordered them all when I was taking a compiler class in college. [–][deleted] 1 point2 points3 points 7 years ago (0 children) Where do you see the actual books available? I would love a set for my bookcase. [–]bnolsen 1 point2 points3 points 7 years ago (1 child) So your project has already been going for a while and you've found out that performance isn't acceptable? It's nice to keep performance in mind while coding but getting something working that's correct should be first priority. Choosing correct algoriths will also trump hardware tricks most every time. What you're asking for here is #3 priority (although I have no nidea what you are doing). The project hasn't started. Correctness and optimal algorithms are taken as a given of course, but a key driving requirement is actually extreme performance on affordable COTS hardware. REDDIT and the ALIEN Logo are registered trademarks of reddit inc. Advertise - technology π Rendered by PID 18581 on app-188 at 2017-02-21 19:36:43.025689+00:00 running 6081107 country code: US.
s3://commoncrawl/crawl-data/CC-MAIN-2017-09/segments/1487501170823.55/warc/CC-MAIN-20170219104610-00114-ip-10-171-10-108.ec2.internal.warc.gz
CC-MAIN-2017-09
4,993
58
https://articulate.com/support/article/how-player-features-affect-published-story-size
code
The default size for Articulate Storyline projects is 720 pixels wide by 540 pixels high. However, you can change it. Learn how. Also, bear in mind that the Storyline player (the interface around the perimeter of your course) adds to the width and height of your published course. The number of pixels added to the overall size depends on the elements you include in the player. For example: - The player frame by itself adds 20 pixels to the width and the height (10 pixels all the way around your course). - If any slide in your course has a Prev, Next, or Submit button, or if you've included the volume controller to your player, it adds an additional 51 pixels in height. - If you include the title in the top bar of your course—but no player tabs—it adds 23 pixels in height. - If you include a title in the top bar and at least one player tab, it adds 47 pixels in height. - If you don't include a title in the top bar but you do include player tabs, it adds 24 pixels in height. - If you include the sidebar in your player, it adds 240 pixels to the width.
s3://commoncrawl/crawl-data/CC-MAIN-2022-49/segments/1669446711013.11/warc/CC-MAIN-20221205064509-20221205094509-00344.warc.gz
CC-MAIN-2022-49
1,068
8
https://harfangk.dev/en/posts/2016-09-12-sandi-metzs-advices-for-better-code.html
code
I’ve recently finished reading the Practical Object-Oriented Design in Ruby by Sandi Metz. I heard a lot of good things about the book and it was definitely worth reading - I highly recommend it too! I’ve also listened to Ruby Rogues podcast episode 87 where the panelists discusses the book with Sandi, and it also has some great discussions. Here are some “rules” for development from the podcast by Sandi. - Your class can be no longer than 100 lines of code. - Your methods can be no longer than 5 lines of code. - You can pass no more than 4 parameters and you can’t just make it one big hash. - In your Rails controller, you can only instantiate one object, to do whatever it is that needs to be done. - Your Rails view can know about only one instance variable. One thing I’d like to point out is that Sandi didn’t mean these rules as unchangeable rules. They are more like some guidelines to think about when we write code, and if we can explain why they should not be applied, we can ignore them. I don’t think there are many cases that’d justify breaking free from rule 1, 4 and 5. It will be harder to stick to rule 2, especially when it’s early in development and there’s not enough information to determine which features should be implemented. I’m a bit concerned about rule 3. That recommendation could mislead people to think that it’s okay to have methods 4 parameters all the time. I don’t know what exactly Sandi meant by that rule, but I’m definitely not comfortable with methods with 4 parameters. They are hard to understand. My personal ceiling is 2 parameters with 1 optional hash. Any more than that calls for refactoring.
s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320300849.28/warc/CC-MAIN-20220118122602-20220118152602-00207.warc.gz
CC-MAIN-2022-05
1,677
10
https://discuss.elastic.co/t/enabling-x-pack-makes-elaticsearch-fail-to-start/189631
code
The issue was a combination of incorrect SSL certs, and also the way that I was trying to curl elastic on 9200. Some things to keep in mind are understanding SSL certs, and then once it should be working, make sure to query elastic with https://fqdn:9200/ rather than http or localhost or the ip address. It is also worth noting the difference between xpack.security.transport and xpack.security.http settings, which is pretty clear in the documentation if you read thoroughly instead of skimming. Still not sure how to get it working with your own CA, although I suspect I had it working but was querying elasticsearch incorrectly =0 For us it is easier / better to just use our normal certs anyway. network.host: ["192.168.50.240", "10.229.50.240"] discovery.zen.ping.unicast.hosts: ["elastic1int.domain.net", "elastic2int.domain.net"] xpack.security.transport.ssl.certificate_authorities: [ "/etc/elasticsearch/certs/ca.crt" ] xpack.security.http.ssl.certificate_authorities: [ "/etc/elasticsearch/certs/ca.crt" ] Also worth noting it is a better practice to use 3 nodes instead of 2, but all I could afford at the time of making the cluster was 2 servers with 2x Intel(R) Xeon(R) CPU E5-2643 v2 @ 3.50GHz and 64GB of RAM each, but so far, even when we add our netflow data they are able to handle a lot of data. Still, once I get my way we will be adding one more of these to the cluster, since with netflow data rolling in it puts both of these boxes at 60% CPU utilization on average.
s3://commoncrawl/crawl-data/CC-MAIN-2019-39/segments/1568514577363.98/warc/CC-MAIN-20190923150847-20190923172847-00338.warc.gz
CC-MAIN-2019-39
1,490
9
https://techaisa.com/how-to-create-a-microsoft-account/
code
Microsoft account – username and password for logging into Windows, Skype, OneDrive, Office, Hotmail, Outlook, Xbox Live, Bing, MSN, Store (Microsoft Store), Windows Phone, Visual Studio. An account is required for a user to access Microsoft services, apps, subscriptions, and devices. Through the account, the user gets access to his data and settings from any device, applications and services become more convenient, and personal management. A user can link all of their profiles across multiple devices to one account for easy management of their Microsoft account. A user can have multiple Microsoft accounts if they created profiles in programs or services at different times using different email addresses and passwords. In this case, the control is performed by the account associated with this device. Previously, the account changed its name several times. The previous version of the account was called “Windows Live ID”. Another benefit of using an account on the Windows operating system is that the product key license is linked to the account information. In the case of reinstalling Windows, after logging in with a Microsoft account (MSA), making an Internet connection, the operating system will be automatically activated on the computer. Therefore, I recommend that you sign in to your computer at least once with a Microsoft account. The system on the PC will be associated with the account, which will help to reactivate the system on this hardware without any problems. I think that considering the above, it makes sense to create a Microsoft account. A profile can come in handy in different situations. There are several ways to create a Microsoft account: - directly from Windows OS settings; - on the official page of the Microsoft website https://account.microsoft.com/ ; - from the window of a program or production service. The user, having signed in to their profile, manages their Microsoft account from the account: - edits their user data: you can change the Microsoft account name, email address, phone number associated with the profile; - changes or resets the account password; - makes payments and issues invoices related to products; - manage devices: - manages product subscriptions; - changes privacy and security settings; - manages family security; - searches for and blocks lost devices; - obtains reference information for solving problems; - if necessary, remove the Microsoft account. When you sign in to a profile, your account settings are synchronized across all devices managed by that Microsoft profile. Account in Windows 10: how to create an account on Windows In this instruction, we will consider creating an account using the Windows 10 operating system as an example. You can create an account on Windows 10 from the system settings. Follow these steps to create a Microsoft account: - Enter the Start menu, launch the Settings app. - Open “Accounts”, in the “Your Information” section, click on the link “Sign in with a Microsoft account instead”. - In the Microsoft Account window, if you already have a Microsoft profile, you’ll need to enter your email address, phone number, or Skype account. If you don’t have an account, click on the “Create one!” link. The profile creation process will take a little time. - In the next window, enter your email address (any mailbox on Gmail, Yandex Mail, Mail.Ru, Yahoo, etc. will do), create a password for your account, and then select a country. - It then asks for your consent to display content that is most relevant to your interests. If this offer does not interest you, uncheck both boxes in this window. - In the window that opens, you are prompted to enter the current password to enter the operating system to verify the authenticity of the user. The next time you sign in, your Microsoft account password will be used. Leave the field blank if you do not currently have a Windows login password on your computer. - The Create a PIN window prompts you to create a sign-in PIN that you can use instead of entering your Microsoft account password. The PIN code is stored on this device and is not transmitted to the Internet. - In the PIN Setup window, enter the characters for the new PIN, and then confirm the PIN. The PIN code must contain at least 4 characters. - After applying the settings, you will be taken to the accounts section in the Settings application. Here you will see that the computer is signed in with a Microsoft account. Creating a Microsoft account without using the Windows operating system works in a similar way. After creating their profile on the site, the user can sign in to the account on the computer by entering information from their Microsoft account. To change the settings, or to apply the necessary settings, you can log into your account on the official website using a browser from any device. Sign in to Windows 10 with a Microsoft account During Windows installation , the system prompts you to enter information from your Microsoft account. If you wish to use your Microsoft profile on the operating system, enter this information when you install the system. You can do this at any time, from the installed Windows. After starting the computer or when rebooting, to enter the operating system, you will need to enter an account password or PIN code, the user’s choice. The user can independently change the “Parameters” of entering the system by selecting the account password or PIN code for entering in the appropriate field. If necessary, the user can change the account name to something else. If you find it difficult to constantly enter a password every time you start the operating system, follow the link to read the article on how to disable password entry in Windows 10 at logon. When working on a computer on a Windows operating system, the user can use a Microsoft account. After creating a profile, the user has access to settings for managing personal data, privacy, security on all devices associated with a Microsoft account.
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100258.29/warc/CC-MAIN-20231130225634-20231201015634-00457.warc.gz
CC-MAIN-2023-50
6,029
42
https://ubuntuforums.org/showthread.php?t=869537&page=2&p=8742155
code
I have a fix for this one! Took me a few minutes, but I figured it out. Works for Firefox 3.5. 1. Type about:config in the address bar. 2. Type 'header' or 'footer' (depends which one you want to edit) in the Filter box. You should now see a couple of lines like: They have values listed at the end of the line (like &U, &PT, &D). You can edit the different lines by rightclicking on them. You can set the default values for each printer now. I know &U stands for URL. I bet you can figure out the rest.
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917123276.44/warc/CC-MAIN-20170423031203-00124-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
503
5
http://www.linuxforums.org/forum/mandriva-linux/100224-compiling-nethack-vultures-cant-find-gnome-h-sdl-config.html
code
Results 1 to 1 of 1 Enjoy an ad free experience by logging in. Not a member yet? Register. - Join Date - Aug 2007 Compiling Nethack/Vultures can't find gnome.h and sdl-config I can't seem to find the packages that contain the development headers for gnome/gtk/gdk or libSDL. Searching using Software Management tools doesn't find anything. Can anyone point me in the right direction?
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917125881.93/warc/CC-MAIN-20170423031205-00089-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
383
8
https://coderanch.com/t/537261/frameworks/mix-JPA-JDBC-transaction
code
I am desperately looking for information on how to configure the transaction org.springframework.jdbc.core.simple.SimpleJdbcDaoSupport to be executed within the transaction org.springframework.orm.jpa.JpaTransactionManager. I've tried to do what the documentation showed me but still did not work .. Has anyone done or know of any tutorial? In Class JpaTransactionManager say: Note: To be able to register a DataSource's Connection for plain JDBC code, this instance needs to be aware of the DataSource (setDataSource(javax.sql.DataSource)). The given DataSource should obviously match the one used by the given EntityManagerFactory. This transaction manager will autodetect the DataSource used as known connection factory of the EntityManagerFactory, so you usually don't need to explicitly specify the "dataSource" property. and you need create a special bean to mix transaction like this:
s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764499911.86/warc/CC-MAIN-20230201045500-20230201075500-00718.warc.gz
CC-MAIN-2023-06
891
6
https://www.welaunch.io/es/knowledge-base/faq/setup-woocommerce-quick-view/
code
In order to setup the plugin you should be able to see the Quick View Menu under the WooCommerce menu. If you can not see the Quick View menu make sure the Redux Framework plugin is installed and activated. In the General settings you should enable the plugin itself first. Then you should specify the position of the quick view Button & the hook priority. Play around with these 2 settings if you do not see the buttons. Then you can set a text for the quick view button (HTML is allowed here, so you can use a custom icon for example). If you check the Use Default Template checkbox our plugin does not take the built in modal content view, but the WooCommerce Default one. You can try if it works also, but some themes may have overwritten this. If you want to customize the layout you can copy the quick view file, located in wp-content/woocommerce-quick-view/public/templates/quick-view.php, to your theme (wp-content/themes/your-child-theme/woocommerce/quick-view-php). Quick View Styling In the Styling Section of the plugin settings you can first set a default open effect (either as a modal or as inline directly in your product category pages). The next settings can be used to style the Modal and it’s backdrop as you like. Here you can change colors, padding and the width of the image or content container. Also you can enable “Content Auto Height” – if this is enabled the content height will be the same height as your image. If content should be higher it will show a scroll option. If the styles do not work, make sure the following file has a CHMOD 0777: /wp-content/woocommerce-quick-view/public/css/woocommerce-quick-view-custom.css Data to Show The data to show section allows you to enable and disable certain parts of the quick view content. The following elements are possible: - Short Description - Add to Cart - Read More Quick View Popup To show the unique quick view popup (see demo on bottom right), you can enable that in popup options. In the advanced settings panel you can add some custom CSS or custom JS if you want.
s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712297290384.96/warc/CC-MAIN-20240425063334-20240425093334-00893.warc.gz
CC-MAIN-2024-18
2,059
16
https://community.rstudio.com/t/bookdown-contest-submission-gitbook-style-tufte-style-for-web-book/11666
code
This is the second book I made in bookdown. I originally wrote it in latex, using the tufte style template. I liked the visual style of the margin notes, and the quoted sections at the beginning. But, then I discovered Bookdown a couple years ago, that was a revelation. I was already doing most everything in R (half of the book is about programming in R), being able to write in R, and talk about R at the same time, was truly one of the best things. Thank you for making Bookdown! There is already an R Markdown tufte style. But, I didn't like the way it looked on the web. I liked the clean gitbook style that we see in so many Bookdown books, but I wanted elements of the tufte style (margin notes, quotes etc.) So, I hacked the two together, and this was the result. I didn't write any explanation for getting this to work, I should probably to do that. As far as I can tell, anyone could fork the repo, and it should compile in R-Studio. For quotes and margin notes I embed these into the R Markdown where I want them placed. <span class="newthought"> quote goes here ---author name </span> <div class="marginnote"> things you write here go in the margin </div> All the .css style files are in place for this to work, and those are the result of me tinkering with existing things, and making them play nice. So, this really isn't much of a big departure from the existing styles. I like the existing styles, and made a few small modifications. I had this working at one point to compile to all formats...But, really I think that was a hack. I probably compiled the .pdf in latex, then served that through the bookdown link. I think the epub compiles, but it's probably missing the margin notes... Since this time I'm focusing mainly on web-books, and haven't attempted to make my books compile in other formats (they don't support gifs, or quizzes, or shiny apps, or other things). Thank you all who have made Bookdown, R markdown, R-studio, etc. this whole universe is a fantastic thing. Keep up the great work.
s3://commoncrawl/crawl-data/CC-MAIN-2018-43/segments/1539583511216.45/warc/CC-MAIN-20181017195553-20181017221053-00216.warc.gz
CC-MAIN-2018-43
2,019
9
http://www.ps3hax.net/printthread.php?t=46400
code
Dev_flash problem after ps3 emulator (rebug 4.21) After adding the selected files for ps2 on dev_flash the ps3 started to reboot and after boot I see startuplogo then nothing.. I restarted but same problem over and over after trying restoring file system in recoverymode I got red screen!! It wont start to XMB but just black screen. Recoverymode is still possible but if I like say start formatting hdd in recovery it gives me nothing more then a black screen.. What can I do? do I need to use firmwareupdate? if so? rebug? hope somebody can give me a help. and sorry for my bad english Never mind I fixed it please tell me how to fix it :vollkommenauf: |All times are GMT -5. The time now is 06:57 AM.| Powered by vBulletin® Version 3.8.7 Copyright ©2000 - 2013, vBulletin Solutions, Inc.
s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368699924051/warc/CC-MAIN-20130516102524-00054-ip-10-60-113-184.ec2.internal.warc.gz
CC-MAIN-2013-20
792
13
https://creeliteracy.org/2016/07/27/dance-along-with-powwow-sweat/
code
Thanks to Facebook friend Una Verdandi for sharing the CBC article about the amazing (and hilarious) Powwow Sweat dance/workout series created by Stylehorse Collective and the Coeur d’Alene tribe in Idaho. The videos feature energetic powwow dancer Shedaezha Hodge. My favourite visual is Shedaezha standing in full regalia against a Teletubby background. Makes me think we should begin gathering some basic dance vocabulary to work in some total physical response language learning at the same time: Follow the Powwow Sweat Facebook group here: https://www.facebook.com/powwowsweat/ Or search Youtube for “Powwow Sweat” to find these and many more: Full Music Video: https://www.youtube.com/watch?v=p4bWbJlIUjs Warm up: https://www.youtube.com/watch?v=ZhfglbhKCo0&list=PLAqhuhVuo9ao4EKra0FYh8r5hcPEVpDYp&index=9 Jingle Dress: https://www.youtube.com/watch?v=vS9-ZlX7KE8&list=PLe5h-eBi9JlWYEfHjIifq_TUEknXXsdzr&index=1 Men’s Fancy Dance: https://www.youtube.com/watch?v=nlfVPjeb1Xo&list=PLe5h-eBi9JlWYEfHjIifq_TUEknXXsdzr&index=2 Crow Hop: https://www.youtube.com/watch?v=BOTUP9CoXBQ&index=3&list=PLe5h-eBi9JlWYEfHjIifq_TUEknXXsdzr Double Beat: https://www.youtube.com/watch?v=gBhTOkGr6_c&list=PLe5h-eBi9JlWYEfHjIifq_TUEknXXsdzr&index=5 Men’s Grass Dance: https://www.youtube.com/watch?v=zuZBx5cz0TA&list=PLe5h-eBi9JlWYEfHjIifq_TUEknXXsdzr&index=6 Looking for some dance fitness action closer to home? In Lloydminster, you might be able to check out Brandyy-Lee Maxie’s (Nakota) Powfit: Ahhaha! Chi Miigwetch! What a powerful way to balance fitness and culture. Hey wasn’t that the way we used to live? So grateful the Creator gave us all such amazing gifts. I am going to get fit and Grass Dance!
s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296945333.53/warc/CC-MAIN-20230325130029-20230325160029-00715.warc.gz
CC-MAIN-2023-14
1,711
14
http://lfs.osuosl.org/pub/ros/ros_docs_mirror/en/galactic/Tutorials/Intermediate/Rosdep.html
code
You're reading the documentation for a version of ROS 2 that has reached its EOL (end-of-life), and is no longer officially supported. If you want up-to-date information, please have a look at Iron. Managing Dependencies with rosdep Goal: Manage external dependencies using Tutorial level: Intermediate Time: 5 minutes Author: Steve Macenski This tutorial will explain how to manage external dependencies using rosdep is ROS’s dependency management utility that can work with ROS packages and external libraries. rosdep is a command-line utility for identifying and installing dependencies to build or install a package. It can be or is invoked when: Building a workspace and needing appropriate dependencies to build the packages within Install packages (e.g. sudo apt install ros-galactic-demo-nodes-cpp) to check the dependencies needed for it to execute It has the ability to work over a single package or over a directory of packages (e.g. workspace). package.xml file contains a set of dependencies. The dependencies in this file are generally referred to as “rosdep keys”. These are represented in the tags They specify in what situation each of the dependencies are required in. For dependencies only used in testing the code (e.g. For dependencies only used in building the code, use For dependencies needed by headers the code exports, use For dependencies only used when running the code, use For mixed purposes, use depend, which covers build, export, and execution time dependencies. These dependencies are manually populated in the package.xml file by the package’s creators and should be an exhaustive list of any non-builtin libraries and packages it requires. rosdep will check for package.xml files in its path or for a specific package and find the rosdep keys stored within. These keys are then cross-referenced against a central index to find the appropriate ROS package or software library in various package managers. Finally, once the packages are found, they are installed and ready to go! The central index is known as rosdistro, which may be found here. We’ll explore that more in the next section. Great question, I’m glad you asked! For ROS packages (e.g. nav2_bt_navigator), you may simply place the name of the package. You can find a list of all released ROS packages in <distro>/distribution.yaml for your given ROS distribution. For non-ROS package system dependencies, we will need to find the keys for a particular library. In general, there are two files of interest: base.yaml in general contains the apt system dependencies. python.yaml in general contains the pip python dependencies. To find a key, search for your library in this file (preferably ctrl+F, its long) and find the name in yaml that contains it. This is the key to put in a For example, imagine a package had a dependency on doxygen because it is a great piece of software that cares about quality documentation (hint hint). We would search doxygen and come across: That means our rosdep key is doxygen, which would resolve to those various names in different operating system’s package managers for installation. If your library isn’t in rosdistro, you can experience the greatness that is open-source software development: you can add it yourself! Pull requests for rosdistro are typically merged well within a week. Detailed instructions may be found here for how to contribute new rosdep keys. If for some reason these may not be contributed openly, it is possible to fork rosdistro and maintain a alternate index for use. Now that we have some understanding of rosdistro, we’re ready to use the utility itself! Firstly, if this is the first time using rosdep, it must be initialized via: sudo rosdep init This will initialize rosdep and update will update the locally cached rosdistro index. It is a good idea to update rosdep on occasion to get the latest index. Finally, we can run rosdep install to install dependencies. Typically, this is run over a workspace with many packages in a single call to install all dependencies. A call for that would appear as the following, if in the root of the workspace with directory src containing source code. rosdep install --from-paths src -y --ignore-src Breaking that down: --from-paths srcspecifies the path to check for package.xmlfiles to resolve keys for -ymeans to default yes to all prompts from the package manager to install without prompts --ignore-srcmeans to ignore installing dependencies, even if a rosdep key exists, if the package itself is also in the workspace. There are additional arguments and options available. rosdep -h to see them.
s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947475727.3/warc/CC-MAIN-20240302020802-20240302050802-00691.warc.gz
CC-MAIN-2024-10
4,628
79
https://www.wimdictus.nl/the-friend/
code
PARTNERS & FRIENDS Without partners life is meaningless. The picture below represents a bunch of friends of mine on my birthday a couple of years ago. I wanted to share this image of abundance with you because what you see is the only bank account that counts. Later you will see some names of business related friends or partners, just people that I love to work with. (picture by Robert Aarts) My favourite partners Colleagues, friends, organisations that I work with. Just the best. Scroll on and meet them.
s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296817650.14/warc/CC-MAIN-20240420122043-20240420152043-00238.warc.gz
CC-MAIN-2024-18
510
8
https://uk.answers.yahoo.com/activity/questions?show=MNUNV556NO4KSWGP6P2DDLDGJE&t=g
code
I live in a large condo building. The board is pretty bad. A few other owners and I got together and we had a friend of mine, who's a lawyer, send a menacing demand letter to the board (which worked!). The board members are saying that the letter is my letter; they call it, for example, "Kurt's letter". Today one board member came up to me and said, "You wrote that letter", "You signed that letter" and "You sent that letter". My lawyer friend wrote, signed and sent the letter, so I denied doing so. However, am I being honest? I worked with some others to get the letter sent. I saw the letter before it was sent. I approved it and did give some suggested language for it (which my lawyer friend changed). I also signed an engagement letter with my lawyer friend; he was my (and others') lawyer for purposes of sending the letter. Later, I hired my lawyer friend, for pay, to file a lawsuit against another board; that other lawsuit is ongoing. Next time I'm confronted about it by the board, would be better to say the following? "No, I didn't sign or send it. I know about the letter. I've seen the letter. And I liked what the lawyer who sent the letter did, so I have hired him and he is currently representing me in a lawsuit against another board. But it's false to say that I wrote, signed, and sent that letter."
s3://commoncrawl/crawl-data/CC-MAIN-2019-04/segments/1547583660258.36/warc/CC-MAIN-20190118172438-20190118194438-00212.warc.gz
CC-MAIN-2019-04
1,325
7
http://www.linuxquestions.org/questions/2011-linuxquestions-org-members-choice-awards-95/database-of-the-year-919884/page2.html
code
2011 LinuxQuestions.org Members Choice AwardsThis forum is for the 2011 LinuxQuestions.org Members Choice Awards. You can now vote for your favorite products of 2011. This is your chance to be heard! Voting ends on February 9th. Welcome to LinuxQuestions.org, a friendly and active Linux Community. You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today! Note that registered members see fewer ads, and ContentLink is completely disabled once you log in. If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here. Having a problem logging in? Please visit this page to clear all LQ-related cookies. Introduction to Linux - A Hands on Guide This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter. For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own. Click Here to receive this Complete Guide absolutely free. I've been using most of them: MySQL, PostgreSQL, Percona, MariaDB, Firebird, sqlite & Oracle However, my vote is for Firebird It has almost everything I need for most of the a normal DB nowadays (and it's one of the lightest) I voted for MySQL because that's all I use. Seems like this category needs some updating as there are no NoSQL databases in the mix. Of course though the NoSQL DBs have their uses, I doubt too many people are using them as their primary database. Maybe next year there will be separate RDMS/PK store categories. Have to go with MySQL on this one. Simply because I've supported nothing but MySQL in the past (not by my volition, simply because it's what the job required) and it's the one that I have the most experience with. Surprised that my favorite, Sybase is not in the poll. Used it back in my working days. Ah those were the days... I actually use none of the above now. LibreOffice Base and Calc cover my database needs now-a-days. LibreOffice Base and Calc are not databases. The former is a front end to a database (so you'd be hooking up to something like MySQL) and the latter is just a spreadsheet so functions no more like a database than a vi is a desktop publishing package.
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917119361.6/warc/CC-MAIN-20170423031159-00393-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
2,879
21
https://irzu.org/research/python-how-to-get-base-conda-installation-directory-not-conda_prefix/
code
python – How to get base conda installation directory (not CONDA_PREFIX)? I’m trying to figure out the best way to get the base conda installation directory. I wrote this but I know this isn’t the best way to do it: (base) -bash-4.2$ which conda /usr/local/devel/ANNOTATION/jespinoz/anaconda3/bin/conda (base) -bash-4.2$ which conda | python -c "import sys; print("https://stackoverflow.com/".join(sys.stdin.read().split("https://stackoverflow.com/")[:-2]))" /usr/local/devel/ANNOTATION/jespinoz/anaconda3 Is there some environment variable I’m missing? Read more here: Source link
s3://commoncrawl/crawl-data/CC-MAIN-2023-23/segments/1685224649193.79/warc/CC-MAIN-20230603101032-20230603131032-00784.warc.gz
CC-MAIN-2023-23
589
6
http://francischang.com/professional/resume/FrancisChang-CV.html
code
[email protected] • http://www.francischang.com My professional goal is to research and develop the next generation software technologies for virtual worlds, multimedia streaming, distributed computing systems, mobile platforms and new user interface paradigms. · Dissertation: “Towards Constructing Interactive Virtual Worlds”, 2014. Advisor: Dr. Wu-chi Feng · Research involvement: multimedia visualization of 3D environments, network traffic analysis, packet classification algorithms, network processors and digital video analysis. · Designed and instructed CS 199: Introduction to Video Game Development – an undergraduate course to teach non-CS majors basic video game development principles including computer programming, 3D modelling and animation and simulated physics using Second Life as a game development platform. · Designed and instructed OMSE 510: Computing Foundations – a graduate level course teaching the fundamentals of computer architecture and operating systems. · Instructed CS 510: Malicious Code and Forensics – a graduate level course focusing on techniques and examples of malicious code as well as forensic analysis of techniques and protection and recovery from malware. · Recipient of the Outstanding Graduate Student award. · Member of the PSU Brazilian Jiu-Jitsu and PSU Kickboxing clubs. · Instructed CSE506/606 NWP: Network Practicum – a graduate level course in network processor development, focusing on the Intel IXP1200 platform. Received a class rating of 4.7/5.0, the second highest for an instructor teaching that quarter. · Teaching Assistant: CSE58x: Network Practicum – Tasks involved creating assignment curriculum, lecturing, grading, assisting students and lab administration. · Teaching Assistant: CSE513: Introduction to Operating Systems – Created the assignment curriculum, marking, conducting tutorials and general instruction in NACHOS operating system · Recruiting, interviewing and management of undergraduate interns in SySL · Undergraduate research work with real-time volumetric rendering in the Computer Graphics Lab under Dr. Michael McCool. · Vice President of the Archery Club & Member of the Badminton Club · Received various high school scholarships & awards · Extracurricular work involved porting ssh to win32, development of portable 4-dimensional stereogram engine, contributor to the Linux on Laptops Survey, volunteer work for the Ronald McDonald House · Set up, designed and maintained QEP's Internet website · Instructed basic website development · Teaching assistant for math and computer programming · Extracurricular activities involved Oakville Youth Symphony Orchestra (violin) and local band (guitar) · Huaiyu Liu, Mic Bowman, Francis Chang. “Survey of State Melding in Virtual Worlds”, ACM Computing Surveys (CSUR), Volume 44 Issue 4, Article No. 21, August 2012 · Francis Chang, Wu-chi Feng. "Streaming Terrains", Proceedings of NOSSDAV 2007, June 2007 · Francis Chang, Wu-chang Feng, Wu-chi Feng, Kang Li, "Efficient Packet Classification with Digest Caches", Network Processor Design: Issues and Practices, Editors: Patrick Crowley, Mark Franklin, Haldun Hadimioglu, Peter Onufryk, Morgan Kaufmann Publishers, 2005, ISBN: 0-12-088476-3 · Francis Chang, Wu-chang Feng, Wu-chi Feng, Kang Li, “Efficient Packet Classification of Digest Caches”, in Proc. of the Third Workshop on Network Processors & Applications (NP3), February 2004, Madrid, Spain. · Francis Chang, Kang Li, Wu-chang Feng, “Approximate Caches for Packet Classification”, in Proc. IEEE INFOCOM 2004, March 2004, Hong Kong. · Kang Li, Francis Chang, Damien Berger, Wu-chang Feng, “Architectures for Packet Classification Caching”, In proceedings of the 11th IEEE International Conference on Networks (ICON 2003) · Francis Chang, Kang Li, Wu-chang Feng, "Approximate Caches for Packet Classification", ACM SIGCOMM (poster session), August 2003, Karlsruhe, Germany.) · Game Network Traffic Measurement · Francis Chang, Wu-chang Feng, “Modeling Player Session Times of On-line Games”, In Proceedings of NetGames 2003, May 2003. · Wu-chang Feng, Francis Chang, Wu-chi Feng, Jonathan Walpole, "Provisioning On-line Games: A Traffic Analysis of a Busy Counter-Strike Server", In Proceedings of the Internet Measurement Workshop, November 2002. · Francis Chang, Wu-chang Feng, Wu-chi Feng, Jonathan Walpole, "Provisioning On-line Games: A Traffic Analysis of a Busy Counter-Strike Server", ACM SIGCOMM (poster session), August 2002, Pittsburgh, Pennsylvania. · Nick Yee, Jeremy N. Bailenson, Francis Chang, Dan Merget. (2006, in press). "The Unbearable Likeness of Being Digital: The Persistence of Nonverbal Social Norms in Online Virtual Environments". The Journal of CyberPsychology and Behavior. · Engineer for the Google Experience team, designing interactive displays in physical spaces in Google Experience Centers · Researched topics on metaverses and virtual worlds · Designed & Developed XPU (Extremely Partitioned Universe), an metaverse architecture experiment framework written in C# · Server development of OpenSimulator, an open-source virtual world in written in C# · Virtual world content development - scripting, modelling and art · Virtual content design & development including programming, 3D modeling, texture art, animations, cinematography, managing contractors, marketing and business development · Clients include General Motors Company, Toyota Motor Corporation, Nissan Motor Company Ltd., The Electric Sheep Company, and Millions of Us LLC. · Undergraduate level teaching and workshop instruction · Popular projects include the Dominus Shadow, Seburo Compact-eXploder, Wet Ikon Roam and Franimation Overrider · Charity work included campaign and event management, and content development for the Electronic Freedom Foundation, Heifer International, Red Cross, American Cancer Society and VERTU. · Developed prototype real-time volume rendering software, based on nVidia GeForce 3 texture shader & register combiner technology, written in a mixture of Tcl/TK, C/C++ and OpenGL, with prototype nVidia specific extensions. · Algorithms were based on fixed-grid cubic topology, with a static data-set. (MRI and CT data) · Software development for a proxy-based wireless web browsing solution for mobile devices · Web browsing thin client development targeting PalmOS using Codewarrior C and Motorola 68000 assembly · Server development on Solaris, using the Mozilla rendering engine · Designed & wrote specifications for the thin-client browsing system, image processing and transmission protocol · Designed, developed & maintained UNIX/Java product branding system, including image manipulation, branded resources management and file validation utilities · Designed, developed & maintained multi-threaded Java AFTP/TCP protocol sniffer & debugging tool · Research involved raster image compression & processing research, general compression techniques, UNIX hashing programs, and data encryption/obfuscation · Interviewed prospective software engineering candidates · Worked in Visual Basic Projects Team, developing using MFC/ATL/COM with Visual C++ · Adding, Designing and Extending functionality to Win9x Unicode/API wrapper libraries · Developed new COM utilities, including the VB7 Upgrade Wizard · Check-in Suite design and Suite Library implementation · Developed automated tests to validate ongoing changes to the codebase · Miscellaneous internal utility development including maintenance, bug fixes and new features · Development focussed on a library for raster image manipulation for Corel Draw and Corel Photo-Paint, targeting Win32 using MS Visual C++ and MFC · Developed new image manipulation effects, including algorithms design and implementation, and user interface design · General library maintenance, bug fixing and performance enhancements · Designed and developed an internal C++ code analysis utility to aid programmers in identifying portability and interface compatibility issues · Graphics challenges included concurrent programming, anti-aliasing primitives and colour space manipulation · C/C++/YAY development, on various platform including WinNT, Win95, UNIX and GCOS · Developed the C math libraries for the GCOS operating system (9-bit architecture) and Intel x86 machines · Math library implementation involved designing mathematical approximations, resolving overflow/underflow and truncation errors and circumventing hardware limitations to comply with ANSI C 98 standards · Developed a multi-threaded telnet application in Borland C++ using win32 multi-threaded constructs, with support for the Kermit file transfer protocol · Worked on prepro, a precompiler that embedded a new macro language in C++, designed for compiler construction · Developed a custom data-management application for Advanced Debt Technologies Ltd using Visual Basic · Database design and manipulation using SQL, using MS Access databases · Programming challenges included Microsoft Mail Merge, automated banking features, automated of MS Excel spreadsheets construction using OLE, and cross-platform compatibility. · Started a small business providing consulting services in website development and BBS setup and maintenance · Diagnosed, repaired, assembled and upgraded PC computers, attended to service calls · Instructed coop students on PC maintenance and operation · Developed programs to model the behavior of fractal and chaos algorithms for grad students studying fractals · Created notes and summaries intended for graduate students studying chaos and fractals My hobbies include photography, wristwatches, poker, boxing, kickboxing and Brazilian jiu-jitsu. References are available on request.
s3://commoncrawl/crawl-data/CC-MAIN-2021-39/segments/1631780056656.6/warc/CC-MAIN-20210919005057-20210919035057-00190.warc.gz
CC-MAIN-2021-39
9,806
79
https://www.activequerybuilder.com/history.html?sec=3-3&story=245
code
Below is the list of fixes and improvements in Active Query Builder ActiveX Edition v.1.30.11. + The initial support for Denodo Virtual Dataport is made. = Query Transformer: The fields case is preserved now for a wrapped query. - Query Transformer: The bug with ORDER BY generation for a wrapped query is fixed. - Automatic generation of short aliases is fixed when the object is added to the query from the linked objects menu. - Metadata object names generation and comparison are fixed when the server generally supports schemas, but the server returns an empty schema. - The bug with not updating the SQL text on editing a subquery in the link expression is fixed. = MS SQL Server: The support for TRY_CAST and TRY_CONVERT built-in functions is added. = Teradata: A fallback to non-X system views is made if X-views are not available. - Teradata: The server autodetection is fixed. - Pervasive: Parsing of the IF, DateAdd, DateDiff, and DatePart built-in functions and the DOUBLE built-in type are fixed. - DB2: Parsing of the EXCEPTION JOIN and backslash as a division in expressions are fixed. - SAP Hana: The IsSupportDatabase flag is turned off. [ Legend: ] [ + New feature ] [ = Improved/changed feature ] [ - Bug fix ] [ ! Important notice ] You can always get the latest trial version of Active Query Builder ActiveX Edition at the download page. We have been using Active Query Builder for over a year and must say that both the product and support have been outstanding! We chose Active Query Builder due to its flexibility and features, but have been truly pleased by its power and hidden capabilities. ... In summary Active Query Builder provides excellent components, great support and a very flexible feature set. It has allowed us to provide features to our end users that I did not think would be possible in the first release of our new tools and in a timeframe that was much shorter than planned. I would recommend that anyone dealing with databases in the .Net world should be aware of this component and its capabilities!
s3://commoncrawl/crawl-data/CC-MAIN-2021-43/segments/1634323585518.54/warc/CC-MAIN-20211022181017-20211022211017-00004.warc.gz
CC-MAIN-2021-43
2,045
7
https://github.com/LambdaHack/LambdaHack/wiki/Fov-and-los
code
Below are the required properties of the FOV algorithm. Most of them taken from discussion. The 'realistic shadows' properties from the Roguebasin discussion are disregarded on the principle of gameplay over realism. The properties are even less important in games with no passwall monsters and a very small real world tile size (e.g., 1m by 1m), where we can realistically expect that heroes peek around the flimsy single pillars, room entrances, etc. If the engine is used for other kinds of games, we will have to reconsider the trade-offs. Property 5 is only satisfied by algorithms that, to tell if a tile is visible from another, analyze visibility between continuous sections of each of the two tiles, not a small set of points in one of the tiles. Such algorithms are beam casting (e.g, parallel beams starting from diagonals of a tile), Digital FOV (DFOV, visibility from a cross dividing a tile into 4 squares) and Precise Permissive FOV (PFOV, visibility from an 'X' dividing a tile into 4 triangles). Beam casting is usually either costly or has artifacts. Digital FOV and Permissive FOV easily satisfy 4 and 6, which are not so natural for many other algorithms. Digital FOV satisfies 8 (walls are beveled and pillars are diamonds) and is more permissive than Permissive FOV, but the latter is reported to be much more efficient, at least in current implementations, and permissive lines are more visually straight than digital lines. PFOV is clean-room implemented at https://github.com/AllureOfTheStars/Allure/blob/last_standalone/src/FOV/Permissive.hs, according to the description in Precise Permissive FOV. Its general structure is modeled after recursive shadow casting and so it avoids inspecting tiles behind obstacles, which should make it much faster than a straightforward implementation on maps with long corridors. It is transformed into Digital FOV, at https://github.com/AllureOfTheStars/Allure/blob/last_standalone/src/FOV/Digital.hs, as described in Digital field of view implementation. The DFOV implementations turns out to be much simpler and somewhat faster than PFOV implementation. It's faster especially for conventional dungeons, because it needs half as many sweeps for rectangular rooms with the hero in the middle. OTOH, it makes a bit more tiles visible, so the algorithm is run for more tiles and refreshing them all is more costly. The required properties of the LOS algorithm: By setting visible = targetable (that's the choice for this game) and the properties of FOV, we get properties 3, 4. By drawing lines to target with Bresenham's line algorithm, swerving one tile, whenever required, we get 1 and 2. Note that the distance a projective covers is calculated using the chessboard metric, but the trajectory is determined by a (quasi?)metric induced by digital lines. This is a discrepancy, but much less pronounced than if the FOV radius and LOS distance was calculated with the Angband or Euclidean metric. Legal small print: The game is released under BSD3. Please contribute to this wiki or the source code repository only if you irrevocably agree to release your contributions under the BSD3 license. If you don't agree, please use the Issues interface instead. All kinds of contributions are gratefully welcome.
s3://commoncrawl/crawl-data/CC-MAIN-2015-35/segments/1440645176794.50/warc/CC-MAIN-20150827031256-00150-ip-10-171-96-226.ec2.internal.warc.gz
CC-MAIN-2015-35
3,267
7
https://citationsy.com/archives/q?doi=10.1007/978-3-319-33742-5_4
code
Using Managed High Performance Computing Systems For High-Throughput Computing Published 2016 · Computer Science This chapter will explore the issue of executing High-Throughput Computing (HTC) workflows on managed High Performance Computing (HPC) systems that have been tailored for the execution of “traditional” HPC applications. We will first define data-oriented workflows and HTC, and then highlight some of the common hurdles that exist to executing these workflows on shared HPC resources. Then we will look at Launcher, which is a tool for making large HTC workflows appear—from the HPC system’s perspective—to be a “traditional” simulation workflow. Launcher’s various features are described, including scheduling modes and extensions for use with Intel®;Xeon PhiTM coprocessor cards.
s3://commoncrawl/crawl-data/CC-MAIN-2020-40/segments/1600400210616.36/warc/CC-MAIN-20200923081833-20200923111833-00429.warc.gz
CC-MAIN-2020-40
812
3
https://blackpodcasting.com/how-to-grow-in-business-as-a-leader-david-donni-billionaire-b-305/
code
Growth can be intentional. You can examine what you are giving your attention to or assess the areas that need growth as an entrepreneur. Being an entrepreneur starts with "you" first. Do you feel as though you don't need any growth or help? When it comes down to it, self-growth will yield results in your environment around you and this will also influence how you lead people. Every business has snapshots of who the leader is throughout the organization. When the leader grows the people in the organization will also grow as individuals. It's usually a good thing when you are at the bottom within a higher level room than what you are use to because this is when there's an opportunity to grow the most. This will only help you as a leader. Follow Brian on IG: 👉🏾 Join the Morning Meetup Do you want more Social Proof? If you do, check out the Social Proof Blog! Tap in & get the resources you need to grow yourself & your business! https://www.thesocialproofpodcast.com/. *** Grab the Podcast EBOOK👇🏾 ** GO SUBSCRIBE to The Brain Picker Podcast on All Streaming Platforms!!
s3://commoncrawl/crawl-data/CC-MAIN-2022-49/segments/1669446711064.71/warc/CC-MAIN-20221205232822-20221206022822-00545.warc.gz
CC-MAIN-2022-49
1,092
7
https://www.freshstoretorino.com/blogs/news/fresh-fleece-for-the-freeze
code
Ok, so we’ve already introduced you to these, but the weather is about to force them to the forefront fully. With that in mind, here are a few shots we didn’t share last time. Rather than go over what is clearly stated here already, let’s just say these are the best fleeces we’ve seen all season and leave it at that. Oh, and you know you can get them at Fresh, don’t you? Yeah? Good.
s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947474671.63/warc/CC-MAIN-20240227053544-20240227083544-00638.warc.gz
CC-MAIN-2024-10
395
3
https://www.komando.com/video/komando-picks/the-skyscraper-that-almost-collapsed/788960/
code
Skyscrapers tower over and define the modern-day city. Normally, they’re built to be incredibly safe. But in 1974, one of New York City’s most iconic buildings faced an unthinkable engineering flaw. Stop robocalls for good with Kim’s eBook Robocalls interrupt us constantly and scam Americans out of millions of dollars every year. Learn Kim's best tricks for stopping annoying robocalls in this handy guide.
s3://commoncrawl/crawl-data/CC-MAIN-2021-25/segments/1623487584018.1/warc/CC-MAIN-20210612132637-20210612162637-00621.warc.gz
CC-MAIN-2021-25
414
3
https://www.tr.freelancer.com/work/in-java-programming/
code
...the Following question in best possible way on phone 1. HTTP status codes, ports, sql, basic linux commands. 2. what happens when you enter a URL into the browser and go through that in as much detail as possible. [login to view URL] about DNS, Load Balancing, some ports, cookies, protocols like HTTP, HTTPS. 4. If a lawyer came in to shut the website down ...you have ability to communicate and set realistic expectations - understand what programming is all about irrespective of language - able to prototype things quickly and have a reliable internet connection - java, php, node, python, skills are good to have - interested in history, culture and music is good - sense of humour is expected throw me an hourly Linear Algebra and Calculus and Statistics and Probability based projects ...So there are two ways to make this project done: 1. You could use his code. He has written it in Java. Related to his information, you need Maven and node.js. A contact to him is available, to ask questions. 2. You could begin a new project. The programming language would be your choise. But it has to be secure. Our old programmer will monitor the work We need a part time resource on Java, angular js2 and web services to give support for US people on weekdays morning around 90 minutes IST 6 00 am to 8 00 am will provide 20000 per month minimum 4 years of experienced candidate on all the technologies mentioned above only eligible for the bid. We are looking for a senior core java developer who had good experience with pdf files. The main task is "read table data from pdf files and should be well versed with other open source pdf tools" ...queries & executes function and commands with one touch finger print authentication via phone touch key via app. Integrated in the software/program is a dynamic QR code authenticator which can be embedded on web platforms in order to execute commands and process swift payments via scan & fingerprint authentication. It’s an app/software that can be Don't bid if you couldn't verify regarding the reference projects!~ I looking for talented & Honest software engineer who has experienced in Trading bot development with cryptocurrency. Use Bitmex to run the mad hatter strategy using 5 minute candles. See video here [login to view URL] See documentation here [login to view URL] I need a C++ Programming, Microsoft Exchange expert for my current projects. If you have knowledge please bid. Details will be shared in message with the freelancers. I need a C Programming, C++ Programming expert for my current projects. If you have knowledge please bid. Details will be shared in message with the freelancers. Please bid detail will be shared with winning bidder. I need the Microsoft Access, Database Programming expert freelancer for my current project. Details will be shared with winning bidder. Please bid if you have the experience.
s3://commoncrawl/crawl-data/CC-MAIN-2018-34/segments/1534221209562.5/warc/CC-MAIN-20180814185903-20180814205903-00183.warc.gz
CC-MAIN-2018-34
2,887
12
https://support.clickdimensions.com/hc/en-us/categories/202701887-Announcements
code
Keep up to date on major ClickDimensions announcements on topics such as release notes and outages. - ★ Investigating - Email Event Syncing Issue - ★ Release Notes Version 8.10 - ★ Release Notes Version 8.9 - ★ Dynamics 365 Compatibility with ClickDimensions - ★ ClickDimensions Lifecycle Support for Internet Explorer - ★ ClickDimensions Lifecycle Support for Microsoft Dynamics CRM 2011
s3://commoncrawl/crawl-data/CC-MAIN-2017-39/segments/1505818691830.33/warc/CC-MAIN-20170925130433-20170925150433-00618.warc.gz
CC-MAIN-2017-39
400
7
https://gitlab.xiph.org/xiph/vorbis-tools/-/issues/2214
code
compiler warning on assert in resample.c Hi, while installing vorbis-tools in Gentoo, the following warning is issued by the installer: QA Notice: Package triggers severe warnings which indicate that it may exhibit random runtime failures. resample.c:177:34: warning: comparison with string literal results in unspecified behavior [-Waddress] This is caused by an assert using == on strings. I've never seen any of the Vorbis code but i assume this warning can be fixed with the attached patch. oggenc -V reports «oggenc from vorbis-tools 1.4.0» but i didn't find that specific version in the bug submission form. The system is amd64.
s3://commoncrawl/crawl-data/CC-MAIN-2022-21/segments/1652663011588.83/warc/CC-MAIN-20220528000300-20220528030300-00705.warc.gz
CC-MAIN-2022-21
636
6
https://amzn.com/product-reviews/B002TXZS8A/ref=acr_arpsims_text?ie=UTF8&showViewpoints=1
code
Top critical review Complete, but not compelling Reviewed in the United States on December 26, 2018 The author received a Pulitzer Prize for this book. And I have the gall to only give it 3 stars (out of 5)??? Perhaps I am just a deeply-disturbed individual. Anyway … The book’s begins with the formation of political alignments that ultimately resulted in multiple countries all going to war at nearly the same instant of time. But the book’s purpose is to cover the first month of WW I fighting (which essentially set the groundwork for the type of fighting that would grind on for the remaining 4 years of conflict). The book kept illustrating that, in war, timing is critical. The German plan was for a short war. Attack and conquer France (before Russian forces can even get into position to attack eastern Germany) by luring the French forces eastward while German forces circle around them through Belgium and envelop them from the west. But Belgium resistance slowed the envelopment. And Russian forces were deployed against Germany more rapidly than expected. All seemed well explained: the plans, the delays, the strategies, the personalities, the relationships between events. (And I think Parisians are lucky they don’t speak German now.) So there was lots of good information – and that information was placed in context with the other concurring events. But this history seemed especially focused on getting all the names and places called out as events unfolded. Such precision, though perhaps expected, resulted in a “dry” (rather than compelling) read. One annoyance: The author occasionally included French phrases, but without translation. As I don’t know French, those phrases did nothing for me. The book had several maps. That’s usually a big plus for me, but they just didn’t display well on a Kindle. Bottom line: Appeared to be very complete coverage of the first month of WW I fighting, but the presentation didn’t do enough to engage the reader.
s3://commoncrawl/crawl-data/CC-MAIN-2020-50/segments/1606141746033.87/warc/CC-MAIN-20201205013617-20201205043617-00263.warc.gz
CC-MAIN-2020-50
1,994
9
https://community.logmein.com/t5/LogMeIn-Rescue-Discussions/Need-help-with-configuring-a-quot-Rescue-quot-business/td-p/1245
code
I have some questions that I cannot seem to find answers to. 1) Does anyone have a procedure in place to use "Rescue" for new customers who call and need help? What do you do first, second, third and so on? i.e. How do you collect billing info (Credit card info and so on)? And how do you charge them - before or after the session? 2) What works better, a flat rate or hourly? 3) What is the range for charging that seems proper for this type of service? I normally do onsite consulting and charge $75 - $100 an hour depending on the work and business type. I think Flat rate sounds good for this remote support though. I listened to the webinar given by "rent-a-geek" and the owner said that one customer session pays for the monthly price of Rescue and they do flat rates. Does this mean they are charging $99 flat rate per session? I just need some nice people to explain to me the proper way to run this type of remote support business. I have done a lot of research on this topic and can't find these answers. I am currently working on a disclaimer idea that I will make available to the forum shortly. There are no easy answers to your questions James. As far as procedures, we point the potential client to our pin code entry form, and create a connection as soon as possible. The ability to remotely connect - answers more questions than any conversation can. If the client does not want your assistance - you or they can always disconnect. I like a combination of Flat Rate promo type prices, and time based for anything that is not easy to catagorize. We charge our clients credit card at the conclusion of the session. The rate for this type support ranges from about 1-2 dollars per minute. Thank you JohnB. You have provided more information that is helpful, than what I have been able to find online. I was thinking $50 for the first hour then $1 a minute after the first hour. And not charging if their problem is not fixed. Have you had any problems with customers arguing about paying after the session is over (provided you fixed their problem)? If so is this common? Or the customer gives you bad credit card info? What if they have a bad component? I would think to charge for the time to diagnose the issue, but it's impossible remotly to replace the bad component. And what if the customer's PC is really slow, is it something that you take into account when charging them? Or if you have to defrag do you tell them to call you back when it is finished so you don't bill them for the defrag time? Or would you stay connected and just not charge them until it is done and you continue helping them? My biggest problem is, is that I try to always make sure the customer is happy with me and sometimes this means losing money when someone else would have charged them for the same thing... Anyone please feel free to provide your $.02 on these issues individually or all of them. I think together we can assemble a great instructional thread for others. The best reason for flat rate prices is that you are not required to work consistently on only one unit at that moment. I think, if you charge for time - you'd better deliver your undivided attention to that client. Most of the technical issues that I deal with are related to malware "poluted" pc's. There is no fast cure for these systems. I get my clients off the phone after the first 5-10 minutes and tell them I will call them back in about an hour. I have the luxury then of starting the tasks and working on something else at the same time. My credit card processing is "real time" so the only times that a card did not clear, I was able to get an alternate before I let the client go. Some things will take 2 min and others will take 2 hours but lets face it, you can be running a bunch of sessions at the one time and you really dont do anything when a scan is running for example. Sure you will take a hit on some things that do take forever but put yourself in the clients shoes, fixed fee is always going to appeal better than an hourly rate etc The chances are that they dont know you so there is an element of trust that needs too take place, at least with on site stuff you have a face and they can see you. I just think a fixed fee takes away the unwillingness to call you in the first place. I have a visa machine, but online payment stuff is probably better. I take the payment after the session. Again its a trust thing.
s3://commoncrawl/crawl-data/CC-MAIN-2022-40/segments/1664030334912.28/warc/CC-MAIN-20220926144455-20220926174455-00489.warc.gz
CC-MAIN-2022-40
4,413
32
https://writing.stackexchange.com/questions/42466/reversing-title-and-subtitle-in-foreign-edition
code
I am publishing a book with an American publisher. My contract allows me to make a separate contract with one particular foreign publisher for a translation in his language. That foreign publisher wants to reverse the title and subtitle in the translation. I support that idea. Two questions. Is this legal? Do I need to get permission from my American publisher for this switch? It's very common to change titles with new editions of a book. Obviously, the title will be translated to a non-English language with this new publisher. When translating, it's common to change the order of words as well. Sometimes titles change in different editions for the same language. Harry Potter And The Sorcerer's Stone changed to Harry Potter And The Philosopher's Stone when moving from the original British edition to the American one. The Psychology of Everyday Things changed to The Design of Everyday Things when going from a hardback to a paperback within the U.S. If you're worried, the best action is to ask your original publisher. Or you could simply drop them a line saying "[Publisher] plans to release an edition in [language] by approximately [date] with the title [title]." If they say "thanks for letting us know" you're good. If they have an objection, they'll tell you. That depends on what the legal wording of "allows me to make a separate contract with one particular foreign publisher" entails. Do YOU make that contract, legally moslty independent with the foreign publisher? Or is your US Publisher still involved in that contract? [Also I would just call my person from the US publisher and ask them, since it sounds like they have absolutely no problem with this new foreign publisher / actively allowed it]
s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296816942.33/warc/CC-MAIN-20240415045222-20240415075222-00791.warc.gz
CC-MAIN-2024-18
1,723
8
https://www.ire.org/events-and-training/event/3433/4241/
code
Python 3: Data cleaning and visualization Now that you’ve got a handle on pandas, it’s time to jump into some advanced topics. You know how to import a dataset, but what happens when you load the data and nothing looks right? We’ll walk through cleaning up a dirty dataset with pandas. Then we’ll jump into the fun part: visualizing the data you’ve analyzed with matplotlib. This session is good for: People who can load and perform basic summary and grouping functions in pandas. Data journalist at the International Consortium of Investigative Journalists. Previously Karrie worked for the RTÉ Investigations Unit in Dublin, The Times of London & Sunday Times and the Thomson Reuters Foundation in London. No tipsheets have yet been uploaded for this event.
s3://commoncrawl/crawl-data/CC-MAIN-2020-45/segments/1603107898499.49/warc/CC-MAIN-20201028103215-20201028133215-00602.warc.gz
CC-MAIN-2020-45
770
5
https://www.themarysue.com/tag/mike-davey/
code
by Robert Quigley Mar 28th functionalist philosophers use to present their theory of mind as a series of inputs and outputs. At that, Turing machines, as Alan Turing proposed them in 1936, have quite a bit in common with modern computers, whose elegant, thought-experiment cousins they might be considered to be: In non-technical terms, a Turing machine can be visualized as an indefinitely and infinitely long tape divided into rectangles (the memory) with a box-shaped scanning device that sits over and scans one component of the memory at a time. Each unit is either blank (B) or has a 1 written on it. These are the inputs to the machine. The possible outputs are:Remarkably, Mike Davey recently made theory into reality when he built a working Turing machine using a felt-tip pen, a Parallax propeller, motors, and 1000 feet of white film leader. Video after the jump: Read More - Halt: do nothing. - R: move one square to the right. - L: move one square to the left. - B: erase whatever is on the square. - 1: erase whatever is on the square and print a '1.
s3://commoncrawl/crawl-data/CC-MAIN-2018-47/segments/1542039741491.47/warc/CC-MAIN-20181113194622-20181113215819-00022.warc.gz
CC-MAIN-2018-47
1,064
8
https://cmsthemebuilder.wordpress.com/2009/05/27/organization-and-chunking/
code
I have been working on the Theme Builder UI for a while now, and I have come across some typical problems when working with large-scale software: organizing the data into meaningful section, or “chunking” the data. To overcome these problems, I have broken the toolbar sections into their own HTML pages, and used server side includes to piece them together. This will be replaced in the future with some PHP code. I originally chose SSIs, so anyone can add or remove sections by simply adding the appropriate SSI directive to the page. There is one main page, toolbar.html, which has the code for the main toolbar UI. The main object is called CMSThemeBuilder, which includes a few functions: CMSThemeBuilder.dump([outputDIV])– this function calls the dump() method in each object., optionally writing the output to the named div tag, outputDIV. [window.]print()– this is a global method which prints to the FireBug console, if installed. CMSThemeBuilder.register(StyleObj)– this function registers the given StyleObj with CMSThemeBuilder.
s3://commoncrawl/crawl-data/CC-MAIN-2018-30/segments/1531676591296.46/warc/CC-MAIN-20180719203515-20180719223515-00556.warc.gz
CC-MAIN-2018-30
1,050
7
https://www.internations.org/mumbai-expats/forum/cooking-lessons-672314
code
Cooking Lessons (Mumbai) I recently moved to Khar West/Bandra West from the US and I am looking for some one, preferably English speaking, who can teach me how to cook the local cuisine. I would prefer 1-on-1 lessons but am also open to group classes. Does anyone have any suggestions? Many thanks in advance!
s3://commoncrawl/crawl-data/CC-MAIN-2019-04/segments/1547583657867.24/warc/CC-MAIN-20190116195543-20190116221543-00478.warc.gz
CC-MAIN-2019-04
309
2
https://unix.stackexchange.com/questions/126836/simulate-a-usb-drive-using-linux
code
Is there any way that I could use what I'll call PC-A to act like a USB device to a second PC, PC-B? PC-A <<-- Double male USB cable --> PC-B The result I'm looking to achieve is have various directories or images on PC-A appear as a USB drive to PC-B when connected and be able to change directories when needed and appear to PC-B like a different USB drive has been inserted. Also as an extension of my question could I achieve a similar result but emulate a USB mouse or keyboard, or forward the mouse and keyboard from PC-A to PC-B through said interface? PC-B would be one of any number of old PCs I am testing. PC-A would ideally be a means of simplifying or somewhat automating the process. I'm also simply curious if it can be done just because I like to try out of the box stuff anyways even if the end result isn't practical for my use-case. :P
s3://commoncrawl/crawl-data/CC-MAIN-2020-05/segments/1579250589560.16/warc/CC-MAIN-20200117123339-20200117151339-00106.warc.gz
CC-MAIN-2020-05
854
5
http://blog.fxtrans.com/2010/12/languages-of-world.html
code
I recently came across Linguistic Search Solutions' website. The firm offers identity search solutions that take into account "variations in names caused by different transcription standards, or the phonetic similarities specific to each language". Pretty interesting stuff. Poking around their site, I found the following map of world languages (click to go to a larger version): In contrast to many other maps that try to communicate language groups around the world, this one offers a clear view, with easily discernible gradations and differences in color. Nicely done. While you are thinking about languages around the world, you might want to take a look at the following: - Ethnologue maintains an amazing wealth of information on 6,909 living languages - Learn how to say "thank you" in over 465 languages - Mark Rosenfelder has compiled the numbers 1 to 10 in over 5000 languages - How to reliably identify languages and countries ForeignExchange Translations provides specialized medical translation and software localization services to pharmaceutical and medical device companies. Contact us to learn more.
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917118831.16/warc/CC-MAIN-20170423031158-00061-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
1,118
9
https://www.fi.freelancer.com/projects/php/build-website-32257579/?ngsw-bypass=&w=f
code
A website for reselling giftcard. Where user can list different vouchers... And other user can negotiate and buy the listed (unused) giftcard 24 freelanceria on tarjonnut keskimäärin ₹27107 tähän työhön Clear! I can help you with this and I can start working now. This project will be done professionally. Looking forward to have a conversation with you.
s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320305494.6/warc/CC-MAIN-20220128104113-20220128134113-00713.warc.gz
CC-MAIN-2022-05
362
3
http://www.danielschneller.com/2008/03/enable-explorer-window-titles-on-vista.html
code
Enable Explorer Window Titles on Vista Something struck me recently about the appearance of the Vista desktop. I did not consciously realize it at first. What's "wrong" with this picture: If you do not see it, compare it with this one: See the difference? The second screenshot was taken with "AeroBar" loaded. The only thing it does is make use of the otherwise wasted space in the title bar by displaying the folder name. Does anyone know why Microsoft would not do this by default?
s3://commoncrawl/crawl-data/CC-MAIN-2022-40/segments/1664030335396.92/warc/CC-MAIN-20220929225326-20220930015326-00695.warc.gz
CC-MAIN-2022-40
484
4
https://autoexec.gr/index.php?/blogs/blog/52-apostolidis-cloud-corner/page/4/
code
Azure VM Image Following one of my earlier posts, about Azure Managed Disks, lets see how easy it is to create an Azure VM Image from an Azure VM that uses Managed Disks. The first step it to Sysprep/Generalize the source VM. Otherwise the VM that will be created will not start. Select Generalize and “Shutdown”. After that wait the VM to shut down and go to the Azure Porta, at the VM’s blade and click “Capture”. Now, the “Create Image” blade will open. Enter a name, select a Resource Group and Azure Backup Reports A new feature is in public preview, the Azure Backup Reports. Now we can have the Azure Backup Reports at the OMS Workspace, Event Hub and Power Bi. You can use Power BI to view report dashboard, download reports and create custom reports The configuration has two steps, one to configure the Azure Backup Reports connection with each service and the other is to get the data at each service. First go to a Recovery Services vault and select Backup Reports. Next press the Config Azure Log Analytics | CPU Performance Monitor In this article we will create a CPU Performance monitor View for our servers at the Azure Log Analytics (OMS) Portal. At the Microsoft Operations Management Suite (OMS) portal press the + button to create a new View The View Designer workspace will open. Select the “Line chart & callout” At the Properties blade enter a Name, something like “CPU Performance Monitor”, add the below query and press Apply Type:Perf CounterName="% Processor Time" How to disconnect a mailbox & re-assign it to new user in a Hybrid Scenario Scenario objectives: We have an Exchange Hybrid setup between on-premises and Exchange Online (Office 365). All users are synced and the mailbox is located at Exchange Online. We need to separate an existing mailbox from its user account and re-connect this mailbox to a new user account. If the mailbox in this scenario was located at the on-premises Exchange it would be an easy process just using the Exchange Managem High Level Steps to Create a Syslog Server for Azure OMS (Log Analytics) This post is a gathering of TechNet articles and 3rd party blog posts that my college John Dandelis followed to create a linux Syslog server in order to monitor network devices on Operations Management Suite (OMS). Its not a complete step-by-step guide but it is very useful as a reference. -Install Ubuntu server VM. Use any Bash Shell to connect to Ubuntu Server. (http://win-bash.sourceforge.net/) To install Bash sh Azure Managed Disks | Easy Scale, High Available, Secure Azure Managed Disks is almost five months old, start using it, its simple, easy to scale, high available and secure. As Microsoft says, “Let Azure take care of your disks”. The idea is simple, choose the performance tier and the size you want. After that you are free to change your mind! You can change the performance tier (yes, switch between SSD & HDD) and the size just with click. Lets get it started. First of all we need to enable Azure Web Farm using IIS & Azure File storage This post is my view of a complete guide, from A to Z, including both the Windows Server part and the Azure Portal part on how to build a Web Farm using IIS & Azure File storage. Following this guide you will have a functional two server IIS Web Farm using Azure File storage. To create a Web Server Farm the mail requirement is a high available common storage. I see that when deploying on Azure, a lot of people are using DFSR for common storag Thank you all for participating at my session today at Athens Azure Bootcamp, about how to Protect your data with a modern backup, archive and disaster recovery solution. Bad things happen, even to good people. Protect yourself and avoid costly business interruptions by implementing a modern backup, archive and disaster recovery strategy. See how you can securely extend your on-premises backup storage and data archive solutions to the cloud to reduce cost and complexity, while achieving Save 40% on Windows Azure VM made easy creating a new Windows Azure VM you will notice a new selection at the Basics step. It is the Hybrid Use Benefit. Using this benefit you can save up to 40% on a Windows Azure VM cost using your own license with software assurance. You just need to have a Windows Server Standard or Datacenter license with Software Assurance, and it is not restricted to any specific licensing program, it is available to all licenses with Software Assurance. At the final step, Azure AD | Secure Web Application Publishing Application Publishing Azure Active Directory Application Proxy is a very easy and secure way for web application publishing using the extremely secure Azure AD authentication mechanism. There are a tone of features, like SSO and 2 Factor Authentication. But lets see the basic here. You have a web application that you are using internal to your network, not even https, or you have developed a web application and you want an easy and safe way to publis Azure VM Backup directly from VM’s blade By Pantelis Apostolidis | December 28, 2016 0 Comment Azure VM Backup directly from VM’s blade Azure makes the VMs’ administration simpler every time. Today we will view a very nice new feature, the Backup shortcut at the VM’s blade. Just click on the VM and select Backup All you have to configure is the Backup Vault name and the Backup policy at the next easy step and press Enable Backup at the bottom of the “Enable backup” blade and that’s all! Exchange 2013/16 Set Virtual Directories Notes By Pantelis Apostolidis | December 13, 2016 0 Comment You can find all this info at many many blogs allover the internet, I just want to have a note here to have them gathered for ease. Outlook Anywhare Get-OutlookAnywhere | Select Server,ExternalHostname,Internalhostname Get-OutlookAnywhere | Set-OutlookAnywhere -ExternalHostname mail.mydomain.com -InternalHostname mail.mydomain.com -ExternalClientsRequireSsl $true -InternalClientsR Auto Start/Stop an Azure VM (ARM) For Azure VMs that are not needed to be running 24/7, we can use Azure Automation to schedule automatic Stop (Deallocate) and Start. First ensure to reserve resources if needed, such as the Private and the Public IP. Now lets see how we will Auto Start/Stop an Azure VM (ARM). First create an Automation Account, go to the Azure Portal, expand more services and search for automation. Then click the “Automation Accounts” At the Automation Accounts press “Add” At <h1>Auto-Shutdown Hyper-V free with USB UPS</h1> <p>Recently i installed a Hyper-V 2012 R2 server (the free version) but my UPS doesn’t support Windows Core. No problem, we have PowerShell!! after some search on various sites – blogs – etc i end up creating the following script. It checks the battery status every 3 minutes, using WMI and when the battery drops below 50% is sends the shutdown signal. As long as you set the VMs to save on shutdown you are OK!</p> <p>I <p>First we need to create a certificate request</p> <p>Open the Microsoft Exchange Management Console and navigate to Microsoft Exchange -> Server Configuration.</p> <p>On the right panel press the “New Exchange Certificate”</p> <p id="IcnajXr"><img class="alignnone size-full wp-image-1027 " src="http://www.e-apostolidis.gr/wp-content/uploads/2016/07/img_579b27be99f9e.png"alt="" /></p> <p>The “New Exchange Certificate” wizard will <p>Azure blob storage is billed based to how much data you use. So you can have an 1023 GB disk but if you use only 20 GB you will be billed for 20 GB. But, <img src="https://s.w.org/images/core/emoji/72x72/1f642.png"alt="?" class="wp-smiley" style="height: 1em; max-height: 1em;" /> , if you write more data, lets say 50 GB and then you erase them, the free space will not automatically be released.</p> <p>sandrinodimattia, https://github.com/sandrinodimattia, released an <p>Lets say you have an Office 365 account and cloud only users with mailboxes and now you decide that you want to sync it and match the Office 365 users with your Active Directory users.</p> <p>I prepared a lab with one DC and I created a trial Office 365 E3 account with custom domain. I created users with the same username to both. At Active Directory I set the UPN to match the Office 365 user name and also added the email address.</p> <p>Next I enabled directory <div class="text geshifilter-text">this is something very common lately and always I follow this post: <a href="http://windowsitpro.com/windows-server-2003-end-support/migrating-dhcp-server-2003-server-2012-r2">http://windowsitpro.com/windows-server-2003-end-support/migrating-dhcp-server-2003-server-2012-r2</a></div> <div class="text geshifilter-text"></div> <div class="geshifilter"> <div class="text geshifilter-text">Netsh<br />DHCP<br /& <div>THE BEST SQL SERVER PERFORMANCE MONITOR COUNTERS TO ANALYZE</div> <div></div> <div>– These are listed OBJECT first, then COUNTER</div> <div>– Memory – Available MBytes</div> <div>– Paging File – % Usage</div> <div>– Physical Disk – Avg. Disk sec/Read</div> <div>– Physical Disk – Avg. Disk sec/Write</div> <div>– Physical Disk – Disk Reads/sec</div> <div>– Physical Disk – Disk Writes/sec</ <p>Open the Office 365 Exchange Administration Console and go to Recipients > Migration > More > Migration endpoints and click on the plus sign to add a new endpoint.</p> <p><a href="http://www.e-apostolidis.gr/wp-content/uploads/2016/05/cme1.png"><imgclass="alignnone size-full wp-image-1002" src="http://www.e-apostolidis.gr/wp-content/uploads/2016/05/cme1.png" alt="cme1" width="867" height="275" srcset="http://www.e-apostolidis.gr/wp-content/uploads/2016/05/c The exchangeserverpro.com site has the below excellent articles, to create the certificate request: to compete the pending request:and to enable it: The post Exchange 2013 Add public certificate and enable it appeared first on Proxima's IT Corner. <a href="http://www.e-apostolidis.gr/microsoft/exchange/exchange-2013-add-public-certificate-enable/"class='bbc_url' rel='nofollow external'>Source</a> <p>I was looking for a way to have a list with many details about VMs of Azure Classic deployment. Some of the details are VM Name, HostName, Service Name, IP address, Instance Size, Availability Set, Operating System, Disk Name (OS), SourceImageName (OS), MediaLink (OS), HostCaching (OS), Subnet, DataDisk Name, DataDisk HostCaching, DataDisk MediaLink, DataDisk Size.</p> <p>I started with PowerShell ISE and some technet search and after a lot of test I created this script:< File Server in-place Domain Migration When migrating to a new domain a major part is the file server, especially if there are a lot of data and different permissions. Thankfully Microsoft has a very helpful tool called SubInACL. This tool can be used to read and update security permissions and is much helpful for file server in-place domain migration. The tool can be downloaded here: https://www.microsoft.com/en-us/download/details.aspx?id=23510 But after searching a lot there is not a specific After my previous post, the internal load balancer with two VMs, this is a scenario using the External Load Balancer. The configuration includes a Load Balancer with a Static Public IP at the frond end and two VMs at the back end. The load balancer has two static routes for RDP, one for each VM and one load balance rule, the TCP port 80, common for web sites and applications. It uses a probe that checks a web page on both hosts to verify if they are active. Lets start. First we need to insta <h1><strong>AzureRm | Create Site to Site VPN</strong></h1> <p>This post is part of a general idea, to create an end-to-end high available application infrastructure solution in Azure using internal load balancer with the new AzureRm commands and Azure PowerShell v.1.0 preview.</p> <p>We will create a Gateway, request a Public IP and establish a Site to Site VPN. At the time I am writting this post there is no option to create the VPN ising the Portal, t
s3://commoncrawl/crawl-data/CC-MAIN-2020-40/segments/1600400188841.7/warc/CC-MAIN-20200918190514-20200918220514-00714.warc.gz
CC-MAIN-2020-40
12,021
35
http://units.wesnoth.org/master/mainline/mk_MK/Master%20Bowman.html
code
Master bowmen have reached the zenith of their art, inasmuch as any human is capable. Armed with both a sword, and a great yew bow, these warriors crown battalions of archers with their presence, bringing down many a foe with their well-aimed shots. Their skill with the sword is also not to be discounted; they are easily as good with it as any novice swordsman. Of the many races in the world, only the elves surpass humanity in archery, and their human counterparts have speculated, perhaps in envy, that this is only by dint of age. Attacks (damage × count) |sword||сечило||8 × 3||melee| |longbow||pierce||11 × 4||ranged|
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100779.51/warc/CC-MAIN-20231208212357-20231209002357-00092.warc.gz
CC-MAIN-2023-50
634
4
https://www.pasadena.edu/strategic-communications-and-marketing/guides-and-reference/ou-campus-training/basic-editing/styles.php
code
Before You Edit The current text on your pages have already had styles applied to them to make sure that they adhere to the PCC design style guide. The below information should be used to add new text to your page. It's best practice to leave the current styles as is. The Styles dropdown on the toolbar allows for a pre-defined style to be applied to text by selecting the style from the list. A full list and explanation of available styles are explained in the Visual Style Guide. Types of Styles The styles you will use when editing your pages are: - Text styles will always start with " Text | " and can be applied to any text on your page. - Text styles will change the way the text looks, but will not change any code to identify the text as a heading or paragraph (i.e. if you select Text | Heading XL from the styles menu, the text will look the same as a Heading 1, but will not identify the content as being a Heading 1 in the underlying code. - Text Styles should not be used in place of the Headings from the Format Dropdown when a heading is needed – only to create the style headings when desired. - P Styles start with " P | " and can be applied to any Paragraph text - HR styles start with " HR | " and can be applied to any Horizontal Rule (HR). - Horizontal Rules are lines that are used to help break up text. - A styles start with " A | " and can be applied to change the style of a link. Apply a Style From the Styles Dropdown Before applying a style, make sure you review the design style guidelines to ensure that you are using the style correctly. To apply an element from the styles dropdown: - Select the text or Horizontal Rule you wish to apply a style to - Click the styles drop-down from the toolbar - Scroll to find the style and click it - This will apply the choice Note: You can add multiple styles to text or an HR. After you add the first style, re-select the text and repeat the above steps. Remove the Applied Style - Select the text or HR you wish to remove a style from. - From the Toolbar menu, click the “Clear Formatting” button. This will remove the styles that have been applied. Next Up: 4.8 - Save Your Work
s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296819273.90/warc/CC-MAIN-20240424112049-20240424142049-00125.warc.gz
CC-MAIN-2024-18
2,161
24
https://auniakahn.com/episode20-how-to-secure-a-solo-exhibition-submit-a-proposal/
code
20: How To Secure A Solo Exhibition & Submit A Proposal One of the most coveted experiences by artists is securing a solo exhibition. There is a lot that goes into this aspect of an artist’s career, but we got you covered! In this episode, we provide useful information and direction to any artist interested in pursuing a solo exhibition of their dreams.. - Strive for continuous improvement, instead of perfection. Kim Collins
s3://commoncrawl/crawl-data/CC-MAIN-2021-10/segments/1614178358203.43/warc/CC-MAIN-20210227054852-20210227084852-00555.warc.gz
CC-MAIN-2021-10
430
3
https://discuss.codecademy.com/t/can-we-apply-tick-marks-in-matplotlib-without-creating-an-axes/353085
code
Can we apply tick marks in Matplotlib without creating an Axes? If you have more than one axes axis, you should usually apply ticks directly to each axes one. However, if you only have one plot, then you do not have to create and apply to an axes axis, but instead just apply to the entire plot area directly. Many of the functions you apply to axes like set_xticks have an equivalent when applying to the entire plot. Usually, their equivalents require just adding set_ for the beginning of the method for axes. # Equivalent methods for plot and axes Yes, we can. For a single plot, we can do it in a single line of code for each: plt.yticks([0.10, 0.25, 0.5, 0.75], ['10%', '25%', '50%', '75%'])) Isn’t it simpler? plt.set_yticks([0.10, 0.25, 0.5, 0.75]) plt.set_yticklabels(["10%", "25%", "50%", "75%"]) this code say ‘module’ have no attribute ‘set_xticks’ What is the purpose of ticks in matplotlib? @mtf @appylpye Ticks enable one to see precisely where the values apply along the axes of a graph. It should be ax.set…(name) as below: ax.set_yticks([0.10, 0.25, 0.5, 0.75]) ax.set_yticklabels([“10%”, “25%”, “50%”, “75%”] I am getting following warning: c:\pyproj\venv\lib\site-packages\ipykernel_launcher.py:14: MatplotlibDeprecationWarning: Adding an axes using the same arguments as a previous axes currently reuses the earlier instance. In a future version, a new instance will always be created and returned. Meanwhile, this warning can be suppressed, and the future behavior ensured, by passing a unique label to each axes instance. I believe that error occurs when you’ve effectively called for axis creation twice. At this moment this behaviour is allowed but in the future it is likely to be changed and therefore you should always alter existing objects with their own methods. I dont know exactly what code you used but here’s a quick example- # create a figure and axis instance and assign them to fig and ax fig, ax = plt.subplots(1, 1) # adjust the axis limits with pyplot convenience function plt.axis([0, 10, 20, 100]) # alters the already created axis # WARNING!! In the future this may instead create a new axis instance Instead it would be good to get in the habit now of relying on instance methods and such (doubly so due to the deprecation warning), exmple below- fig, ax = plt.subplots(1, 1) # documentaiton suggested equivalent- # ax.set(xlim=(xmin, xmax), ylim=(ymin, ymax)) ax.set(xlim=(0, 10), ylim=(20, 200)) Matplotlib Documentation is very confusing and is not planned documentation. It is hard to find proper function parameter help. As of now, I am focusing non-oops way to plot. After I am done, I would like to do OOPS way as you guided me. hi, my question is, in this exercise we already had a list of parameters for the y_axis, why do we need to define ticks again when the graph as already plotted according to the given y_axis (conversion) values
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656104655865.86/warc/CC-MAIN-20220705235755-20220706025755-00669.warc.gz
CC-MAIN-2022-27
2,922
34
http://dallasqixmw.total-blog.com/the-smart-trick-of-java-assignment-help-that-nobody-is-discussing-12397826
code
The smart Trick of java assignment help That Nobody is DiscussingThis assignment was a bit far more of a challenge, especially with environment the Corporation, but I used to be capable of get it to pass the checks. Sets a process house price. The assets variable is usually a string with no spaces that signifies the title in the residence. The value variable is really a string that represents the value from the property. If price is a string with spaces, then enclose it in quotation marks (for example -Dfoo="foo bar"). There are plenty of approaches outlined inside LinkedList course that is utilized to conduct the particular action inside your linked checklist. So my suggestions on your connected-checklist assignment is usually that be sure to be aware of LinkedList class and its process then commences resolving your task If you still have any concern inside your java joined checklist homework or else you are trying to find really serious java assignment help. Just Get hold of me now. I'm accessible for java homework help It is possible to put in the latest and safe Oracle Java 7 by a script (JRE only) or by a command line strategy. Both of those are uncomplicated to apply. Thx a lot for the feedback. Your report is realy excellent. Just on more problem: Can this be also a standaloe tomact with a seperate server or ought to this be the tomcat wherever enterprise objects is installed in? I acquired my assignment by the due date and it had been spot on. Whilst I gave him very considerably less time to do my programming assignment he did it correctly and without having a one error. Extremely extraordinary. If you are searching for someone to carry out ur assignment last second and assured great work then glance no more. Meta Stack Overflow your communities Join or log in to customize your listing. far more stack exchange communities enterprise blog site So my recommendations for resolving this type of Java Assignment. Be sure to apply the binary file enter-output workout. Then start off fixing your Java Homework. I'm certain you can in a position to unravel next your problem. GCJ is often a front conclude into the GCC compiler that may natively compile the two Java(tm) source and bytecode documents. The compiler could also crank out class documents. Gcjwebplugin is somewhat World wide web browser plugin to execute Java applets. Validates all modules and exit. This option is helpful for finding conflicts and other errors with modules to the module route. At times a dilemma is understood, so I take advantage of to try to catch to catch the happening exception. It great site truly is very little really hard to explain in this article. But once you spend time with it. You might have an understanding of its strategy. Getting the greatest programming assignments is tough from on the net resources that could change explanation out unreliable or are unsuccessful to give you the very best confidentiality. We promise safe procedures for conducting your private company and receiving by far the most skilled aid with your programming homework. I have added dependent project in my project through pom.xml entry. But those are downloaded as jar exactly where I can discover .course file only. Should you be acquiring a excellent quality inside your Java programming assignment, It's the the perfect time to get some action to increase your poor grade.
s3://commoncrawl/crawl-data/CC-MAIN-2019-04/segments/1547583875448.71/warc/CC-MAIN-20190122223011-20190123005011-00512.warc.gz
CC-MAIN-2019-04
3,390
14
https://agitat0r.newgrounds.com/news/post/967449
code
Contact Info / Websites Since many on the forum asked about music software for their beginner production, I decided to write this guide on which free or cheap music software are best for your choices. Like other ppl, I also came from the same way that you're going through, and I have many experience with these software. Freeware vs shareware: Most of the stuff posted here are freeware that have not restriction. Shareware are useless and doesn't work most of the time. Linux vs other platform: I would expand all the tools to Linux, and at least to Wine-based. Because there are many great tools that only work well on Linux, and I wish their developers would do it for other platforms. Beside, Linux is 100% free, as in both free beer and freedom to tinker, so you could pick up a distribution and use it solely for music. To put it simple, as "why Linux?". You save money for an operating system, while you could instead spend it on the necessary software you prefered. Since Linux, and many DAWs are free, there is no reason to spend on extra. Unless you do the illegal way. Digital Audio Workstation (DAW) Best free and open source multiplatform DAW ever. Work across any platform, especially Linux. Literally has everything you needed, from piano roll to audio editor. One of the best free DAW you could get around and use without problem. It is the best alternative to LMMS. Once you get pass the learning curve, OpenMPT is a very powerful tool to use. In contradicted to what people believe, you could track a whole track in less than an hour, in compared to a couple hours on other DAW. This was tracked in less than 2 hour, including sample editing. Linux has its own gem, like many other free DAW, qtractor is amazing on its own. Free alternative to Finale and Sibelius. Support VST via JACK. Here is MuseScore in action with Guitar Rig on Kubuntu (KDE version of Ubuntu). Tracktion 5 Win/OSX/Linux Rising star of alternative to professional paid software. VST and Library Kontakt Player Win/Mac/Linux(Wine 1.8.x) Best free sampler plus the Factory Selection. And despise rumor, Kontakt does work on Linux (Ubuntu/Mint/Debian). Here is Kontakt in action on LMMS with Linux Mint. Reaktor Player Win/OSX/Linux(Wine) Modular programming software by Native Instruments.
s3://commoncrawl/crawl-data/CC-MAIN-2017-43/segments/1508187823478.54/warc/CC-MAIN-20171019212946-20171019232946-00886.warc.gz
CC-MAIN-2017-43
2,278
19
https://masterblasterhome.com/threads/pnw-fir-forest-losing-limbs-getting-thin.26905/
code
I can't see the pics big, but I'm assuming the clearcut advice was given out of commercial consideration. If this isn't a project to harvest timber for $, a clearcut will give you a stripped piece of ground you'll never see grown up(I seem to remember you being ~50 based on appearance). You'd be 80 before it looked like much. If it's just for appearance sake so you feel happy when you see it, maybe someone could give advice on fairly fast growing species for the location, and you could selectively thin, add fast growing trees, and have a nice mix of wood to visit. Sooo much easier to clear cut for the random actor, just wreck all the area, plant back (or even not) take the money and let the owner to see all alone what will happen. No need to have skills in forestry and land management. Sweet. Sound advices, planning, actual management, life (lives) long following, on the other hand... not so attractive.
s3://commoncrawl/crawl-data/CC-MAIN-2022-49/segments/1669446710936.10/warc/CC-MAIN-20221203175958-20221203205958-00312.warc.gz
CC-MAIN-2022-49
916
3
https://cs.longwood.edu/java/docs/api/org/omg/Dynamic/package-summary.html
code
This package contains the Dynamic module specified in the OMG Portable Interceptor specification, http://cgi.omg.org/cgi-bin/doc?ptc/2000-08-06, section 21.9. Please refer to that OMG specification for further details. For a precise list of supported sections of official specifications with which the Java[tm] Platform, Standard Edition 6 ORB complies, see Official Specifications for CORBA support in Java[tm] SE 6. Submit a bug or feature For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679099942.90/warc/CC-MAIN-20231128183116-20231128213116-00359.warc.gz
CC-MAIN-2023-50
764
5
https://docs.brinqa.com/docs/app-event-logs/
code
Application Event Logs This article details the application event logs in your Brinqa Platform, how to view and interpret the logs, and how to modify the frequency of purging the event logs. Application event log is a record of varying events that occur in your Brinqa Platform. For example, when a user logs in or out of the instance, when a flow in a data orchestration executes and if it was successful or failed, or if a calculation of a dataset finishes without any error. You can use the application event log to troubleshoot any errors you may come across in your instance. To view your application event logs, navigate to Administration on the upper-right corner and under System, click Logs. The following table details the main elements of the application event log page: |Transaction||Displays a 36-character string with a mix of numbers and letters. You can copy and paste the Transaction ID from a different page into the Application Event Log search bar to locate the specific event you are attempting to locate or troubleshoot. Click the transaction to view details of the record in the event log.| |Outcome||The outcome of the event. Outcomes include: Cancel, Failure, Not applicable, or Success.| |User||The user who originates the event.| |Category||The category of the event. Categories include: Audit, Automation, Computation, Integration, Security, or View.| |Severity||The severity of the event log. Severity levels include: Error, Info (short for information), or Warning. | |Message||The summary of the event.| |Date time||When the event occurs in the instance.| Modify the application event log settings By default, application events logs are purged after 35 days. If a high number of records in your application event log causes slowdown or instability in your instance, you may want to purge the logs sooner. On the other hand, you may be required to keep your logs for more than 35 days due to compliance. In any case, you can change the frequency of which the application event logs are purged. To do so, follow these steps: Navigate to Administration > System > Logs. Click Settings . Under Application event logs settings, click the days option. A pane appears. Enter the number of days which you want to purge the records in the application event log. The default setting is after 35 days. Click Update and then click Close.
s3://commoncrawl/crawl-data/CC-MAIN-2023-23/segments/1685224643585.23/warc/CC-MAIN-20230528051321-20230528081321-00481.warc.gz
CC-MAIN-2023-23
2,357
18
https://johannes-goss.de/portfolio/corevision-simplifying-machine-vision-applications-with-no-code-platform/
code
Introducing core:vision: A No-Code Platform for Machine Vision Applications core:vision is a no-code platform that allows users with no prior knowledge to easily and quickly implement machine vision tasks through intelligent design and intuitive user guidance. Potential applications include pick & place, quality control, testing, machine tending, assembling, and packaging. Empowering Users with Intuitive Design and No-Code Technology The design approach for core:vision focuses on a user-friendly interface that simplifies the process of implementing machine vision tasks. By leveraging the power of no-code technology, core:vision allows even inexperienced users to easily set up and manage their machine vision applications. A Promising Prototype for the Future of Machine Vision Solutions core:vision is an early prototype of a machine vision startup that has been fully developed for evaluating the concept and idea. By providing users with an easy-to-use platform for various machine vision applications, core:vision has the potential to revolutionize the way businesses implement and manage their machine vision tasks. CD, Branding, UI, UXD, Programming
s3://commoncrawl/crawl-data/CC-MAIN-2023-23/segments/1685224644683.18/warc/CC-MAIN-20230529042138-20230529072138-00646.warc.gz
CC-MAIN-2023-23
1,163
7
https://dropr.com/m/about
code
I design and code things, mostly interactive and mainly for the web, but happily in other media too. My main area of focus is UX/UI design and branding. However, over past 9 years I have freelanced for multiple clients from 4 continents, on projects varying from VJ animations to design & concept development for social networking websites. I co-founded and designed two startups: (a multimedia portfolio platform) (a collaboration platform) Currently most of my work is done through my consultancy: http://hookooekoo.co - come visit! My portfolio here presents a fraction of my work. Some awards, almost awards & mentions: - .NET magazine interview 2008 - FFRESH Student Award 2010 - Speaker at OFFF Barcelona 2012 (for Dropr) - Lovie Award 2012 (for Dropr) - SXSW Interactive Award Nomination 2013 (for Dropr) - Webby Honorary 2013 (for Dropr) I'm always happy to chat about anything - work related or not - drop me a line!
s3://commoncrawl/crawl-data/CC-MAIN-2019-22/segments/1558232257781.73/warc/CC-MAIN-20190524224619-20190525010619-00466.warc.gz
CC-MAIN-2019-22
925
17
http://mwdsoftware.com/vba-error/vba-error-handler.php
code
ToString Converts the exception name, description, and the current stack dump into a single string. It instructs to VBA to essentially ignore the error and resume execution on the next line of code. For example, if your code attempts to open a table that the user has deleted, an error occurs. When execution passes to an enabled error handler, that error handler becomes active. http://mwdsoftware.com/vba-error/vba-error-handler-add-in.php Is there a directory equivalent of /dev/null in Linux? It comes in three flavors: lineLabel - will jump to a specific line number label 0 - will disable any previously set error handling within the current procedure Resume Next - Cancel Excel TrickTricking Excel The Smarter Way! Learning resources Microsoft Virtual Academy Channel 9 MSDN Magazine Community Forums Blogs Codeplex Support Self support Programs BizSpark (for startups) Microsoft Imagine (for students) United States (English) Newsletter Privacy & cookies http://www.cpearson.com/excel/errorhandling.htm In addition, it fills in the exception's InnerException property with the original exception object. Useful members of the Exception class The Catch block includes the reference to the variable, like this: Copy Try ' Code that might trigger an exception. Your feedback about this content is important.Let us know what you think. InnerException A reference to the inner exception—the exception that originally occurred, if this exception is based on a previous exception. The caller may only care that the file wasn't available, and needs to discern that particular exception from other, different exceptions. The On Error GoTolabel statement enables an error-handling routine, beginning with the line on which the statement is found. Vba Error Numbers In addition, it also will insert the Windows error message and code. Add Catch blocks, as necessary, to trap individual exceptions. Vba Error Handling In Loop What are some counter-intuitive results in mathematics that involve only finite objects? Kernighan However, today I don't want to expand on debugging VBA. Ken is co-author of several books including Access 97 Developer's Handbook with Paul Litwin and Mike Gilbert, Access 2000 Developer's Handbooks with Paul Litwin and Mike Gilbert, Access 2002 Developer's Handbooks Word for nemesis that does not refer to a person What are the downsides to multi-classing? On Error Goto Line But the next statement is a loop which is depended on the value of ‘N’, and at this step ‘N’ is uninitialized so this will have a side effect on the If an exception occurs within your procedure, the .NET runtime will look for an appropriate exception handler, and that may mean it leaves your procedure (if there's no Catch block, this The Exception object constructor The Exception object's constructor is overloaded in several ways. Try s = File.Open(txtFileName.Text, FileMode.Open) lngSize = s.Length s.Close() Catch e As Exception Throw (New FileNotFoundException( _ "Unable to open the specified file.", e)) End Try End Sub Running Code Unconditionally https://www.tutorialspoint.com/vba/vba_error_handling.htm The best way to do it is using the Err.Raise procedure. Vba Error Handling Best Practices errHandler: MsgBox "Error " & Err.Number & ": " & Err.Description & " in " & _ VBE.ActiveCodePane.CodeModule, vbOKOnly, "Error" Resume exitHere End Sub Once the error-handling routine Vba Try Catch When there is an error-handling routine, the debugger executes it, which can make debugging more difficult. If CloseMode <> 1 Then cmdCancel_Click End If End Sub Basically, you want to know which button the user pressed when the form closes. this content Each error that occurs during a particular data access operation has an associated Error object. The specified line must be in the same procedure as the On Error statement, or a compile-time error will occur.GoTo 0Disables enabled error handler in the current procedure and resets it Yes No Additional feedback? 1500 characters remaining Submit Skip this Thank you! Vba On Error Exit Sub Each procedure, then, will have this format (without the line numbers): 1 Sub|Function SomeName() 2 On Error GoTo Err_SomeName ' Initialize error handling. 3 ' Code to do something here. 4 Instead, they occur when you make a mistake in the logic that drives your script and you do not get the result you expected. If you have included a statement to regenerate the original error, then execution passes back up the calls list to another enabled error handler, if one exists. http://mwdsoftware.com/vba-error/vba-error-handler-example.php I think I still need to get used to the VBA-Error Handling... What is this flat metal sieve that came with my pressure cooker for? Vba On Error Goto 0 That is, a Finally block without Catch blocks is fine. You should specify your error by adding your error code to the VbObjectError constant. Here's why. Case Else ' Add "last-ditch" error handler. Exit Sub ErrorHandler: Debug.Print "Error number: " & Err.Number Err.Clear Notice the Exit Sub statement just before the ErrorHandler label. Vba Error Handling Display Message When I'm doing something semi-risky (say, closing a DB connection that may or may not be open, where all I care about is that it's not open when I'm done), I The Error object represents an ADO or DAO error. Private Sub ThrowException() Dim lngSize As Long Dim s As FileStream ' Catch an exception thrown by the called procedure. On Error Goto share|improve this answer answered Oct 15 '14 at 14:02 sellC1964 311 add a comment| up vote 1 down vote Block 2 doesn't work because it doesn't reset the Error Handler potentially The following procedure, from the sample project, tests for several different exceptions, and handles each exception individually. Pearson Software Consulting Services Error Handling In VBA Introduction Error handling refers to the programming practice of anticipating and coding for error conditions that may arise when your program Not the answer you're looking for? For example, suppose Procedure C has an enabled error handler, but the error handler does not correct for the error that has occurred. Add a Finally block to your Try block to run code unconditionally, regardless of whether an error occurs or not. Figure A Choose the most appropriate error-handling setting. Using the Throw Keyword You can use the Throw keyword in two ways. If you don't already have a constants module, create one that will contain an ENUM of your custom errors. (NOTE: Office '97 does NOT support ENUMS.). Not too helpful. Tell them what you were doing in the program." Case Else EStruc.sHeadline = "Error " & Format$(EStruc.iErrNum) & ": " & EStruc.sErrorDescription EStruc.sProblemMsg = EStruc.sErrorDescription End Select GoTo FillStrucEnd vbDefaultFill: 'Error Call LogError(Err.Number, Err.Description, "SomeName()") Resume Exit_SomeName End Select The Case Else in this example calls a custom function to write the error details to a table. The Error event. Because every class in the .NET framework throws exceptions when it encounters runtime errors, developers will get in the habit of trapping for exceptions and handling them. The next (highlighted) statement will be either the MsgBox or the following statement. © Copyright 2017 mwdsoftware.com. All rights reserved.
s3://commoncrawl/crawl-data/CC-MAIN-2018-09/segments/1518891812306.16/warc/CC-MAIN-20180219012716-20180219032716-00236.warc.gz
CC-MAIN-2018-09
7,313
17
http://www.dotnetspark.com/links/64909-is-it-possible-necessary-to-precompile-wcf.aspx
code
We have a WCF service up and running on a server. It's working fine, but the response time can be very long at times. Is it possible to precompile a WCF service the way that e.g. ASP.NET websites can be precompiled? Is it even necessary, does it make sense? Thanks for your help, View Complete Post
s3://commoncrawl/crawl-data/CC-MAIN-2017-13/segments/1490218195419.89/warc/CC-MAIN-20170322212955-00088-ip-10-233-31-227.ec2.internal.warc.gz
CC-MAIN-2017-13
298
4
http://docs.zanata.org/en/release/client/command-hook/
code
Custom commands can be specified in zanata.xml. Custom commands can be almost any command that can run on the command line, and can be configured to run before or after a Zanata client command. This feature was added in version 3.3.0 of the CLI client and the Maven Plugin, and cannot be used in earlier versions. To specify one or more custom commands: - Add a <hooks>element in zanata.xml within the - For each Zanata command that will have custom commands attached, add a <hook>element that specifies the command as an attribute. - For each custom command to run before a Zanata command, add a <before>element with the command as its body. - For each custom command to run after a Zanata command, add an <after>element with the command as its body. For example, the following elements within the top-level <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <config xmlns="http://zanata.org/namespace/config/"> ... <hooks> <hook command="push"> <before>po4a-gettextize -f man -m manpage.1 -p manpage.pot</before> <after>rm -f manpage.pot</after> </hook> <hook command="pull"> <after>po4a-translate -f man -m manpage.1 -p trans/de/manpage.po -l manpage.de.1 --keep 1</after> <after>rm -rf trans</after> </hook> </hooks> ... </config> Multiple commands of the same type (i.e. "before" or "after") within a hook will be run in the order that they are specified in zanata.xml. e.g. when running pull with the above config, po4a will always run before rm. If any of these commands fails, the whole operation is aborted. e.g. when running push, if po4a fails then push and rm will not be run, and if push fails then rm will not be run. Note that some commands (such as 'cd') do not work as custom commands. The ranges of commands that work and that do not work as custom commands have not yet been thoroughly investigated. The return value of each custom command is displayed after the command is run. A return value of 0 usually indicates success, and any other number usually indicates an error. Console output from custom commands is not yet displayed or logged.
s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296950383.8/warc/CC-MAIN-20230402043600-20230402073600-00164.warc.gz
CC-MAIN-2023-14
2,066
15
https://docs.citrix.com/en-us/dna/current-release/configure/forward-path/dna-forward-path-logic-editor.html
code
Create and edit Forward Path scripts To create and edit Forward Path scenario and task scripts, use the Forward Path Logic Editor. By default, you write scenario and task scripts in Visual Basic .NET 2.0 (VB .NET). For comprehensive Visual Basic .NET documentation, see http://msdn.microsoft.com/en-gb/library/2x7h1hfk.aspx. - See Forward Path specifications for more information about the structure of the scripts. - See Forward Path example for a step-by-step tutorial. To open the Forward Path Logic Editor: - From the AppDNA menus, choose Configure > Forward Path. By default, the Forward Path Logic Editor screen is divided into three sections. These are described under separate headings below. The main toolbar at the top of the screen has the following options: New Scenario – Creates a new scenario script. When you click this button, AppDNA opens a dialog box where you can enter the new scenario’s name and description. When you click OK, AppDNA creates a basic scenario and opens it in the Editor window, ready for you to edit it. New Task Script – Creates a new task script and associates it with a specific value in a scenario’s Outcome column. When you click this button, AppDNA opens the Forward Path Task Script dialog box, which lists the possible values in the Outcome column for the scenario that is open in the Editor. Select the value with which you want to associate the task script, enter a description, and click OK. See “Forward Path Task Script dialog box” below for more information. Test – Use to test simple scenario scripts. This runs the script against the applications that are currently selected in the Application List and displays the results on the Output tab. However, this feature does not support some of the advanced Forward Path features, such as grouping. For more advanced scenarios, you need to test your scenario by displaying it in the Report Viewer in the normal way. Export – Export one or more scenario and task scripts to an XML file – for example, to create a backup. This opens the Forward Path Scenario Export dialog box where you can select the scripts that you want to export. Import – Import a previously exported scenario or task script file. Main section (top left) The main section of the screen has two tabs as follows: Editor tab – Use to create and edit Forward Path scenarios and task scripts. The toolbar provides the following options: Save – Save any changes you have made to the script that is open in the Editor. Properties – View and edit the name and description of the script that is currently open in the Editor. Show and hide – Click to view or hide the Errors and Side-by-Side Viewer (located at the bottom of the screen). Separate window – Open the Editor in a separate window. Task Script Help – View documentation of the AppDNA APIs that are available to task scripts. Output tab – Displays the output of your scenario script when you click Test on the main toolbar. The output is shown as a flat list without additional formatting information, even if the scenario includes advanced functionality that groups the applications. For more advanced scenarios, you need to test your scenario by displaying it in the Report Viewer in the normal way. Explorer (right side) The Explorer provides three tabs as follows: Scenarios – Lists the sample scenarios that come with AppDNA and any other scenarios that are available. Click a scenario to open it in the Editor and view its description at the bottom of the Explorer tab. One scenario is shown in bold to indicate that it is the active scenario. This means that it is selected by default when you view the Forward Path report. To mark a scenario as the active scenario, right-click it and from the shortcut menu, choose Set as Active. Task Scripts – Lists the sample task scripts that come with AppDNA and any other task scripts that are available. Click a task script to open it in the Editor. Task scripts are shown as active or inactive. Active means that it is associated with the active scenario. Property Explorer – Lists the AppDNA properties that you can use in a scenario script. The property names are mostly self-explanatory. However, the MOE properties relate to data imported from Active Directory and ConfigMgr, and the RAG property is the custom RAG. Errors and Side by Side viewer (bottom left) The Errors and Side by Side viewer has two tabs: Errors / Warnings – Displays any errors or warnings that are detected in the current script. Side by Side Viewer – Use to view another script side-by-side with the one you are editing in the main Editor. To do this, select the scenario or task script on the Explorer tab, right-click and choose View side by side. Forward Path Task Script dialog box The Forward Path Task Script dialog box opens when you do one of the following: - Click New Task Script on the main toolbar. - Right-click a scenario on the Scenario Explorer tab and choose New Task Script from the shortcut menu. The options in the Forward Path Task Script dialog are: Associated outcome – Lists the possible values that can be generated for the Outcome column by the scenario that is currently open in the Editor window. My outcome was not listed – Select this check box to refresh the list of possible values in the Associated Outcome drop-down list. If the value you expect still does not appear, make sure that you have saved any changes to the scenario script and check that the correct scenario is open in the Editor. Description – It is good practice to enter a full description.
s3://commoncrawl/crawl-data/CC-MAIN-2019-18/segments/1555578526923.39/warc/CC-MAIN-20190419001419-20190419022553-00069.warc.gz
CC-MAIN-2019-18
5,588
39
http://webapps.stackexchange.com/questions/40042/hot-keys-to-switch-between-tabs
code
Does anyone know if there´s a shortcut to switch between tabs in Google Spreadsheets? If you use CTRL+PgUp / CTRL+PgDown like in Excel you switch between Chrome or Firefox's tabs instead. Use the following short cuts. Ctrl + Shift + PageDown ==> Move to next sheet (Cmd + Shift + Fn + Down arrow on a Mac) Ctrl + Shift + PageUp ==> Move to previous sheet (Cmd + Shift + Fn + Up arrow on a Mac) Download better touch tool to replace that ugly shortcut with a pretty one. I use the excel shortcut alt up and down :]
s3://commoncrawl/crawl-data/CC-MAIN-2016-30/segments/1469257829325.58/warc/CC-MAIN-20160723071029-00024-ip-10-185-27-174.ec2.internal.warc.gz
CC-MAIN-2016-30
514
6
https://wiki.rpg-architect.com/pmwiki.php/Reference/SpriteOrModel
code
Sprite Or Model RPG Architect supports both sprites and 3D models in the engine. Both support a hue-shift to adjust the overall color. Sprites support Image formats. They can be displayed as Billboards, Flat X/Y/Z Planes, Cardinal, or Complex Cardinal shapes. They are capable of having a translation (in pixels) applied to them, as well as a scale (the Z scale is ignored for Billboards) -- this does not affect the Collider?. They have Sprite Format parameters that can be configured as well. Models support 3D Model formats. In addition, they can utilize pre-built animations that are baked into the model.
s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296817081.52/warc/CC-MAIN-20240416093441-20240416123441-00814.warc.gz
CC-MAIN-2024-18
609
4
http://dynamicbusinesssolutions.ru/axinfowk.en/html/c588d46e-856b-454b-8540-c953901ebe28.htm
code
You have to create an expense distribution sheet (EDS) before you can run an expense distribution sheet report. In the EDS you must set up report lines and report columns that will be displayed in the report. Types of EDS There are two types of EDS: dimension statement and cost statement. Dimensions statement - Is used to report and compare results of different dimensions; each column corresponds to one dimension. Cost statement - Is used to create a report for one or more dimensions or divisions. However, results for each dimension or division are displayed on a separate page, and columns compare actual and budget costs for each dimension or division. Setup of EDS To create a new EDS: Set up a line structure. The line structure is the basis for report lines. Set up a calculation type. The calculation type determines which cost balances are considered for the report. Select between the following three calculation types: Set up a report type. The report type determines the type of EDS report, whether a dimension statement or cost statement. Set up a hierarchy. You have to select a hierarchy if you want to use the cost statement for hierarchies. You can manually or automatically define lines that you want to view in the report by using the transfer lines function. Report lines are identical to cost lines for the selected line structure. If the lines are entered automatically you can still modify them by deleting or changing their position in the report. Change their position in the report by using the up and down buttons. You can define columns that you want to view in the report. For more information about how to define columns for an EDS, see Set up the columns of a specific expense distribution sheet.
s3://commoncrawl/crawl-data/CC-MAIN-2021-39/segments/1631780058263.20/warc/CC-MAIN-20210927030035-20210927060035-00002.warc.gz
CC-MAIN-2021-39
1,731
15
https://talk.jekyllrb.com/t/github-pages-no-longer-builds/6335
code
I have a personal website built using Jekyll, hosted on Github Pages. My website is based on this theme. Recently, my website is no longer getting built by Github Pages. I don’t see any error, but my website simply does not update. I am committing the changes to the master branch (which succeeds), and (I believe) the gh-pages branch is supposed to update automatically, which also fails. Here is the repository, and you can see the website here. The change I am trying to make is to add a new entry to the “news + events” page, which in this theme is done by adding a new .md file in the folder _news, for example _news/news11.md. My most recent commits make this change on the master branch, but the gh-pages branch still says it was updated 7 months ago. I would appreciate your help with this! From your deployments page, it looks like you have Github-Pages setup to deploy the gh-pages branch. Any changes made on the master branch will be ignored. Possible ways to proceed: - Switch the Github-Pages settings to build master instead of Note that whichever path you choose, you’ll have to decide what to do with the most recent change to the gh-pages branch. It is an oddly huge commit which appears to delete most of the site’s source code and replace it with generated output (although it has some new content, like the CV page): You are right, Github pages is supposed to deploy the gh-pages branch. You’re also right that in my commit history there’s a commit that deletes most of the source code and replaces it with what’s there; that’s when I was switching to the current template. The theme I am using (al-folio) is supposed to automatically transfer any changes from gh-pages. So the two branches are supposed to remain distinct. But now that you mention it, I think the mechanism by which the master branch gets built into the gh-pages branch is broken, and I need to update based on this merged pull request. I’ll update you once I incorporate this pull request into my site. I forgot the step where I was supposed to run a bash script to bring the changes of gh-pages! It’s working now, my bad Great. If you wanted to emulate Github-Pages “commit-to-pulish” ability, you could setup a Github-Action to run your custom build and push the result to the gh-pages branch. Then commits to master would be automatically published.
s3://commoncrawl/crawl-data/CC-MAIN-2022-21/segments/1652662534669.47/warc/CC-MAIN-20220520191810-20220520221810-00650.warc.gz
CC-MAIN-2022-21
2,368
31
https://www.theheldreport.com/p/the-rise-and-fall-of-crypto-narratives
code
Discover more from The Held Report The Rise and Fall of Crypto Narratives Narratives weave the reality around us Beliefs are not only shaped by reality; narratives define it. These narratives constitute the fabric of the world around us: government, religion, culture, and finance all exist simply because we believe in it. Including money. Money is a belief system. The only reason your local government issued currency has value is due to a shared belief that it will be valuable in the future. Crypto is no different. Rise and fall of crypto narratives Each crypto project races to develop narratives that will create excitement and induce demand (read: increase price), since most lack any real traction (What I will call Protocol Market Fit or PMF). “If you can't dazzle them with brilliance, baffle them with bullshit.” - W.C. Fields This lead to a Cambrian explosion of narratives as each coin explored ways to differentiate themselves against the others. Most were tied to some semi-plausible technobable, but others were downright insane. Examples include: And PotCoin, which was repped by Dennis Rodman and had a $100M market cap at its peak. Over the the last 8 years, over 10,000 cryptocurrencies have come and gone, with over 50% dying in under one year. Below I cover the ebb and flow of these narratives across two distinct crypto cycles: the simple narrative era (2013-2016), and infinite narratives era (2017-2020). The simple narratives era (2013 - 2016) “More scaleable than Bitcoin” You know what’s more scalable than Bitcoin? Almost everything. Blockchains make extreme design tradeoffs (ex: copy of the ledger on every node) to enable decentralization/scarcity which is what makes Bitcoin useful/valuable. If a certain project is more scalable than Bitcoin, then it’s made some design tradeoff which critically undermines what makes it valuable in the first place. A popular metric in this era was “TPS: Transactions Per Second” for “more = better” braindead analysis. You know which protocol has the most TPS? Visa. ”Faster than Bitcoin” Nothing is “faster” than Bitcoin. It’s about the security of each confirmation x the number of confirmations = total aggregate confidence that the transaction won’t be reversed. You can think of it like layers of amber, each confirmation (layer) and it’s relative security (thickness) determine how permanent the transaction will be secured in time. As you can see with this chart, while a Litecoin transaction has shorter blocks, it has less of a guarantee due to the weaker security. 6 Bitcoin confirmations is equivalent to 712 Litecoin confirmations. ”Blockchain not Bitcoin” “Blockchain” became a catch all term for innovation. Small and large company executives were incentivized to use the word. If you were big corporate, saying the word “blockchain” made you seem hip. If you were a startup, “blockchain” got you 50% more funding. Humans respond to incentives. The incentive was to use the word “blockchain,” and so they did. Again, blockchains are inherently bad at almost everything. They’ve sacrificed everything to optimize for sound money. “I haven’t seen one [use case] that even scales beyond an individual or a small set of transactions,” Bessant said. “All of the big tech companies will come and say ‘blockchain, blockchain, blockchain.’ I say, ‘Show me the use case. You bring me the use case and I’ll try it’.” - Cathy Bessnat, Head of tech and operations at Bank of America When was the last time you heard about a corporate blockchain project? Where did all this efficiency that blockchains were supposed to unlock manifest itself in your daily bank transfers or other traditional finance products? Infinite narratives era (2017 - 2020) If you’ve been around since the last bull run you probably remember…. These were supposed to change the world right? An ICO for your car, an ICO for global warming, an ICO for anything you wanted. What happened with ICOs was the market creating narratives and appending a coin to them to satisfy all speculative demand for the next big thing. Thousands of narratives were created. And thousands faded away. There were other “innovations” aka narratives, like: How many of those came to pass? Which one of those are you using today on a daily basis? When was the last time you heard someone on the street mention one of those? After 3-4 years we certainly would have seen more traction if it was truly solving a problem. The Ethereum community has endorsed radical changes/pivots, trying to find narrative fit (aka Protocol Market Fit), even so far as to recently claim a Store of Value (SoV) narrative. The Ethereum leadership team is more willing to embrace alternations to the core objective of the protocol in their search for PMF (world computer, dapps, crowdfunding, nonfungibles, open finance, radical markets). Ethereum is an aggregator of these narratives, trying each one out over the years in an attempt to seduce Bitcoin and other believers. But there is no persistence of a singular narrative, Ethereum still trying to find PMF even after all this time. The only persistent narrative: Store of Value/Gold 2.0 Bitcoin is not immune to the ebb and flow of narratives. Over the years, many narratives faded in and out of popularity. The chart above shows that movement over time, although it was created 2 years ago so it’s a bit outdated. However, Bitcoin is distinctly different than all the other blockchains because it has had a persistent narrative since day one: Gold 2.0/SoV (Store of Value). Bitcoin was built to solve the problem of trust with governments, to be a store of value that you could send anywhere/anytime without trusting anyone else. Bitcoin’s narrative matches the real world utility. Death rate of ICOs
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679103464.86/warc/CC-MAIN-20231211013452-20231211043452-00667.warc.gz
CC-MAIN-2023-50
5,844
42
https://forum.arduino.cc/t/need-guidance-using-accelerometer-gyroscope-with-wave-shield/303451
code
For my project, I am trying to make spinning balls on strings make sound. There are lots of possibilities inside of this, I can have a wav. file sped up or slowed down based on acceleration which sounds like the simplest way to go, or have certain splices of the wav. file play based on the threshold readings from the accelerometer and/or gyroscope. I've been looking online for instructables and tutorials but haven't found much that i'm able to understand. How might you go about doing this?
s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656103947269.55/warc/CC-MAIN-20220701220150-20220702010150-00767.warc.gz
CC-MAIN-2022-27
494
1
https://exceptionnotfound.net/anglebrackets-day-one-wrapup-mvc-project-design-and-interviews/
code
My colleague Jim and I are attending the AngleBrackets conference here in Phoenix. It's the first conference I've ever been to, and I'm loving every minute of it. If you ever get a chance to attend one of these conferences, friggin jump on it! It's a wonderful way to connect with other developers in a low-key, casual setting. This year's conference is hosted at the gorgeous Fairmont Scottsdale Princess, an astounding 5-star resort that I could not hope to stay at with my own money. This place looks like it was manicured by God himself, all lush lawns and glistening fountains. It's incredible. I kinda wish I was staying at the hotel, but I live here so no dice. Still, it was a gorgeous day in the valley today, and being in a setting such as this only makes that so much better. I went to four sessions today (not counting the keynote speeches this morning). Here's a few things I learned and observed from those sessions. An Alternate Design for MVC Create, Edit, Delete Pages I only had one problem with this presentation, and it was more a philosophical one than anything else. I've written before that I'm not a fan of WebForms, and this particular solution wanted the view models to store what amounted to the state of the page as properties, such as sorting column and sort order. I'm not a fan of needing to do this, so if there was a way to accomplish this kind of thing with no storing of state, I'd be in love with this solution. 15 Ways To Improve Your Business Applications Today In this session, John Kuhn talked about (as the title says :)) 15 ways PDSA has noticed that business apps could be improved. You can request the slides from here. Most of this stuff is (hopefully) common sense, but one thing he said really stuck with me: quit using DataSet and DataTable classes! I love this, as these classes are IMO no longer necessary for our modern apps. Get rid of em, and good riddance. Easily my favorite presentation of the day. Juval Lowy described this session as a one-hour rant, and boy was that an understatement. It was entertaining, insightful, and hilarious; everything you'd want out of these presentations. I couldn't find the slides he used for this presentation, but I did find a Channel 9 recording of this presentation. In this session, Lowy argued that the software industry is in crisis because (among many other things) so much is expected of overworked, underperforming developers. The skill gap is huge, the stakes are high, and organizations are floundering into mob rule. Into this gap steps The Architect, who can use engineering processes to solve problems independent of any domain. Honestly, any summary I give of this presentation will not live up to seeing it live. I've got another of Juval's presentations scheduled for tomorrow, and now I'm really looking forward to that one. If you get a chance, go see Juval Lowy! How to Interview a Developer Billy Hollis lead this funny and engaging talk about exactly how, in his 28 years of doing hiring, he's come up with his methodology for hiring someone. Much of this presentation was focused on what behavior you should be presenting, rather than what behavior you are looking for in the interviewee. Specifically, Billy thinks we should be neutral in our body language, so as not to give an subconscious clues as to what kind of answers we'd like to hear. After all, the client is seriously motivated to please you, since they (presumably) want the job. Finally, the thing that stuck the most with me: Don't interrupt! This is something I have trouble remembering; I always seen to try to insert myself in conversations that don't really require my opinion, and it's sonething I'll need to be on the lookout for in the future. Anyway, that's it for today's sessions. I'll be back tomorrow with more recaps, and I'll try to get some pictures as well. Thanks for reading!
s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296816863.40/warc/CC-MAIN-20240414002233-20240414032233-00770.warc.gz
CC-MAIN-2024-18
3,871
16
https://developer.vive.com/resources/openxr/unreal/unreal-tutorials/handinteraction/
code
XR_HTC_hand_interaction allows developers to create an application with hand interaction. Supported Platforms and devices |PC||PC Streaming||Focus3/ XR Elite||X| |Pure PC||Vive Cosmos||V| |Vive Pro series||V| |AIO||Focus3/ XR Elite||V| - Edit > Plugins > Search for OpenXR and ViveOpenXR, and make sure they are enabled. - Note that the " SteamVR " and " OculusVR " plugin must be disabled for OpenXR to work. - Restart the engine for the changes to take effect How to use OpenXR Hand Interaction Unreal Feature - Make sure ViveOpenXR is enabled. - Select Edit > Project Settings > Plugins > Vive OpenXR > Enable Hand Interaction under Hand Interaction to enable OpenXR Hand Interaction extension. - Restart the engine to apply new settings after clicking Enable Hand Interaction. - For the available Hand Interaction functions, please refer to ViveOpenXRHandInteractionFunctionLibrary.cpp. to get the blueprint functions your content needs. Get HandInteraction Aim Provides location and rotation of the aim pose on your hand. Get HandInteraction Grip Pose Provides location and rotation of the grip pose on your hand. Get HandInteraction Select Value Provides a float showing how hard your hand pinch Get HandInteraction Squeeze Value Provides a float showing how hard your hand Squeeze Note: AIO devices haven’t supported this function instantly and will support in the future depend on the runtime support of AIO devices. Switch hands by enabling the Get Left -hand HandInteraction Grip Pose Get Right -hand HandInteraction Grip Pose Play the sample map - Make sure the OpenXR Hand Interaction extension is enabled, the setting is in Edit > Project Settings > Plugins > Vive OpenXR . The sample map is under Aim the beam at the cubes far from you then pinch to hold them. Close to cubes and grab them, you can hold them steady. Start playing the map, you can grab the nearby cubes or aim the beam at cubes to hold and move them. The blue cube will float in the air, and the red ones will drop down when you release them.
s3://commoncrawl/crawl-data/CC-MAIN-2023-40/segments/1695233511023.76/warc/CC-MAIN-20231002232712-20231003022712-00211.warc.gz
CC-MAIN-2023-40
2,025
35
http://www.zacharyjporter.com/wdg/
code
I was fortunate to be the design intern at The Web Development Group in Alexandria, VA. GiveBack D.C. is WDG’s nonprofit initiative which connects deserving nonprofits and community organizations with needed services, products, and expertise. I was tasked with coming up with a new initiative and designing its web page. The GiveBack Initiative that I created gives art supplies to a school in Washington, D.C. The initiative will start as soon as the site goes live. I also made a video reel for WDG’s website in order to display their work was well as conceprts for various web pages.
s3://commoncrawl/crawl-data/CC-MAIN-2017-43/segments/1508187825812.89/warc/CC-MAIN-20171023073607-20171023093607-00089.warc.gz
CC-MAIN-2017-43
590
3
https://www.larryco.com/bridge-quiz/detail/146
code
As South, at unfavorable vulnerability, you hold: Partner opens 1 and RHO passes. What is your call? In fact, partner does pass (showing a flat minimum) and the J is led. Your play to trick 1? Duck in both hands. Win in Dummy with the A. Win in your hand with the K. Now that you have played correctly to the first trick, what is your next play?
s3://commoncrawl/crawl-data/CC-MAIN-2021-31/segments/1627046154089.68/warc/CC-MAIN-20210731141123-20210731171123-00654.warc.gz
CC-MAIN-2021-31
345
8
https://garden-party.io/en/user/management/map/add_elements/
code
Table of content Different addition modes: - 1 Placing standalone elements - 2, 3 Placing patches The standalone elements are perfect to represent trees, bushes or plants requiring a special attention. They are, once placed, represented by a small icon on the map. - Select the tool 1. - Select the resource to place (some resources have variants, it’s visible with a small icon on the right of the name). - Click on the map to place the resource. Patches are perfect to represent areas with many elements (e.g.: a patch of carrots, or a patch with both cucumbers and lettuce). They may contain one or many resources. - Select one of the geometry tools 2. - Select the first resources to add. - Click on the map to define the patch boundaries. - Switch to “Review” mode (the icon with a cursor shape). - Click on the targeted patch. An information popup is displayed (you can move the map if it’s out of screen) - Click on “Add resource” - In the resources list, click on the resource you want to add
s3://commoncrawl/crawl-data/CC-MAIN-2021-39/segments/1631780053759.24/warc/CC-MAIN-20210916204111-20210916234111-00402.warc.gz
CC-MAIN-2021-39
1,012
16
https://androidforums.com/threads/hey-im-croc.1031592/
code
My real name is Alex, but I'm known online as simply "Croc". I am a digital media student at UCF majoring in web design and development. On the side, I love to do graphic design and travel. I also am a HUGE consumer tech geek. I'm looking foward to being an active part of this community!
s3://commoncrawl/crawl-data/CC-MAIN-2018-51/segments/1544376823183.3/warc/CC-MAIN-20181209210843-20181209232843-00530.warc.gz
CC-MAIN-2018-51
288
1
http://www.dzone.com/links/devtoolbelt_tools_and_resources_for_beginner_and.html?ref=up-details
code
Several days of searching the web and a dozen my of own attempts to solve the issue have... more » Most developers have a problem with just getting started writing a blog. This blog post... more » Microsoft Azure is accelerating past every other cloud infrastructure provider. Amazon, Apple,... more » MAKE SURE YOU ARE NOT MISSING THIS BLACK BOX TESTING FRIDAY FROM BUGHUNTRESS! HTML5 gets all the publicity but in fact CSS3 is responsible for most of its new achievements... more » Compose is a new conference for typed functional programmers, focused specifically on Haskell,... more » Discover best practices and the most useful tools for building the ideal integration architecture.
s3://commoncrawl/crawl-data/CC-MAIN-2014-49/segments/1416931010402.68/warc/CC-MAIN-20141125155650-00115-ip-10-235-23-156.ec2.internal.warc.gz
CC-MAIN-2014-49
692
7
https://technologyneducation.wordpress.com/2015/02/18/microsoft-is-not-just-for-business-anymore/
code
Tonight I am offering a program geared specifically for the instructor who wishes to learn, not only more about integrating ICT (Information, Communication Technology) into their classroom, but who is also interested in becoming a better teacher in general. Education should be geared to the learner. We need to teach those things which are relevant to the learner’s world and beneficial to the learner’s future. One way of getting the training that we need as teachers is through the Microsoft Certified Educator program. Microsoft has created a curriculum that is geared toward providing more than just programs and technology for the teacher. They provide insight into the “why” as well as the “how”. Why do we need to integrate technology into the classroom? Do we use technology for it’s own sake? The curriculum takes us as teachers and helps us to become learners. It is important for us, especially in this time of almost forced technology integration, to remember what we are trying to accomplish and why. It is easy to get caught up in the techno-wave. My class is building web sites, blogging, producing videos, and writing code. GREAT! Why? Putting technology into a classroom because it is expected of us or because we have to spend a budget to justify it for next year is NOT the goal we are trying to accomplish. The curriculum presented in the Certified Educator curriculum helps the teacher to understand the most important aspect of technology; when NOT to use it.
s3://commoncrawl/crawl-data/CC-MAIN-2018-26/segments/1529267859904.56/warc/CC-MAIN-20180617232711-20180618012711-00199.warc.gz
CC-MAIN-2018-26
1,496
3
https://stackoverflow.com/questions/50399621/multiple-versions-of-node-on-windows/50399664
code
I currently have the following versions installed my windows machine. node : v7.3.0 npm : 3.10.10 @angular/cli : 1.4.2 I would like to install latest versions of the above and be able to switch accordingly. To my knowledge installation of node governs that. If I need to install latest npm and angular cli then i would need to install the latest version of node. Please do correct me if I am wrong. Can i globally install the latest version of nodejs. Once I install that could i switch between the node versions. I presume switching between the node versions would take care to use the appropriate npm and cli.
s3://commoncrawl/crawl-data/CC-MAIN-2021-39/segments/1631780057417.92/warc/CC-MAIN-20210923074537-20210923104537-00030.warc.gz
CC-MAIN-2021-39
611
3
https://admhelp.microfocus.com/uft/en/all/Extensibility/NET_Ext/Content/NETExtensibility/NetExtReadme.htm
code
UFT One .NET Add-in Extensibility Readme This page provides information about the UFT One .NET Add-in Extensibility SDK. The UFT One .NET Add-in Extensibility SDK enables you to develop custom .NET Windows Forms controls that the .NET Add-in does not support out-of-the-box. This version of the SDK supports working with UFT One version . UFT One is backwards compatible, and enables you to run tests and components on custom controls using toolkit support sets developed with QuickTest Professional .NET Add-in Extensibility or earlier versions of UFT .NET Add-in Extensibility. The SDK supplies a plug-in for the Eclipse IDE that provides wizards and commands to simplify the process of creating custom support. Installation and deployment Install the UFT .NET Add-in Extensibility SDK and develop the toolkit support set for your Java controls on any computer. After creating custom support, deploy it to UFT One, enabling UFT One to recognize the controls and support the appropriate properties and test object methods. Note: The UFT One Java Add-in Extensibility SDK is required only for developing the support. You do not need to install it on each UFT One computer that users the support. For more details, see Installing the OpenText UFT One .NET Add-in Extensibility SDK. UFT One .NET Add-in Extensibility SDK documentation includes: - .NET Add-in Extensibility Developer Guide - .NET Add-in Extensibility API Reference - .NET Add-in Extensibility Configuration Schema Help - .NET Add-in Extensibility Control Definition Schema - UFT Test Object Schema Help - Microsoft Visual Studio - UFT One, version 14.03 or later, with the .NET Add-in installed Note: UFT One can be installed on the same computer as the SDK, or a different computer. If you plan to use the same computer, be sure to install the prerequisites before installing the SDK. For a list of the supported versions of software used together with UFT One .NET Add-in Extensibility, see the UFT One Support Matrix (PAM). The UFT .NET Add-in Extensibility SDK is not localized (the Language Pack does not translate them).
s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947476180.67/warc/CC-MAIN-20240303011622-20240303041622-00717.warc.gz
CC-MAIN-2024-10
2,090
24
http://www.freedom-bags.com/bowling-for-columbine-essay/
code
Author : . Published : Sat, Oct 20 2018 :3 AM. Format : jpg/jpeg. Essay example bowling for columbine pdf review paranoid nationalism of topics Essay example bowling for ne lyrics topics techniques Eric hynes on twitter bowling for columbine bias essay persuasive tions discussion Media fear implantation violence and bowling for ine essay example argumentative Essay example writing academic university library at notre dame owling for columbine persuasive discussion questions answers Essay conclusion for ling columbine help with writing persuasive techniques questions Factual production essay by luis sanchez issuu bowling for columbine example discussion questions Bowling for columbine essay example techniques discussion questions Cover letter bowling essay for columbine example persuasive Essay example bowling for columbine thumb cover letter on questions answers Bowling for columbine term papers to take advantage of the wish essay example discussion questions answers summary Bowling for columbine reaction essays essay uestions discussion answers techniques Bowling for columbine discussion questions answers persuasive essay bias Bowling for columbine summary essay persuasive techniques discussion Bowling for columbine essay response example techniques discussion questions answers How to write research paper pasco hernando state college bowling for columbine techniques essay persuasive discussion Bowling for e essay introduction bias persuasive techniques Bowling for columbine the criterion collection discussion questions answers summary essay persuasive techniques Essay example bowling for columbine summary questions argumentative Essay writing academic university library at notre dame bowling for columbine persuasive topics
s3://commoncrawl/crawl-data/CC-MAIN-2019-13/segments/1552912203462.50/warc/CC-MAIN-20190324145706-20190324171706-00332.warc.gz
CC-MAIN-2019-13
1,753
23
https://docs.defiland.app/information/technology
code
Our backend is hosted on Amazon Web Services (AWS), the world’s most comprehensive and widely adopted cloud platform. The core backend infrastructure of the game is built using the Serverless Model that helps us to develop and maintain our system with near ZeroOps. To bring the fastest in-game experience to users, we decided to build an Asynchronous System. The backbone of our backend is implemented using CQRS and Event Sourcing microservices architectural patterns that allows the system to be rewinded to or replayed from a particular user's game state. AWS Lambda and AWS ECS Fargate are used as our prime compute engine resources. Our core messaging protocol for microservices is built on top of AWS SNS and AWS SQS. AWS DynamoDB is the main persistence layer for the game but we also use AWS S3 for storing static data and warehousing. To reduce the time of game delivery to users, we distribute static content in many AWS CloudFront Edge Locations around the globe. Endpoints for our APIs are fanned out as well. AWS Cognito helps us to implement user authentication and authorization in the simplest and most convenient way. Monitoring and bot control The logs from AWS CloudWatch and our proprietary event logging tool are ingested into AWS Athena, giving us the ability to monitor specific user interactions. This mechanism also enables us to gain insight into user engagement for specific features. Implementing bot control is one of the most challenging parts of our project. Currently, we are using AWS WAF and AWS Shield to prevent the system from vulnerabilities. Smart rules for AWS WAF are updated using log analysis and statistical inference. Since we have experience in ML and data science, we are also working on our own solution.
s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947476396.49/warc/CC-MAIN-20240303142747-20240303172747-00153.warc.gz
CC-MAIN-2024-10
1,755
4
https://dev.to/t/process
code
Super-powered Wikis are Categorical, not Hierarchical! Detangling the Manager: Supervisor, Team Lead, Mentor Your doctor (parent process) – is your prescription publisher, meanwhile you, well guess who you are ?.. External Library Research Questions and Guidelines Adding Tasks with a Checklist to Wagtail Workflows Book notes: Shape Up: Stop Running in Circles and Ship Work that Matters. Ensemble: How to embed a PDF file into an HL7 message GIT-FLOW: UMA ESTRATÉGIA PARA ADAPTAR DE ACORDO COM O PROCESSO DO SEU TIME How to Break Down Software Engineering Projects, From an Engineer So your manager has asked you to be on-call. Now what? How to start learning a new programming language [Part 1] Building the platformOS Design System with Figma - Part 1: The UX process Confidently ship code using Continuous Integration (CI) and Continuous Delivery (CD) Thoughts on Raspberry Pi GPIO Program Organization Community-driven data modifications using Cloud Functions New Product Development Process: How to go from an idea to several happy users Bringing A Healthy Code Review Mindset To Your Team
s3://commoncrawl/crawl-data/CC-MAIN-2022-40/segments/1664030335530.56/warc/CC-MAIN-20221001035148-20221001065148-00585.warc.gz
CC-MAIN-2022-40
1,099
17
http://esafeworld.xyz/archives/14045
code
fiction Nanomancer Reborn – I’ve Become A Snow Girl? novel – Chapter 1044 Misu’s Surprise wait educated propose-p3 Novel–Nanomancer Reborn – I’ve Become A Snow Girl?–Nanomancer Reborn – I’ve Become A Snow Girl? Chapter 1044 Misu’s Surprise internal man “Do you get pleasure from exploring the town?” s.h.i.+ro asked with a teeth. Experiencing the gazes of his fellow pilots on him, he couldn’t guide but really feel extremely pleased. Hearing silently, Misu needed to concern why the h.e.l.l does she have so many tier 6’s. As well as, from the atmosphere that she could truly feel from the many level 6’s, they pose a ma.s.sive danger to the Queens if they’re not careful. Blinking her eyes in amaze, Misu was really a small speechless at how straightforward it had been for s.h.i.+ro to simply available a portal for anyone. Shrugging her shoulder muscles, Misu stepped into the portal. Pushing out her cellphone, she approved the call. Drawing out her mobile phone, she acknowledged the phone call. “Your highness, I’ll sleeping around the chair.” Her subordinate coughed because he didn’t dare reveal a bed together with her. Waving her fretting hand, a portal exposed ahead of her because the three of them still left the place. Nevertheless, there lays the trouble. It had been practically unattainable to become taken off defend by a thing this massive but as neither s.h.i.+ro nor Glen seemed like people were being untruthful, Misu figured there was probably a lot more in it than matches the eye. ‘She’s basically have a squad of Queen Slayers!? I thought each one level 6 was meant to be gathered through blood flow sweat and tears but there were enough tier 6’s on this page to be break up amongst two Queens. the blind mother and the last confessions pdf Seeing the sudden physical appearance of s.h.i.+ro, s.h.i.+na as well as other specialised pilots saluted. “You’ll be capable to see them actually in operation in the future. For now, let’s check out the command core and make our next assault. “You’ll be able to discover them actually in operation in the future. At the moment, let’s head to the demand core and put together our up coming invasion. “These are the basic specialised aviators. The very best of the top that people have and our vanguard. All of them can wipe out a level 5 without difficulty and Glen here is the 1st to possess killed two level 6’s without anyone’s assist.” s.h.i.+ro recognized as Glen couldn’t assist but blush. in new england fields and wood furniture made The belief that a level 4 actually killed two tier 6’s seemed not possible. out of the past a reed ferguson mystery summary As well as, there is still a substantial point about this metropolis that she hadn’t investigated. But she figured that she acquired probably found almost all of the factors in this article. Thoughts, Moods and Ideals: Crimes of Leisure “In my opinion a mech is those significant robot issues perfect?” Misu required as s.h.i.+ro nodded her brain. “Anyways consist of me, I’ll show you to your primary episode drive in relation to getting zones so you know what can be expected.” s.h.i.+ro smiled as she crafted a portal. “Hold out wh-“ Harper’s Young People, August 10, 1880 Standing in a trance, s.h.i.+ro didn’t discover how to answer. “Before you start to slumber you may need to handle Misu initial.” Nan Tian chuckled as s.h.i.+ro nodded her mind. Go to lightnovelpub[.]com for the greatest creative reading practical experience ‘She’s basically got a squad of Queen Slayers!? I thought every single tier 6 was said to be secured through our blood perspiration and tears however there was enough level 6’s below to always be divide amongst two Queens. “Certainly, there’s a chance now.” Stick to up-to-date books on lightnovelpub[.]com Experience the gazes of his fellow aviators on him, he couldn’t assistance but feel happy. One at a time, the handle covering the mechs did start to s.h.i.+ft as being the units of battle unveiled theirselves. “Anyways consist of me, I’ll provide you with to our major infiltration force in terms of getting zones so you know what can be expected.” s.h.i.+ro smiled as she created a portal. Being attentive quietly, Misu want to problem why the h.e.l.l does she have numerous level 6’s. As well as, out of the aura she could truly feel from the many level 6’s, they create a ma.s.sive threat for the Queens if they’re not watchful. Blinking her eyes in delight, Misu was actually a minimal speechless at how uncomplicated it turned out for s.h.i.+ro to merely open up a portal for somebody. “When you clearly show me their crests I might be able to inform you about them.” Misu spoke as s.h.i.+ro increased an eyebrow. “Excellent. If so let’s proceed to the order center to ensure everybody else can learn about this too.”
s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296950528.96/warc/CC-MAIN-20230402105054-20230402135054-00163.warc.gz
CC-MAIN-2023-14
4,930
41
https://iaia.screenstepslive.com/s/iaia_faculty_manual/a/1320623-sending-a-course-evaluation-reminder
code
You can view the submission status of an assignment, then send a reminder to students who haven't submitted yet. You can copy, paste and modify the message below. If you haven't done so already, please take 3-4 minutes to submit your course evaluation for this course. I won't receive your anonymous feedback on the course until after final grades are posted. Your evaluations help IAIA maintain its academic excellence and accreditation.
s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100710.22/warc/CC-MAIN-20231208013411-20231208043411-00838.warc.gz
CC-MAIN-2023-50
438
3
https://richardmoney.com/financial-news/fed-is-going-hard-on-inflation-will-it-backfire-ep-615/
code
What is the Jerome Powell's strategy against inflation, will the Fed raise rates of interest too quickly, is the economy at danger, and things to watch out for. Fed's summary of financial projections: Dave Lee on Parenting,. KEEP IN MIND: Please don't fall for fraudsters who might impersonate me or others in the remark area. I do NOT offer my number or ask individuals to call me. ♂ Disclaimer: All material on this channel is for conversation and illustrative functions only and ought to not be construed as professional monetary recommendations or suggestion to buy or sell any securities. Need to you require such suggestions, seek advice from a licensed monetary or tax advisor. All views revealed are personal opinion as of date of recording and go through change without responsibility to upgrade views. No assurance is given regarding the precision of info on this channel. Neither host or visitors can be delegated any direct or incidental loss incurred by applying any of the details offered. Author is long TSLA and other stocks at time of original video publish date. When you buy through links in this video description, author may make an affiliate commission. Open an brokerage account at Interactive Brokers:. Have a look at my archived articles/posts on Tesla and investing:. #Tesla #TSLA #Stocks.
s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764500215.91/warc/CC-MAIN-20230205032040-20230205062040-00582.warc.gz
CC-MAIN-2023-06
1,317
8
https://www.lastweekinaws.com/signup-complete/
code
You’re All Set I’ve set you up as a subscriber and you’ll receive the next issue Monday morning at 7:30 Pacific time. In the meantime, feel free to peruse back issues, blog posts, and podcast episodes. I spent a year giving talks from an iPad instead of a laptop. Here are the lessons I learned along the way.
s3://commoncrawl/crawl-data/CC-MAIN-2019-22/segments/1558232254731.5/warc/CC-MAIN-20190519081519-20190519103519-00438.warc.gz
CC-MAIN-2019-22
315
3
https://info.stage.lens.poly.com/docs/troubleshooting/packet-capture
code
To assist you in troubleshooting network data, the Packet Capture feature is available on the following voice devices. This feature allows you to collect data sent and received over the network by the device. Note: Devices must be online (green circle icon), and provisioned (green provisioning icon) to use the Packet Capture feature. - Poly Trios - Poly CCX Series - Poly VVX Series See Supported Devices for a list of supported device models. To Capture Network Packet Data Go to Manage > Inventory. Select a voice device from the Device List. Select Troubleshooting > Packet Capture from the side tab. Select the Enable packet capture slider to enable the feature. The device will restart and when complete the feature will be enabled. Set the amount of time to capture the data. The range is 180 to 64800 seconds. Note: Packet capturing will be automatically stopped when time expires. Select Start Capturing Packets. During this period you may wish to make a call, or recreate the event you wish to investigate. Poly Lens will capture the packets, until the timeout is reached. The file is saved and a link to download the file is displayed. Click the download link icon. The file is now downloaded and available to be opened with a packet analyzer software package. The system will capture data as follows: - 5000 packet increments per file - Repeats collecting data in 5000 packet files until the Timeout has been met - Each file saved, replaces the previous PCAP file - User can download each file saved, by closely monitoring the date stamp in the link displayed
s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947473558.16/warc/CC-MAIN-20240221202132-20240221232132-00786.warc.gz
CC-MAIN-2024-10
1,572
24
https://unix.stackexchange.com/questions/321174/how-can-i-set-up-broadcom-drivers-on-a-new-arch-linux-install-on-macbook-pro
code
I'm setting up Arch Linux on a MacBook Pro, currently using a phone with USB tethering for internet access. An obvious short-term goal is to install Broadcom drivers (either broadcom-wl-dkms), both of which I can get via So far, when trying to set up an interface after installing broadcom-wl-dkms, I'm hitting a roadblock because /proc/bcrm_monitor0 doesn't exist, and I can't write echo 1 to it because I can't create this file, even as root (this includes via touch and moving other files with the appropriate name and contents there). I get No such file or directory whenever I try to create or populate it in any way. pacman -Q broadcom-wl-dkms shows that the driver is correctly installed. How can I get Wi-Fi up and running in my Arch install?
s3://commoncrawl/crawl-data/CC-MAIN-2019-43/segments/1570986654086.1/warc/CC-MAIN-20191014173924-20191014201424-00406.warc.gz
CC-MAIN-2019-43
750
10
http://meta.wordpress.stackexchange.com/users/2415/jared
code
Top Network Posts - 22WP - Use file in plugin directory as custom Page Template? - 18Get All Images in Media Gallery? - 13Custom Widget function in Plugin not working? - 13Is there a cd image of ubuntu under 512MB? - 12How Do I Set the Page Title Dynamically? - 10How can I add an option to the Page Template list from a Plugin? - 8how to add dynamic sidebar to a wordpress theme? - View more network posts → 7 Where can I find just Community Wiki questions? Feb 24 '12 0 WordPress Answers Top User Swag Jan 22 '12
s3://commoncrawl/crawl-data/CC-MAIN-2016-30/segments/1469257824230.71/warc/CC-MAIN-20160723071024-00030-ip-10-185-27-174.ec2.internal.warc.gz
CC-MAIN-2016-30
516
11
https://www.techopedia.com/definition/5594/java-development-kit-jdk
code
Tech moves fast! Stay ahead of the curve with Techopedia! Join nearly 200,000 subscribers who receive actionable tech insights from Techopedia. The Java Development Kit (JDK) is a software development environment used for developing Java applications and applets. It includes the Java Runtime Environment (JRE), an interpreter/loader (java), a compiler (javac), an archiver (jar), a documentation generator (javadoc) and other tools needed in Java development. People new to Java may be confused about whether to use the JRE or the JDK. To run Java applications and applets, simply download the JRE. However, to develop Java applications and applets as well as run them, the JDK is needed. Java developers are initially presented with two JDK tools, java and javac. Both are run from the command prompt. Java source files are simple text files saved with an extension of .java. After writing and saving Java source code, the javac compiler is invoked to create .class files. Once the .class files are created, the 'java' command can be used to run the java program. For developers who wish to work in an integrated development environment (IDE), a JDK bundled with Netbeans can be downloaded from the Oracle website. Such IDEs speed up the development process by introducing point-and-click and drag-and-drop features for creating an application. There are different JDKs for various platforms. The supported platforms include Windows, Linux and Solaris. Mac users need a different software development kit, which includes adaptations of some tools found in the JDK.
s3://commoncrawl/crawl-data/CC-MAIN-2020-34/segments/1596439736972.79/warc/CC-MAIN-20200806151047-20200806181047-00308.warc.gz
CC-MAIN-2020-34
1,566
7
https://www.freelancer.com/job-search/find-developer-apps-ios-android-devices/
code
Someone who has experience on digital and analog signals, Logic gates, Boolean algebra,Logic devices I have Wordpress Genuine Theme for my website. My portfolio images are shown on mobile devices just like on my website. But it is very tiny and impossible to click on it to make it bigger. Wondering if it is possible to fix it and make it easy viewing on small mobile device? Thanks ...for a Magento 2 developer that can develop a custom module with this functionality: 1. Auto play set to ”No” for YouTube video on mobile devices, but “Yes” on PC version. 2. New replacement image for mobile devices, that we will provide. On PC the image will stay as it is now. 3. The video will also need to work on all devices, also to... Brief and indicative wireframes attached. We will produce high fidelity designs ahead of project initiation but I'm hoping the wireframes will provide enough detail for you to be able to quote. The content and structure of the individual pages might change but the functionality should be about there. If possible, please provide an itemised quote so that if a particular function is going... Optimize the web site to work with all devices mobile and desktops. Optimize to work with various browsers. At this point I need to have an optimization that will allow users to open and have a functional and friendly web shopping experience. I need the site to work with: Smart phones, tablets, notebooks, lop tops and desktops with different sizes Need a simple bash script to WATCHDOG function. all interested developer contact us and will send document with specification request. I want an application that can share my pc screen including Audio with IOS, android or Windows based [url removed, login to view] application will be Browser based onto my website and not App driven. A reference software application ios called "screenleap" where the website has embedded the application, so that the screen or part of, in my local m,achine is hioghli... ...documentation thoroughly covers step-by-step how to create a broadcaster app. The documentation covers the following: Choose Environment Creating an Android app using Android Studio and Java Creating an iOS app using Xcode and Objective C or Xcode and Swift 3 What you need to consider There are a few things that are good to consider when creating your i want the api of concox gps tracking devices for my software can anyone provide me the api of concox gps devices or a source from where i can buy the api of concox gps devices I need a developer that can fix the mobile view for [url removed, login to view] so it works perfect and looks professional on all devices. The images below are form an iphone 6. the form submit button is hidden and it just sucks. ...domain and hosting, just need service of designing and go live. Strictly need to the website to be built on WordPress platform, One Page and should be Responsive to all the devices. My contents are done but would expect few more updatation in a couple of days. Integration of below:- Chat session Social Network, like FB, Instagram, Twitter, Linkedin *See attachment for details *Must follow instructions well, we are looking for a quality, fast, professional website ...itself and the time stamp. I have test a barcode scanner on a raspberry pi, and using a python script can capture the barcode. The barcode readers need to be a hand-held devices and I’m happy to take advice on which hardware is best/better for this application. I've attached an image of the scanner we have been testing with. Any questions, please Hi, I am looking for a competent freelancer to make my website 100% responsive on apple devices, such has ipad, iphone, imac and so on. Looking for a long term relationship. regards I need some help with selling something. ...focus of the article should be to point out that NWPT devices are wound care only and cannot substitute the supportive stabilisation that a specially developed external chest binder gives to the sternum bone. Deadline Jan 20th. Part of the material related to external chest support devices will be provided, the rest will need to be researched.
s3://commoncrawl/crawl-data/CC-MAIN-2018-05/segments/1516084887621.26/warc/CC-MAIN-20180118210638-20180118230638-00473.warc.gz
CC-MAIN-2018-05
4,146
16
http://programmers.stackexchange.com/questions/tagged/coding-style?sort=unanswered&pagesize=15
code
I am working on a standard Spring application where DAO layer returns entities to service layer and service layer returns VOs to other services and controllers. In a certain scenario, we have a VO ... According to the Thoughbot Rails Style Guide, we should Use def self.method, not the scope :method DSL. My question is: is this simply for the sake of choosing one of these styles and sticking ... I need to be able to load, use, and free resources from a single monolithic object. I have two requirements: 1. That the resource loaded is owned by the object that created it and 2. All objects in a ... Can you recommend a nice way of checking a particular value between calls to a set of functions? E.g. something like this in Python (might not be terribly 'Pythonic'): self.error_code = 0 # this ...
s3://commoncrawl/crawl-data/CC-MAIN-2015-40/segments/1443736678861.8/warc/CC-MAIN-20151001215758-00005-ip-10-137-6-227.ec2.internal.warc.gz
CC-MAIN-2015-40
800
4
http://imgur.com/r/facebook/top
code
How to stay safe on Facebook —One infographic to know it all In 11 years I've reported three posts. A beheading video, a mass execution video, and some porn. Only the porn was found to violate FB Community Standards. I'm getting real sick of these bots sending friend requests - I got 8 in just 24hrs Any clue why my email is an invalid domain when signing up for Facebook. Its registered though google domains? I don't usually complain about FB privacy issues, but this one freaked me out. How do I turn this off? So a friend of mine reported a FB page called "Pitbull Fights". This was the response...
s3://commoncrawl/crawl-data/CC-MAIN-2014-42/segments/1414637899124.21/warc/CC-MAIN-20141030025819-00098-ip-10-16-133-185.ec2.internal.warc.gz
CC-MAIN-2014-42
605
6
https://www.geraldundone.com/canon-c500-mark-ii-the-best-camera-ive-ever-used/
code
Canon C500 Mark II – The Best Camera I’ve Ever Used Review of the Canon C500 Mark II. Evaluating the ergonomics, image quality, raw vs 10-bit, noise performance, and overall system stability & limitations. 👍 Thanks for watching! Please like, comment, & subscribe. Table of Contents: 0:00 – Intro 0:36 – Summary of Things the C500 Mark II Does Well 1:54 – Experiences in the Field with Armando Ferreira 5:55 – Audio Controls & Preamp Comparison 7:12 – Fan Noise & Overheating 7:37 – Monitoring LUTs & Waveform Issues 8:30 – Excellent Metering & White Balance 9:19 – Touch Screen Is Great, But Shakes a Bit 9:45 – Battery Life & Power Options 10:25 – Canon EU-V2 Expansion Unit 11:19 – Raw Recording Isn’t Economical 11:34 – Noise Reduction & High ISO Noise 12:17 – ISO Scaling Issues with Raw Recording 12:48 – Low Light Performance / Native ISOs 13:30 – Why I Think 10-Bit XF-AVC Is Better 14:22 – Media Cost Considerations 15:13 – Weak 120p Mode – Huge Crop, No AF or Audio 16:20 – Final Thoughts I use Artlist for my background music needs. Use this link to get two extra months when signing up: http://bit.ly/2TV5sYT Patreon & PayPal: If you wish to support the channel monetarily, you can use my Patreon page here: https://www.patreon.com/GeraldUndone Or directly via PayPal here: https://www.paypal.me/geraldundone This is appreciated, but unnecessary, and no content will ever be behind a paywall. Some of the links in my video descriptions are affiliate links, which means at no extra cost to you, I will make a small commission if you click them and make a qualifying purchase. If you have a different purchase in mind, you can also use these storewide links below. 🛒 Amazon: http://geni.us/1m1G32 🛒 B&H Photo: https://bhpho.to/2MYRKBE 💬 Closed captioning provided by ONEXTRA: https://onextra.ca 🚩 If you’re a fellow YouTuber, I highly encourage you to check out TubeBuddy. It’s a fantastic tool that saves me hours each month. https://www.tubebuddy.com/Undone
s3://commoncrawl/crawl-data/CC-MAIN-2023-40/segments/1695233510671.0/warc/CC-MAIN-20230930082033-20230930112033-00216.warc.gz
CC-MAIN-2023-40
2,031
32
https://premium.wpmudev.org/forums/topic/child-theme-edu-clean-doesnt-overwrite
code
I've a question about the edu-clean theme. We did several adjustments to the CSS and theme-options.php. For example we add some new color-boxes for the theme designer. That works fine. But with the update we lose all the adjustments. Now I put these in the child theme, so we will not edit the core of edu-clean. It's that right? But, the problem is, that I won't see the adjustments of the Child theme? So the CSS of the core will be used instead of the child theme CSS. Do I something wrong? See the attachment. Thank you in advance!
s3://commoncrawl/crawl-data/CC-MAIN-2018-26/segments/1529267867666.97/warc/CC-MAIN-20180625111632-20180625131632-00222.warc.gz
CC-MAIN-2018-26
535
5
https://kb.cloudblue.com/en/131426
code
Since OA 7.1 login to Control Panel can fail if user's password contains national symbols (like 'ä'). The following message is shown: "You do not have the necessary permissions. Please contact your account administrator for assistance." Odin Operations Automation does not support passwords containing symbols of national alphabets. Such passwords can be set through OA Billing if "Password Quality Level" parameter is set to "None". This behaviour is confirmed as an internal software issue with ID #PBA-82032. Contact your Technical Account Manager or Pooled Technical Associate Team at [email protected] to clarify the status of #PBA-82032. Change user's password to the one containing Latin letters (uppercase and lowercase), numerals and symbols (all characters not defined as letters or numerals) except spaces. There are other cases not related to user's password where login to Control Panel can fails with the aforementioned error message:
s3://commoncrawl/crawl-data/CC-MAIN-2018-30/segments/1531676593586.54/warc/CC-MAIN-20180722194125-20180722214125-00123.warc.gz
CC-MAIN-2018-30
949
6
https://proceedings.neurips.cc/paper_files/paper/2020/file/23937b42f9273974570fb5a56a6652ee-MetaReview.html
code
This paper proposes a defense to adversarial examples through generative models and adversarial training. But that's just the pretense of the paper. In reality, the paper is a study of the manifold hypothesis as a defense. The authors construct OM-ImageNet, an ImageNet variant that is entirely on the manifold of a GAN. By doing this, it is possible to evaluate the robustness of defenses that project images onto the manifold of a GAN. Typically it's hard to evaluate manifold projection defenses because images aren't completely on-manifold. This solves that problem. The authors construct a defense for this scheme. I don't believe the claim that this defense works, but the setup of OM-ImageNet is an interesting idea I haven't seen before. Future study on this dataset should be interesting.
s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947473401.5/warc/CC-MAIN-20240221070402-20240221100402-00065.warc.gz
CC-MAIN-2024-10
797
1
http://diy.stackexchange.com/questions/tagged/generator?sort=unanswered
code
Home Improvement Meta to customize your list. more stack exchange communities Start here for a quick overview of the site Detailed answers to any questions you might have Discuss the workings and policies of this site tag has no wiki summary. Why is my emergency generator hard to pull for starting? My portable generator ran fine for 5 hours, then ran out of gas. I refilled the tank but now the pull is excessively hard and the unit will not start. I removed the spark plug and the pull was ... Dec 10 '13 at 18:04 recently active generator questions feed unanswered question tagged Hot Network Questions How one can implement the equation with "i" in it? const and pointers in C Why was Britain willing to return Hong Kong but not Gibraltar? How to use custom navigation menu instead of categories menu Shorter than a Split Second! Beginning Blackjack program At least h with at least h A word for weariness after travelling? Can I wire 3-way switches so that when they are both in the same orientation the light will be off? How does CVE-2014-9390 affect me? LaTeX vs Word; improvements of LaTeX over the years Difference between /run and /var/run Calculating a limit of integral What is the highest possible print resolution in book publishing? What is simulated payload and why are they used? Use two different ip addresses per host in SSH Why the need for multiple I2C ports? Is it possible the person sitting across from me at Starbucks was trying to hack my laptop? Fermat's Last Theorem (Case n = 3) Question How can I rotate an object's coordinate system without rotating the object? Can US citizens go to Cuba freely and vice versa after the recent diplomatic relation restoration? What's the word for 'busting the myth'? Who invented the way we write exponentiation? more hot questions Life / Arts Culture / Recreation TeX - LaTeX Unix & Linux Ask Different (Apple) Geographic Information Systems Science Fiction & Fantasy Seasoned Advice (cooking) Personal Finance & Money English Language & Usage Mi Yodeya (Judaism) Cross Validated (stats) Theoretical Computer Science Meta Stack Exchange Stack Overflow Careers site design / logo © 2014 stack exchange inc; user contributions licensed under cc by-sa 3.0
s3://commoncrawl/crawl-data/CC-MAIN-2014-52/segments/1418802775225.37/warc/CC-MAIN-20141217075255-00084-ip-10-231-17-201.ec2.internal.warc.gz
CC-MAIN-2014-52
2,221
54
http://commit-digest.org/issues/2007-12-30/moreinfo/754238/
code
Revision 754238(Back to digest) Features in KDE Base Add a slot which sends a profile change command to the active session. This can be used to change any setting of the active session, using the same property=value semi-colon separated list format used by the konsoleprofile tool. This is experimental API and not guaranteed to be present in future KDE 4 releases.
s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368700958435/warc/CC-MAIN-20130516104238-00027-ip-10-60-113-184.ec2.internal.warc.gz
CC-MAIN-2013-20
365
4
https://www.placementindia.com/job-detail/driver-jobs-in-bailey-road-patna-for-hidden-972920.htm
code
Number of Vacancy Mechanical engineering, one of the oldest branches of Engineering, deals with the design, manufacturing, and maintenance of machines. With the advent of modern techn... Facebook, LinkedIn, Twitter, Instagram and many other social networking sites have made the world a socially global village where you can connect with anyone across ... Those graduation days are over now. As a fresh college pass-out, the most probable question haunting your mind should be – ‘How to get a good job’? This blog will he...
s3://commoncrawl/crawl-data/CC-MAIN-2021-21/segments/1620243991870.70/warc/CC-MAIN-20210517211550-20210518001550-00509.warc.gz
CC-MAIN-2021-21
530
4
https://www.oreilly.com/library/view/sas-94-intelligence/9781629600901/chapter-20.html
code
For more information, see http://support.sas.com/resources/thirdpartysupport/v94/ Parallel Storage Overview The SAS Scalable Performance Data Engine (SPD Engine) and the SAS Scalable Performance Data Server (SPD Server) are designed for high-performance data delivery. They enable rapid access to SAS data for intensive processing by the application. Although the Base SAS engine is sufficient for most tables that do not span volumes, the SAS SPD Engine and SAS SPD Server are high-speed alternatives for processing very large tables. They read and write tables that contain millions of observations, including tables that expand beyond the 2-GB size limit imposed by some operating systems. In addition, they support SAS analytic software and procedures that require fast processing Options for Implementing Parallel Storage Two options are available for implementing parallel storage: • The SAS SPD Engine is included with Base SAS software. It is a single-user data storage solution that shares the high-performance parallel processing and parallel I/O capabilities of SAS SPD Server, but lacks the additional complexity of a multi-user The SPD Engine runs in UNIX and Windows operating environments as well as some z/OS operating environments. • The SAS SPD Server is available as a separate product. It is a multi-user parallel- processing data server with a comprehensive security infrastructure, backup and restore utilities, and sophisticated administrative and tuning options. The SAS SPD Server runs in Windows and UNIX operating environments. How Parallel Storage Works The SAS SPD Engine and SAS SPD Server deliver data to applications rapidly by organizing large SAS data sets into a streamlined file format. The file format enables multiple CPUs and I/O channels to perform parallel input/output (I/O) functions on the data. Parallel I/O takes advantage of multiple CPUs and multiple controllers, with multiple disks per controller, to read or write data in independent threads. One way to take advantage of the features of the SAS SPD Engine is through a hardware and software architecture known as symmetric multiprocessing (SMP). An SMP machine has multiple CPUs and an operating system that supports threads. These machines are usually configured with multiple controllers and multiple disk drives per When the SAS SPD Engine reads a data file, it launches one or more threads for each of the CPUs in the SMP machine. These threads then read data in parallel from multiple disk drives, driven by one or more controllers per CPU. The SAS SPD Engine running on an SMP machine provides the capability to read and deliver much more data to an application in a given elapsed time. 20 Chapter 3 • Data in the SAS Intelligence Platform
s3://commoncrawl/crawl-data/CC-MAIN-2019-43/segments/1570987813307.73/warc/CC-MAIN-20191022081307-20191022104807-00411.warc.gz
CC-MAIN-2019-43
2,753
37
http://www.mapforums.com/importing-gis-data-into-mappoint-6672.html
code
About 6 years ago Microsoft asked Visimation to create the SpatialDataImport utility as one piece of a set of "sample code" to highlight MapPoint's programability. We developed the code sample but it was never designed as a real end-user application. After receiving many inquiries about conditions where it didn't work properly, we created a real tool to perform the import tasks more reliably. It's available at GIS Data Import for Microsoft MapPoint®. This GIS Data Import tool converts the coordinate system of the source shape files to WGS84 so that MapPoint can understand it. The import process is very easy and provides control over the line and fill colors as well as whether the shapes display in front of or below the map data. I hope this is helpful to the readers of this forum.
s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917126237.56/warc/CC-MAIN-20170423031206-00448-ip-10-145-167-34.ec2.internal.warc.gz
CC-MAIN-2017-17
792
3