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://www.lokmanvideo.com/animation/pixel/uganda-knuckles-vs-da-wae-official-series-2.html | code | What if Uganda Knuckles met DA WAE? Is that the way? And do you know da wae? Save the queen!
Please support my channel SUBSCRIBE ▶ https://goo.gl/qNKzhx
Watch the other episodes ▶ https://goo.gl/B2z6LP
If you don’t know the Uganda Knuckles way, this video is for you!
Uganda knuckles more like red Somalian sonic from SEGA da wae animation vr chat
Check all my other videos on my channel and please LIKE and SUBSCRIBE for more cool stuff
May the way be with you!
UGANDA KNUCKLES VS Da Wae (Official series)
by Lokman Video
#Sonic #UgandanKnuckles #Lokman | s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764499713.50/warc/CC-MAIN-20230129112153-20230129142153-00263.warc.gz | CC-MAIN-2023-06 | 560 | 10 |
https://community.sap.com:443/t5/open-source-blogs/systemd-and-ostree-the-chase-is-better-than-the-catch/ba-p/13571964 | code | My last blog post ended with an error message saying that /sysroot.tmp could not be created.
This error is a good example for how a follow up error can lead you on the wrong trace for finding the root cause of an issue.
Looking at the proper logs, we can identify a pattern: The program that is being run is ostree-prepare-root. It fails and is automatically restarted multiple times by systemd.
The /sysroot.tmp error starts to appear at the second invocation. This shows us the original error
failed to MS_MOVE '/sysroot' to 'sysroot': No such file or directory
We did not see this in last month's blog post, because systemctl status does only show the most recent program execution.
Instead, it seems to be required to manually create the sysroot directory inside the deployment folder.
To understand this, I needed to look into the source code of ostree-prepare-root. I've created a flowchart of the relevant part of the program. The program is actually much more complex than this flowchart implies, but this shows what's going wrong: The program constructs a deploy_path, uses this as the current working directory and then tries to mount the sysroot directory. This fails because the sysroot directory does not exist.
I find it a bit weird that this directory is not created by the deploy command, as it does create all the other directories that are required for a deployment. I've asked for clarification in an issue in the OSTree github repo, but it seems to be as intended. Good enough for me.
With this issue resolved, we find the next problem when trying to boot into our image: systemd can't find init.
This error initially was hidden. It does get only visible once you append systemd.journald.forward_to_console=1 to the kernel command line as documented on the systemd website. I found this option very helpful in cases where boot issues prevent me from getting a working shell. Over the last few weeks, I did multiple times get into a loop while booting which did not give me a working shell.
I did stumble over the language here as I was not sure what 'chase' means in that context. Turns out, this is systemd's term for finding files.
The chase is better than the catch
Weird. systemd is our init, so why does it look for /sbin/init?
We can see in the log that this comes from the initrd-switch-root service. This is part of systemd, not of OSTree.
Consider this very simplified view of the boot process. OSTree has a 'prepare root' service, which is the one we discussed before. This does a bunch of mounts and prepares the system so that systemd can do its own switch root. And now we're failing in the systemd switch root.
I've discovered that in my CentOS OSTree system, the same service is running, but the systemctl switch-root command does get another argument: /sysroot. This seems to be required, but does not yet fix our problem.
Turns out, I was missing a link from /lib to /usr/lib. This is part of a thing called usr merge which is a concept in modern linux distributions. While technically not being strictly required for OSTree, doing the user merge makes it easier to setup a system.
After fixing this, we do get into a booting system, but it does still show errors at boot.
Despite the errors, we can login and get a somewhat working system.
Upon investigation, we see multiple errors.
Way too many file-system mounts are read-only. The fix seems to be to start the system with the rw kernel parameter. This gives us a much more sensible system, where the important read-only filesystem mount on the /usr directory is still read-only, as expected.
I guess it should be possible to boot the system with the ro kernel parameter, but I did not investigate this any further.
Our /var directory is missing some entries such as /var/home, /var/roothome, /var/opt and others. That's why we get a message about the missing home directory when we get our login shell. They are part of our original root file system, but not part of the OSTree deployment. This can also be fixed by manually creating the missing directories. Now, if we login, we get our home directory and it's writable, as expected.
Another issue is that a handful of systemd services fail because they don't expect a read-only filesystem. Since I'm not sure how to fix this just now, I've decided to disable the services for now. This is not a proper solution, but it allows us to continue with the next steps.
After those tweaks, we do get a system that boots just fine.
The mounts look good to me, and systemctl does report the system as running.
Hooray, the first big milestone is reached.
Adding podman to the image allows us to run software in containers. As 'installing' software in the traditional sense is not possible in image-based systems, having a container runtime is vital. Adding podman turns out to be trivial using the Garden Linux builder.
When working with OSTree, it is easy to get confused by the different terms used in the documentation and code. Here is a list of terms that I found useful to keep in mind:
identifier for the os
"debian", "fedora", "gardenlinux"
sha256 checksum of the whole root-fs (all files)
sha256 checksum of the kernel + initrd files
ostree kernel parameter, provided in the bootloader entry
Now that we have a running prototype, we can look into the next steps.
Improve the prototype
Our working prototype still has quite a few very rough edges, such as
Podman can't be used in rootless mode (by a non-root user, without the use of sudo)
We deactivated some systemd services that failed due to read-only mounts, we need to investigate how to fix those properly
So far we've only tested in local qemu/kvm virtual machines, none of the cloud providers is tested yet
I'm sure there are more issues that I'm not aware yet.
We can boot a system, but we can't update it yet. For that, we need to build OSTree repositories and serve them via HTTP. OSTree can pull new commits (like git). A new commit can become a new deployment which we can boot into.
Layering of features
Since we don't have a package manager available in image-based systems, some other solution is needed. For Red Hat's operating systems, rpm-ostree is available. As Garden Linux is based on Debian which does not use the RPM package format, we need to look for some other solution.
Pick of the month
Write about what you learn. It pushes you to understand topics better. is a blog post by Addy Osmani that kind of describes why I chose to write about what I'm doing in this project. By committing to write about it in public, I hold myself accountable. I think writing does also have a value if you're only doing it for yourself, but the commitment of publishing posts does help me to stay focused.
But I do also hope that my posts are useful for others and might help to understand how OSTree works.
If you're interested in the topic, feel free to comment this blog post or reach out to me on LinkedIn. | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947473735.7/warc/CC-MAIN-20240222061937-20240222091937-00116.warc.gz | CC-MAIN-2024-10 | 6,911 | 49 |
http://www.simpleviewer.net/forum/viewtopic.php?id=5691 | code | Topic: problem with xml gallery
I have a problem with 1 of the xml galleries
I have many of them but the last one which I created today is not working.
The html file opens and I see grey rectangles but the photos do not open.
the file names are correct and I know that they are case-sensitive.
all the other galleries are working and I don´t know why the last one which I created today is not working.
Is there a gallery limit at Tiltviewer pro? | s3://commoncrawl/crawl-data/CC-MAIN-2021-25/segments/1623487649688.44/warc/CC-MAIN-20210619172612-20210619202612-00238.warc.gz | CC-MAIN-2021-25 | 446 | 7 |
https://www.telerik.com/forums/missing-countries | code | I'm using GeoJson Map for my project.
It's a Map with all the countries, and I've used the Json file in the demo example (content/dataviz/map/countries-users.geo.json). But unfortunately it seems like it doesn't have the coordinates of all the countries. E.g. it's missing "Sint Maarten" and "Aruba".
I was wondering if you could let me know where I can find the correct coordinates. Because I couldn't find any good reference that works with Kendo Map. | s3://commoncrawl/crawl-data/CC-MAIN-2022-40/segments/1664030335355.2/warc/CC-MAIN-20220929131813-20220929161813-00201.warc.gz | CC-MAIN-2022-40 | 453 | 3 |
http://www.elegantbrain.com/edu4/classes/readings/intell-mainpage.html | code | You must down load the parts you
have been assigned to read from the list below. As usual, read them in
their entirety, comprehend them, digest them and be prepared to be tested
Advice: do not use your own personal printer. Use the school printers in the computer labs. | s3://commoncrawl/crawl-data/CC-MAIN-2019-04/segments/1547584332824.92/warc/CC-MAIN-20190123130602-20190123152602-00356.warc.gz | CC-MAIN-2019-04 | 269 | 4 |
http://www.zicorodriguez.com/pdf/administering-sql-server-7 | code | By Divya Chaturvedi
Microsoft SQL Server personal the lion's proportion of the marketplace for home windows NT relational databases. Now SQL model 7 is at the way--and this authoritative consultant can be available to unravel difficulties and supply an entire migration direction from 6.5 to 7 for database directors and alertness builders. Written through authors who've designed and carried out the various biggest SQL DBMS platforms within the united states, it is the whole advisor to the improve that provides a brand new point of help for big databases and enterprise-level functions.
Read Online or Download Administering SQL Server 7 PDF
Similar sql books
Seasoned SQL Server 2008 Analytics presents every thing you must be aware of to boost refined and visually attractive revenues and advertising and marketing dashboards utilizing SQL Server 2008 and to combine these dashboards with SharePoint, PerformancePoint, and different key Microsoft applied sciences. The e-book starts through addressing the numerous misconceptions that encompass using Key functionality signs (KPIs) and giving a short evaluation of the enterprise intelligence (BI) and reporting instruments that may be mixed at the Microsoft platform that will help you generate the implications that you just desire.
It is a nice reference booklet for personal home page and MySQL. i would not suggest it while you are desirous to use it because the soul goal of studying from scratch, however it is superb for somebody who's a least slightly acquainted with Hypertext Preprocessor and MySQL.
In accordance with the Unleashed sequence, this e-book is likely one of the such a lot finished assets for Informix details out there. Informix Unleashed covers all apsects of this system, from install and configuration via all stages of improvement and management. The CD includes code from the publication, in addition to libraries, pattern utilities, and 3rd half courses.
Parallel execution of SQL queries opposed to huge databases deals an answer to the matter of decreasing question reaction. This ebook addresses the similar optimization challenge: Given an SQL question, locate the plan that provides the end result in minimum time. the writer provides and analyzes new theoretical findings and effective algorithms referring to parallel operation at a pragmatic point of granularity correct to database approach operations.
Additional resources for Administering SQL Server 7
User-defined. User-defined file groups are any file groups specified using the FILE GROUP keyword in a CREATE DATABASE or ALTER DATABASE statement. Default. The default file group contains the pages for all tables and indexes that do not have a file group specified when they are created. One database can have only one file group as default. The primary file group is considered the default file group if it is not defined otherwise. 5 Installing SQL Server Using SMS The systems management server SMS is a component of Microsoft BackOffice, which allows central management of hardware and software configuration of computers on a network.
The primary data file is the first file in the database. " Every database has a primary data file. This file points to the rest of the database files. It keeps the data information of the database. Page 22 Secondary Data File. All the data files other than the primary data file are known as secondary data files. " A database can have multiple secondary files, or it may not have any. This file also keeps the data information. Log Files. Log files are used for keeping log information. Every database must have one log file.
Data access is easy Data access is one of the key features of any database system. The data is useless unless it can be processed to generate information, hence a DBMS provides good tools and interfaces to access the data. Data is secured A DBMS can support multiple users and not every user should be able to access all the data. DBMS provides methods to restrict user access in order to enforce security. Concurrent access anomalies can be handled This point also arises from the fact that multiple users can use a database at the same time. | s3://commoncrawl/crawl-data/CC-MAIN-2018-43/segments/1539583514005.65/warc/CC-MAIN-20181021115035-20181021140535-00010.warc.gz | CC-MAIN-2018-43 | 4,163 | 12 |
https://ifi-audio.com/faqs/does-bluetooth-v5-0-offer-benefits-over-earlier-versions/ | code | Yes and no.
For audio streams, Bluetooth V5.0 does not really offer material differences to 2.1 (neither do 3.0, 3.1, 4.2 etc). Almost all Bluetooth 5.0 improvements over 4.2 focus on low energy modes and nothing has been done for audio. Similar situations existed for earlier versions. To take advantage of the data-rate and range improvements, a new audio device profile (not A2DP) would be required. | s3://commoncrawl/crawl-data/CC-MAIN-2022-40/segments/1664030335304.71/warc/CC-MAIN-20220929034214-20220929064214-00123.warc.gz | CC-MAIN-2022-40 | 402 | 2 |
https://digitalchalk.freshdesk.com/support/solutions/articles/59813-adding-a-certificate-element-to-your-course | code | Use Add a Certificate if you want DigitalChalk to create a personalized certificate of completion when a student completes a course. You can specify how you want the the certificate to look and what information to include on the certificate. You can use a default certificate provided by DigitalChalk, or you can upload your own certificate.
To add a Certificate:
Click the Manage Courses tab. The Courses list is displayed.
- Click on the name of the course. The Edit Course Details window is displayed with a task list.
- Click Manage Course Elements from the task list.
The Elements list for the course is displayed.
- Click Add a Certificate from the Course Elements list. The Certificate window is displayed with the DigitalChalk default certificate.
Adding fields to the Certificate:
- Click the Add Field button. The Add Field window is displayed.
- Select Course Fields and Student Fields from the list of available fields. Click Test Field to add your own text to the certificate. Click the Add button to add a field to the certificate.
- The certificate is displayed with the field you selected at the bottom of the certificate.
- Drag the field to where you want it displayed on the certificate.
- Repeat these steps for each field you want to add to the certificate.
- To change the font or font size of the field, move the mouse over the field and click the Edit icon .
To delete the field, move the mouse over the field, and click the delete icon .
- Click the Upload Background Image button. The Select a File window is displayed.
- Click Browse within the Select a File field. Your file selection window is displayed. Select the file you want to use as your certificate template and click the Upload button. Please note that certificate templates must be in .PNG, .GIF, or .JPG format. The optimum size is 1200 pixels wide x 928 pixels high. DigitalChalk will compress or expand the image to the optimum size.
- The Certificate window is displayed with the certificate template you uploaded.
- Click The Add Field button to add fields to the new certificate template.
Click the Reset Background button to reset the certificate template back to the DigitalChalk default template.
Click the Preview Certificate button to see a sample of the completed certificate.
- Enter the general information for the Certificate or use the DigitalChalk defaults. The fields with asterisks are the only required information.
Click the Save button when you finish entering information for the Certificate. | s3://commoncrawl/crawl-data/CC-MAIN-2020-34/segments/1596439738380.22/warc/CC-MAIN-20200809013812-20200809043812-00406.warc.gz | CC-MAIN-2020-34 | 2,504 | 23 |
https://www.freshworks.com/apps/freshservice/tfs_1/ | code | Create work items in TFS from Freshservice with this integration.
By installing this app, you get the following benefits:
1. Agents can create workitems from the ticket details sidebar in Freshservice. By selecting the project and workitem type, Freshservice tickets appear as workitems on TFS.
2. Once the work item is created and mapped with a ticket, any note/reply made to the Freshservice tickets will be fetched and added in TFS automatically.
3. Any status change in TFS will automatically reflect in the corresponding Freshservice tickets and vice versa. Status configuration can be provided in the app config stage.
4. Workitems in TFS can also be created via other sources; if the subject name matches with the configured subject in app config, it will create a workitem in the specific project.
5. Ticket requester will be mapped as the "created by" user in TFS.
- This app needs you to have an account with TFS.
- You need the following details to install the app.
1. Personal Access Token from TFS (To get Personal Access Token from TFS account, go to TFS settings Profile Settings -> Security settings) Click + sign to create new token.
2. Provide TFS Domain Name
3. Provide TFS UserName
4. Freshservice Domain name
5. Freshservice API key | s3://commoncrawl/crawl-data/CC-MAIN-2019-30/segments/1563195525974.74/warc/CC-MAIN-20190719032721-20190719054721-00312.warc.gz | CC-MAIN-2019-30 | 1,253 | 14 |
http://virtualization.sys-con.com/node/2958832 | code | |By Business Wire||
|February 6, 2014 08:01 AM EST||
Quadrant Software, LLC, a Candescent Partners company and the leader in Document Output Management (DOM), today announced it has acquired IBM i modernization market leaders Business Computer Design, Inc. (BCD), located in Chicago, and Victoria, BC-based ExcelSystems Software Development, Inc. (ESDI).
BCD and ESDI are two of the most successful software organizations in the IBM i marketplace, with more than 35 years of experience in providing modernization solutions for thousands of organizations worldwide. ESDI is the development arm of BCD and the two companies have been partners for more than 20 years. BCD and ESDI will continue to operate under their brands.
BCD and ESDI are known for their exceptional technology, quality, service and support. Through this acquisition, Quadrant will benefit from product synergies and will be able to expand its solutions to maximize, modernize and mobilize the value and investment organizations have in their IBM i assets and applications.
“This transaction will provide significant opportunities for our customers, partners and employees,” said Stephen Woodard, who will serve as CEO of the combined companies. “Through this acquisition, we can take advantage of BCD’s global reach and can offer our customers a larger and complementary portfolio of solutions, from infrastructure and application modernization to mobile development, further maximizing the investment they have made in IBM i.”
“Quadrant’s solutions are very synergistic with our current product portfolio, and this merger will enable us to provide new opportunities for our customers and employees,” said Duncan Kenzie, founder of ESDI who becomes chief knowledge officer for the combined companies. “We are excited to continue our work with BCD with the added resources afforded by Quadrant.”
“Our customers have relied on BCD’s solutions for more than 35 years,” said Eric Figura, BCD’s director of sales and marketing for more than 30 years, who will assume the role of chief customer advocate at the combined company. “We now have an opportunity to expand the reach of our solutions with a greater breadth of resources and global channel options, while we continue to offer the level of technology, service and support that our customers have come to expect.”
BCD founders Lynn and Joseph Svandra are very pleased that BCD will continue the history of quality and success that Lynn started in 1976 and then managed throughout BCD’s growth. The combined company will benefit BCD's clients, business partners, employees, and the growth of its product lines.
“This key acquisition is consistent with our strategy of combining world-class technology and services companies,” said Stephen Jenks, managing partner of Candescent Partners. “BCD and ESDI have a long history of success and are an ideal complement to Quadrant.”
BCD is the clear leader in modernization and mobility solutions for the IBM i marketplace. With more than 35 years of experience, BCD has successfully helped thousands of organizations worldwide to modernize using BCD software solutions that include Presto, WebSmart, Catapult and ProGen. BCD has received 40 industry awards for software excellence, is a member of IBM's IBM i ISV Advisory Board and an IBM Advanced Business Partner. BCD is known for the ease of use of its products and its outstanding customer service. For more information, visit: www.bcdsoftware.com
About ExcelSystems Software Development, Inc.
ExcelSystems Software Development, Inc. (ESDI) is a software development and services company located in Victoria, BC, Canada. ESDI develops, supports and provides services for almost all of the software under the BCD brand. For more than 20 years, ESDI has operated on the core principles of technical curiosity, hard work and innovation. For more information, visit: www.excelsystems.com
About Quadrant Software, LLC
Founded in 1990, Quadrant Software is a leading provider of Document Output Management (DOM) software and solutions for the enterprise. Through its award-winning, cloud based QuadraDoc V, FastFax and Formtastic product lines, companies can electronically create and manage mission critical documents from their data center, or the cloud, via print, fax or email to reduce expenses, increase productivity and improve communication in a more secure and compliant manner. Quadrant Software has customers and partners around the world in key markets including finance, manufacturing, transportation, retail and healthcare. For more information, visit: www.quadrantsoftware.com
About Candescent Partners, LLC
Candescent Partners is a Boston-based private equity firm that invests in the acquisition, growth and recapitalization of lower middle market companies in healthcare services, business services, software and consumer products and services. Steve Jenks and Sandy McGrath founded Candescent in 2009 and Steve Sahlman later joined as a Principal. Candescent invests in businesses with annual EBITDA between $2 and $8 million and enterprise values between $10 and $75 million. For more information, visit: www.candescentpartners.com
IoT is at the core or many Digital Transformation initiatives with the goal of re-inventing a company's business model. We all agree that collecting relevant IoT data will result in massive amounts of data needing to be stored. However, with the rapid development of IoT devices and ongoing business model transformation, we are not able to predict the volume and growth of IoT data. And with the lack of IoT history, traditional methods of IT and infrastructure planning based on the past do not app...
Jan. 17, 2017 10:30 PM EST Reads: 624
The many IoT deployments around the world are busy integrating smart devices and sensors into their enterprise IT infrastructures. Yet all of this technology – and there are an amazing number of choices – is of no use without the software to gather, communicate, and analyze the new data flows. Without software, there is no IT. In this power panel at @ThingsExpo, moderated by Conference Chair Roger Strukhoff, Dave McCarthy, Director of Products at Bsquare Corporation; Alan Williamson, Principal ...
Jan. 17, 2017 10:30 PM EST Reads: 2,312
WebRTC has had a real tough three or four years, and so have those working with it. Only a few short years ago, the development world were excited about WebRTC and proclaiming how awesome it was. You might have played with the technology a couple of years ago, only to find the extra infrastructure requirements were painful to implement and poorly documented. This probably left a bitter taste in your mouth, especially when things went wrong.
Jan. 17, 2017 09:15 PM EST Reads: 7,504
In 2014, Amazon announced a new form of compute called Lambda. We didn't know it at the time, but this represented a fundamental shift in what we expect from cloud computing. Now, all of the major cloud computing vendors want to take part in this disruptive technology. In his session at 20th Cloud Expo, John Jelinek IV, a web developer at Linux Academy, will discuss why major players like AWS, Microsoft Azure, IBM Bluemix, and Google Cloud Platform are all trying to sidestep VMs and containers...
Jan. 17, 2017 08:00 PM EST Reads: 453
SYS-CON Media announced today that @WebRTCSummit Blog, the largest WebRTC resource in the world, has been launched. @WebRTCSummit Blog offers top articles, news stories, and blog posts from the world's well-known experts and guarantees better exposure for its authors than any other publication. @WebRTCSummit Blog can be bookmarked ▸ Here @WebRTCSummit conference site can be bookmarked ▸ Here
Jan. 17, 2017 08:00 PM EST Reads: 11,585
A critical component of any IoT project is what to do with all the data being generated. This data needs to be captured, processed, structured, and stored in a way to facilitate different kinds of queries. Traditional data warehouse and analytical systems are mature technologies that can be used to handle certain kinds of queries, but they are not always well suited to many problems, particularly when there is a need for real-time insights.
Jan. 17, 2017 06:45 PM EST Reads: 6,207
Providing secure, mobile access to sensitive data sets is a critical element in realizing the full potential of cloud computing. However, large data caches remain inaccessible to edge devices for reasons of security, size, format or limited viewing capabilities. Medical imaging, computer aided design and seismic interpretation are just a few examples of industries facing this challenge. Rather than fighting for incremental gains by pulling these datasets to edge devices, we need to embrace the i...
Jan. 17, 2017 05:15 PM EST Reads: 3,558
Web Real-Time Communication APIs have quickly revolutionized what browsers are capable of. In addition to video and audio streams, we can now bi-directionally send arbitrary data over WebRTC's PeerConnection Data Channels. With the advent of Progressive Web Apps and new hardware APIs such as WebBluetooh and WebUSB, we can finally enable users to stitch together the Internet of Things directly from their browsers while communicating privately and securely in a decentralized way.
Jan. 17, 2017 04:45 PM EST Reads: 3,044
Fifty billion connected devices and still no winning protocols standards. HTTP, WebSockets, MQTT, and CoAP seem to be leading in the IoT protocol race at the moment but many more protocols are getting introduced on a regular basis. Each protocol has its pros and cons depending on the nature of the communications. Does there really need to be only one protocol to rule them all? Of course not. In his session at @ThingsExpo, Chris Matthieu, co-founder and CTO of Octoblu, walked through how Octob...
Jan. 17, 2017 04:30 PM EST Reads: 2,903
The Internet of Things can drive efficiency for airlines and airports. In their session at @ThingsExpo, Shyam Varan Nath, Principal Architect with GE, and Sudip Majumder, senior director of development at Oracle, discussed the technical details of the connected airline baggage and related social media solutions. These IoT applications will enhance travelers' journey experience and drive efficiency for the airlines and the airports.
Jan. 17, 2017 04:15 PM EST Reads: 1,977
SYS-CON Events announced today that Catchpoint, a leading digital experience intelligence company, has been named “Silver Sponsor” of SYS-CON's 20th International Cloud Expo®, which will take place on June 6-8, 2017, at the Javits Center in New York City, NY. Catchpoint Systems is a leading Digital Performance Analytics company that provides unparalleled insight into your customer-critical services to help you consistently deliver an amazing customer experience. Designed for digital business, C...
Jan. 17, 2017 02:30 PM EST Reads: 1,740
With major technology companies and startups seriously embracing IoT strategies, now is the perfect time to attend @ThingsExpo 2016 in New York. Learn what is going on, contribute to the discussions, and ensure that your enterprise is as "IoT-Ready" as it can be! Internet of @ThingsExpo, taking place June 6-8, 2017, at the Javits Center in New York City, New York, is co-located with 20th Cloud Expo and will feature technical sessions from a rock star conference faculty and the leading industry p...
Jan. 17, 2017 02:15 PM EST Reads: 3,635
In his General Session at 17th Cloud Expo, Bruce Swann, Senior Product Marketing Manager for Adobe Campaign, explored the key ingredients of cross-channel marketing in a digital world. Learn how the Adobe Marketing Cloud can help marketers embrace opportunities for personalized, relevant and real-time customer engagement across offline (direct mail, point of sale, call center) and digital (email, website, SMS, mobile apps, social networks, connected objects).
Jan. 17, 2017 02:00 PM EST Reads: 5,373
Things are changing so quickly in IoT that it would take a wizard to predict which ecosystem will gain the most traction. In order for IoT to reach its potential, smart devices must be able to work together. Today, there are a slew of interoperability standards being promoted by big names to make this happen: HomeKit, Brillo and Alljoyn. In his session at @ThingsExpo, Adam Justice, vice president and general manager of Grid Connect, will review what happens when smart devices don’t work togethe...
Jan. 17, 2017 01:45 PM EST Reads: 264
"There's a growing demand from users for things to be faster. When you think about all the transactions or interactions users will have with your product and everything that is between those transactions and interactions - what drives us at Catchpoint Systems is the idea to measure that and to analyze it," explained Leo Vasiliou, Director of Web Performance Engineering at Catchpoint Systems, in this SYS-CON.tv interview at 18th Cloud Expo, held June 7-9, 2016, at the Javits Center in New York Ci...
Jan. 17, 2017 12:45 PM EST Reads: 5,549
The 20th International Cloud Expo has announced that its Call for Papers is open. Cloud Expo, to be held June 6-8, 2017, at the Javits Center in New York City, brings together Cloud Computing, Big Data, Internet of Things, DevOps, Containers, Microservices and WebRTC to one location. With cloud computing driving a higher percentage of enterprise IT budgets every year, it becomes increasingly important to plant your flag in this fast-expanding business opportunity. Submit your speaking proposal ...
Jan. 17, 2017 12:45 PM EST Reads: 5,061
"Tintri was started in 2008 with the express purpose of building a storage appliance that is ideal for virtualized environments. We support a lot of different hypervisor platforms from VMware to OpenStack to Hyper-V," explained Dan Florea, Director of Product Management at Tintri, in this SYS-CON.tv interview at 18th Cloud Expo, held June 7-9, 2016, at the Javits Center in New York City, NY.
Jan. 17, 2017 12:45 PM EST Reads: 4,471
20th Cloud Expo, taking place June 6-8, 2017, at the Javits Center in New York City, NY, will feature technical sessions from a rock star conference faculty and the leading industry players in the world. Cloud computing is now being embraced by a majority of enterprises of all sizes. Yesterday's debate about public vs. private has transformed into the reality of hybrid cloud: a recent survey shows that 74% of enterprises have a hybrid cloud strategy.
Jan. 17, 2017 11:45 AM EST Reads: 4,192
SYS-CON Events announced today that Super Micro Computer, Inc., a global leader in Embedded and IoT solutions, will exhibit at SYS-CON's 20th International Cloud Expo®, which will take place on June 7-9, 2017, at the Javits Center in New York City, NY. Supermicro (NASDAQ: SMCI), the leading innovator in high-performance, high-efficiency server technology, is a premier provider of advanced server Building Block Solutions® for Data Center, Cloud Computing, Enterprise IT, Hadoop/Big Data, HPC and E...
Jan. 17, 2017 11:45 AM EST Reads: 5,715
SYS-CON Events announced today that Linux Academy, the foremost online Linux and cloud training platform and community, will exhibit at SYS-CON's 20th International Cloud Expo®, which will take place on June 6-8, 2017, at the Javits Center in New York City, NY. Linux Academy was founded on the belief that providing high-quality, in-depth training should be available at an affordable price. Industry leaders in quality training, provided services, and student certification passes, its goal is to c...
Jan. 17, 2017 11:45 AM EST Reads: 1,911 | s3://commoncrawl/crawl-data/CC-MAIN-2017-04/segments/1484560280221.47/warc/CC-MAIN-20170116095120-00370-ip-10-171-10-70.ec2.internal.warc.gz | CC-MAIN-2017-04 | 15,572 | 57 |
https://oarc.rutgers.edu/oarc-liaisons/ | code | I’m a PhD candidate in economics. My primary research area is market microstructure in finance where I pursue empirical approaches in answering research questions. My analytics are based on econometrics including non-/semi- parametric methods and machine learning techniques. I mostly rely on Python 3 and Java for data processing, and R/Rcpp for empirical analyses.
Planning and Public Policy
Sicheng Wang is a PhD candidate in Planning and Public Policy. Sicheng’s research focuses on the patterns, mechanisms, and impact of the emerging ride-hailing services. He uses big data techniques and spatial analysis methods to explore the factors on the trip generation, the association between ride-hailing trips and the urban development, and the impact of shared mobility on residents’ travel behavior. The findings of Sicheng’s research help to understand the way that shared mobility interacts with the city, the society, and the existing transportation system, and shed light on the issues of transportation equity, urban economics, land use, and traffic regulation in the era of the sharing economy.
PhD Candidate in computational chemistry, hobbies in photography and traveling
I am a 5th year PhD student in the lab of Premal Shah. My current PhD thesis project focuses on developing a computational yeast whole-cell model, to explore the evolutionary design principles of mRNA degradation pathways and how they affect protein translation.
My research uses high throughput RNA-seq and ribo-seq to study how changes in regulation of transcription and translation contribute to evolutionary processes like adaptation and speciation.
Biomedical and Health Informatics, Newark
I am a Pre-Doctoral Fellow in Dr Antonina Mitrofanova’s laboratory in the Department of Health Informatics, School of Health Professions, Rutgers. My PhD focuses on developing genome-wide approaches by incorporating statistical and machine learning algorithms to identify markers of drug response and resistance in prostate cancer.
I am a neuroscience PhD candidate working in The Cole Neurocognition Lab, where we utilize human neuroimaging data to study the neural mechanisms of cognition and behavior. My research focus includes cognitive control, network neuroscience, and predictive modeling.
I am a PhD candidate in Environmental Sciences. My research is investigating the impacts of wetland progression on soil microbial communities and its relation to mercury and carbon cycling. I use the Amarel research cluster for processing and analysis of high throughput sequence data.
Kelly Burghart is a first year PhD student in Atmospheric Science. Her research leverages the NCAR Community Earth System Model (CESM) to study the Antarctic climate and its connections globally. Prior to joining Rutgers University, Kelly worked in industry as a systems analyst, project manager, and applications engineer. She has experience with embedded system programming, the software development life cycle, and data analysis. Kelly also holds certifications as a LabVIEW Developer (National Instruments) and as a Scrum Product Owner (Scrum Alliance). Kelly completed her Bachelor of Science, Electrical Engineering in 2014 at Rensselaer Polytechnic Institute.
I’m a 3rd year graduate student at physics department. I’m in the field of condensed matter theory, interested in non-equilibrium many-body system and strongly correlated electron system. | s3://commoncrawl/crawl-data/CC-MAIN-2020-40/segments/1600400205950.35/warc/CC-MAIN-20200922094539-20200922124539-00017.warc.gz | CC-MAIN-2020-40 | 3,430 | 12 |
https://wiki.facepunch.com/gmod/constraint | code | The constraint library allows you to control the constraint system built into the physics engine (rope, weld, ballsockets, etc).
Stores information about constraints in an entity's table.
Stores info about the constraints on the entity's table. The only difference between this and constraint.AddConstraintTable is that the constraint does not get deleted when the entity is removed.
Creates an advanced ballsocket (ragdoll) constraint.
Creates an axis constraint.
Creates a ballsocket joint.
Basic checks to make sure that the specified entity and bone are valid. Returns false if we should not be constraining the entity.
Creates a rope without any constraint
Creates an invisible, non-moveable anchor point in the world to which things can be attached.
Creates an elastic constraint.
Returns the constraint of a specified type between two entities, if it exists
Returns the first constraint of a specific type directly connected to the entity found
Returns the other entity involved in the first constraint of a specific type directly connected to the entity
Returns a table of all constraints of a specific type directly connected to the entity
Make this entity forget any constraints it knows about. Note that this will not actually remove the constraints.
Returns a table of all entities recursively constrained to an entitiy.
Returns a table of all constraints directly connected to the entity
Returns true if the entity has constraints attached to it
Creates a Hydraulic constraint.
Creates a keep upright constraint.
Creates a motor constraint.
Creates a muscle constraint.
Creates an no-collide "constraint". Disables collision between two entities.
Creates a pulley constraint.
Attempts to remove all constraints associated with an entity
Attempts to remove all constraints of a specified type associated with an entity
Creates a rope constraint - with rope!
Creates a slider constraint.
Creates a weld constraint | s3://commoncrawl/crawl-data/CC-MAIN-2020-10/segments/1581875145438.12/warc/CC-MAIN-20200221014826-20200221044826-00376.warc.gz | CC-MAIN-2020-10 | 1,924 | 29 |
https://www.xbox.com/en-us/games/store/chess-for-pc-xbox/9ndqzc7mmbx8?cid=msft_web_gamesforwindows_chart | code | Chess+ For PC & XBOX
♕ Chess is one of the best interesting and oldest strategy game on Earth! It is played by millions players around the world, from children to the elderly. 🧠 Chess is an excellent board logic game that develops such skills as tactics, strategy and visual memory. ♞Chess+ supports both 1 player and 2 players gameplay : ☑️ You can play against friends 👨👨👧 (playing locally). ☑️ Or Test your skills against a challenging Powerful Chess AI 🤖 with configurable difficulty level (Beginner, Medium, Hard, Expert). ☑️ AI 🤖 vs AI 🤖 : A unique feature, great for learning chess. 🗺️ It is common to play Chess all over the world - Portuguese and Brazilian play xadrez, French play échecs and Spanish choose ajedrez. 🛑 No advertising, No collection of personal data, No In-App Purchase, no Internet required and no useless extra features, only the pure juice of an amazing Chess Game! ✔️ PC & XBOX . PC : - [ Mouse ] - or [ Controller ] : Left Stick to control the Cursor & Button A to Select a Chess piece and Left Stick to drag and drop it. Xbox : - [ Controller ] : Left Stick to control the Cursor & Button A to Select a Chess piece and Left Stick to drag and drop it. | s3://commoncrawl/crawl-data/CC-MAIN-2022-40/segments/1664030337531.3/warc/CC-MAIN-20221005011205-20221005041205-00174.warc.gz | CC-MAIN-2022-40 | 1,231 | 2 |
http://www.gilt.com/brand/rebecca-minkoff/product/168702393-rebecca-minkoff-lizard-illy-tote | code | Please select an available size.
Please select a size.
- Medium sized tote
- Lizard embossed leather with flap pocket at front
- Four feet at base
- Two top handles
- Zip closure
- Signature printed interior lining with three slip pockets and a zip pocket
- Body length 16 inches; height 13 inches; width 5 inches
- Drop handle 6 inches
Material: Lizard embossed leather
Brand: Rebecca Minkoff | s3://commoncrawl/crawl-data/CC-MAIN-2015-40/segments/1443736673632.3/warc/CC-MAIN-20151001215753-00204-ip-10-137-6-227.ec2.internal.warc.gz | CC-MAIN-2015-40 | 393 | 12 |
https://developers.forem.com/getting-started/installation/gitpod | code | If you prefer working on a cloud IDE, you can spin up your own instance of Forem in the cloud, using Gitpod.
- Fork the Forem repository. Navigate to https://github.com/forem/forem and click on the Fork button.
- Copy the URL of your forked repository, e.g. https://github.com/forked-user/forem
- In the browser address bar enter, e.g. https://gitpod.io/#https://github.com/forked-user/forem, where the URL after
https://gitpod.io/#is the forked repository address. Note: If it's your first time using Gitpod, you will be redirected to their sign in/sign up flow.
- Gitpod will load your forked version of Forem. If it's the first time doing this, it will take several minutes. All the pieces you need for your cloud environment are installing, including Ruby gems and npm packages.
- The IDE opens
- Gitpod prompts to install the recommended extensions. It's not required, but it will provide a better editing experience.
- It will still take a few minutes to prepare the workspace.
- Two terminal sessions will be running. The one named
Open Site: gpwith the prompt
Awaiting port 3000....
This will remain until the web server is started which is running in the other terminal session named
Forem Server: bash.
- The local Forem development instance loads in the Gitpod browser preview window.
- You can now code, review, or try out the project.
- The Forem local development instance ships with one user, the admin account. The email for the user is
[email protected] the password is
- More about Gitpod in this article on dev.to about Gitpod and Forem (previously DEV).
- Although other methods of authentication are available, only email will work.
To use other forms of authentication, they need to be configured. Visit the Authentication section to configure social logins.
- Instead of manually building a Gitpod URL and pasting it in the browser's address bar, consider installing the Gitpod browser extension.
Forem’s Gitpod configuration ships with the GitHub CLI. You can create a pull request right from the command line by running the following command:
gh pr create. 🤯
The first time you use the GitHub CLI in Gitpod for any remote commands, like
gh pr create, you will need to authenticate to GitHub via the GitHub CLI, i.e.
gh auth login.
It is recommended to login to GitHub via SSH.
Follow the instructions from the GitHub CLI to finish logging in. The browser login to Github will open in the Gitpod preview browser window and fail to load. Copy the URL from the Gitpod browser preview window and paste it in a browser tab address bar instead to complete the authentication to GitHub.
For more information on how to use the GitHub CLI, see the official GitHub CLI documentation. | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296817206.28/warc/CC-MAIN-20240418093630-20240418123630-00813.warc.gz | CC-MAIN-2024-18 | 2,703 | 30 |
http://sjparkinson.com/2/post/2012/11/win8-or-not-win8-that-is-the-question.html | code | Windows 8 is designed to run on PC's, tablets and phones. As such, it tries to be a Jack of all trades and ends up being a master of none. Indeed, Windows 8 is a string of small annoyances that build up over time to totally frustrate the user. After the initial install, there is no username, you have to enter an email address to log on. This irks me as I suspect this gets sent to Microsoft for their use and their partners. I used my spam email account for that, but not everyone has one. Once logged in, the desktop interface is not intuitive and even when you are on the "Desktop" you really aren't. (Note to Microsoft. If you have to give animated demo's to show people how to access the desktop features, it isn't intuitive enough.)
Icons are no longer used, instead they replaced them with large tiles. These tiles for Facebook, email, photos, apps, Office, weather (plus a bunch of other crap I will never use) are spread out more than the width of the screen. Now, this is just with a base install. Adding more programs will make this issue much worse over time. This type of setup would work on a touch sensitive screen like a tablet or phone, you can slide over with your finger and voila. However, on a PC it becomes ungainly to use a mouse to navigate back and forth. I use a 24" 1920 x 1080 monitor and the tiles are still off the screen! When you open a new program it goes full screen with a lot of wasted space. There is no Start button anymore and accessing a program list is again, not intuitive.
The home screen in Windows 8 looks childish. All of the tiles share common colors and blend together so you end up scanning all of them to find what you want. Blah, just blah.
So after diddling with Windows 8 in both virtual and actual hardware, I have decided to put (pause for dramatic effect) Windows 7 on my new PC. Microsoft will be supporting Windows 7 until Jan 14, 2020 and honestly as an IT professional that deadline does not worry me. Windows 7 is a 64-bit multi-core OS with traditional desktop and relatively intuitive design. If Microsoft follows past trends then Windows 9 will correct the more egregious errors of Windows 8, but honestly I am looking at non-Windows alternatives for future consideration. Beyond email and web browsing, I use my PC for two things; writing and gaming. I wrote my last novel on Google Docs so there is little need to have MS Office. However, if needed I can get LibraOffice for free which handles Office document formats (http://www.libreoffice.org/). As for gaming, 85% of my games are bought through VALVe's Steam store. I'm waiting for the rumored SteamBox from VALVe to come out (http://store.steampowered.com/). At that point, my games will be available through that device and I'll no longer be tied to a Windows based PC. I'll probably go with a Linux OS at that point.
As the web becomes more accessible, there are multiple operating systems available, many at zero cost. Computer users now have a choice they did not have several years ago. You no longer need to be tied to Microsoft's IE. Mozilla's Firefox and Google's Chrome are perfectly usable browsers, modifiable and FREE. There are many more choices out there, they are the more popular at the moment. As Cloud computing evolves, there is less emphasis on the operating system. Before you invest in a great deal of frustration, look at alternatives and make an informed decision. | s3://commoncrawl/crawl-data/CC-MAIN-2018-05/segments/1516084890893.58/warc/CC-MAIN-20180121214857-20180121234857-00268.warc.gz | CC-MAIN-2018-05 | 3,410 | 5 |
https://www.get1000visitors.com/howtofindkeywords/udemy-how-to-do-keyword-research-for-seo-and-ranking-on-google-how-to-do-seo-for-wordpress-website.html | code | In a nutshell, Long Tail Pro helps you quickly find keywords in bulk based on a seed keyword that you input. In addition to returning hundreds of related keywords, the tool also shows search volume (monthly search volume), advertiser bid, number of words, rank value, and my favorite Keyword Competitiveness (helps you judge the competition and keyword difficulty).
This tool was originally created to carry out keyword research for paid campaigns using Google's AdWords platform. However, it can also be used to research organic keywords, providing estimated global/local monthly search volumes for keywords (i.e. their popularity) and their competition (i.e. how difficult they are to rank for) for organic search.
This makes Google Suggest a relevant source for keyword research, it contains a large amount of organic keywords very closely related to a full or partial keyword and can be used to find additional most searched appending keywords that make the whole keyword less competitive. Google Suggest can be researched through the Google Search website or through a compatible browser for a small amount of keywords but also in large scale using free scraper tools.
However, KWFinder has a couple of areas where Longtail Pro outshines it. Firstly, I like the fact LTP provides you with a suggested keyword competitiveness to target (as described above). More significantly, I don’t like the way that KWFinder restricts your number of keyword suggestions if you choose their cheaper pricing tier – it feels like they’re holding back some of the power of the software unless you pay more. With LongTailPro, you can see as many keyword suggestions you like so long as you’re within your monthly allowance.
Long Tail Pro is a keyword research tool. Keyword research helps you find exact keywords that people are actually searching for. Some keywords are high competition (meaning it is harder to rank for on your site) and some have lower competition (easier for you to rank). How does Long Tail Pro work? First it finds the actual keywords for you based on the ‘seed keywords’ that you input. Then it helps you analyze the competition to see which keywords will be harder or easier for you to rank. How does this benefit you? You can take those ‘easier to rank’ keywords and use them in your content to increase search engine traffic to your site.
I use Ahrefs to find ideas for keywords to add into content, and content to create around keyword opportunities. I like how Ahrefs shows keyword difficulty, search volume, traffic potential (how much organic search traffic it’s possible to get when you rank #1 for a parent topic keyword) and lets you group keywords together to create lists. It’s really useful.
Click the Download Free Trial button above and get a 14-day, fully-functional trial of CrossOver. After you've downloaded CrossOver check out our YouTube tutorial video to the left, or visit the CrossOver Chrome OS walkthrough for specific steps. Once you have CrossOver installed and running you can come back to this page and click the Step 2 button, or follow the manual installation guide, to begin installing your Windows application.
"With Google giving over the home page to ads and their own properties for commercial keywords, the Long Tail keyword is more important than ever. If you have a website, you know that most of your traffic comes from keywords you never would have thought of. With Keyword Researcher, you can find them in advance and make sure that you're the one that snags this traffic. I use it for all of my e-commerce site planning."
These are usually single-word keywords with insane amounts of search volume and competition (for example, “insurance” or “vitamins”). Because searcher intent is all over the place (someone searching for “insurance” might be looking for a car insurance quote, a list of life insurance companies or a definition of the word), Head Terms usually don’t convert very well.
How do you figure out what keywords your competitors are ranking for, you ask? Aside from manually searching for keywords in an incognito browser and seeing what positions your competitors are in, SEMrush allows you to run a number of free reports that show you the top keywords for the domain you enter. This is a quick way to get a sense of the types of terms your competitors are ranking for.
Long tail keywords can find people who are later in the buying cycle, and more ready to buy. For example, somebody searching for “tents” is probably early in the buying cycle, just starting to research what they want. Whereas somebody who searches for “North Face Kaiju 4 person tent” already knows what they want, and is more likely to be ready to buy.
Keyword Researcher is an easy-to-use Keyword Discover Tool. Once activated, it emulates a human using Google Autocomplete, and repeatedly types thousands of queries into Google. Each time a partial phrase is entered, Google tries to predict what it thinks the whole phrase might be. We simply save this prediction. And, as it turns out, when you do this for every letter of the alphabet (A-Z), then you’re left with hundreds of great Long Tail keyword phrases.
Keyword everywhere is another useful keyword tool. You can install it on either Firefox or Google Chrome. The tool will be able to show you competition data, cost per click, and Google Keyword search volume of multiple websites and keywords. This free extension can help you to save a lot of time. It can assist you to find long-tail phrases including their precise search volume, competition data, and CPC.
Pricing plans and pricing structures for Long Tail Pro have changed several times over the years since I first purchased it. I’m not going to make the mistake of publishing any pricing information here. I’ve done that in the past on this blog and I still have several old posts that are live with incorrect pricing information. There is a good chance that people will still be reading this very post several years from now – and surely the pricing that is available today will be different in the future. Just like it was way different in the past. Please click on any of my links within this post or anywhere else on my site to see the latest prices for Long Tail Pro.
The limit on manual keywords could be higher. I personally wish we could input 10,000 keywords at a time, instead of 200. However, I understand the costs that Long Tail Pro has to maintain each time a new manual keyword is input. Not a deal breaker, I just wish the limit was higher. (To be fair, I don't think most keyword tools have a bulk manual option at all). | s3://commoncrawl/crawl-data/CC-MAIN-2019-39/segments/1568514573121.4/warc/CC-MAIN-20190917203354-20190917225354-00198.warc.gz | CC-MAIN-2019-39 | 6,648 | 15 |
http://www.celiac.com/gluten-free/topic/106129-how-do-i-view-or-add-to-others-comments/ | code | I need to find out more about celiac but I do not know how to view others comments or to add my own. Thanks
How Do I View Or Add To Others Comments.neew more info
Posted 26 January 2014 - 03:09 PM
Click on the threads, read, use " reply" and type and then post. When you are new, your posts will have to be reviewed before they magically appear.
"We have always found the Irish a bit odd. They refuse to be English."
May your glass be ever full. May the roof over your head be always strong. And may you be in heaven half an hour before the devil knows you’re dead.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users | s3://commoncrawl/crawl-data/CC-MAIN-2015-11/segments/1424936461266.22/warc/CC-MAIN-20150226074101-00020-ip-10-28-5-156.ec2.internal.warc.gz | CC-MAIN-2015-11 | 639 | 8 |
http://www.yqcomputer.com/1015_24242_1.htm | code | Thanks for posting in our newsgroup.
From your description, I know that when email is sent, regardless of it is
from internal or external, it stays in the "message pending submission"
queue for about 6-8 minutes and then delivers as normal. If I am off-base,
please don't hesitate to let me know.
Please take the following steps to see if the problem can be resolved:
Step 1: Please make a Force Connection, will the issue still occur?
1. Open Exchange Server Manager.
2. Expand to Domain(Exchange)->Servers->Servername->Queues.
3. Right click Message pending submission and then select Force connection.
Step 2: Please restart Microsoft Exchange System Attendant, will the same
1. Run Services.msc under command prompt.
2. Select Microsoft Exchange System Attendant and then click Restart on the
Step 3: Make a clean boot. The problem can be caused by some third party
1. Click Start->Run...->type msconfig and press Enter.
2. Click Services tab and select Hide All Microsoft Services and Disable
All third party Services.
3. Click Startup tab and Disable All startup items.
4. Click OK and choose Restart.
5. After reboot, check whether the problem still occurs.
6. If there are no more problems, please use the above steps to enable
services and startup items one by one in order to figure out the root cause
of this issue.
Step 4: Since the problem began to occur after you install and then
uninstall ISA 2 two day ago, the problem may be caused by network and
Exchange configuration. Please rerun the CEICW wizard.
1. Run the CEICW and configure the network settings.
2. Go through firewall option.
3. In the Internet E-mail tab, please click to "Enable Internet E-mail".
4. In the Email Delivery method page, please choose the correct email
delivery method. If you need to forward internet email to your ISP
Smarthost, please input the Smarthost address correctly. If you use DNS to
route emails, please choose this option.
Note: If you choose to forward emails to the ISP's email server (smart
host), you need to type the FQDN of the ISP's email server. If your ISP
provides you the IP address of their email server, for example,
220.127.116.11, you should type the IP address as "[18.104.22.168]" (without the
quotation marks) on the connector's properties page.
5. In the E-mail Retrieval Method page, check the "Use the Microsoft
Connector for POP3 Mailboxes" check box, click Next.
6. In the E-mail Domain Name page, enter your registered e-mail Internet
domain name, (i.e. domain.com).
Note: Considering the current condition, please input the ISP POP3 email
domain name (i.e. ISPPOP3Domain.com).
7. In the POP3 Mailbox Accounts page, click Add and add the appropriate
POP3 mailbox accounts, then click Next.
Note: Please delete the POP3 email account in the Outlook client.
8. Input the correct information in the rest page and finish the wizard.
825763 How to configure Internet access in Windows Small Business Server
Digitally signed messages remain in the Messages pending submission queue
and are not delivered in Exchange Server 2003 SP1
823489.KB.EN-US How to Use Queue Viewer to Troubleshoot Mail Flow Issues
For more information, | s3://commoncrawl/crawl-data/CC-MAIN-2020-16/segments/1585370491857.4/warc/CC-MAIN-20200328104722-20200328134722-00040.warc.gz | CC-MAIN-2020-16 | 3,151 | 53 |
http://www.howtoforge.com/forums/showpost.php?p=4074&postcount=9 | code | Aftet several days of trying to fix my problem without any success, do you think I should go ahead and upgrade to FC4 rather than reinstall FC3? Will it break ISPConfig if I upgrade to FC4?
Shuttle XPC | Intel 865g | P4 3.2Ghz | ATI 9800 Pro
Hosts: Ubuntu 6.10 ~ XGL-Beryl SVN-Gnome | OS X 10.4.8 | WindowsXP
Virtual Appliances: Ubuntu Server 6.10 | WindowsXP | CentOS 4.4 | s3://commoncrawl/crawl-data/CC-MAIN-2014-52/segments/1418802771374.156/warc/CC-MAIN-20141217075251-00110-ip-10-231-17-201.ec2.internal.warc.gz | CC-MAIN-2014-52 | 372 | 4 |
https://www.practicalmachinist.com/forum/search/967790/ | code | I have a DMU160FD from 2004
We recently got a hydraulic leakage in the table that we now have fixed .
But after this i get an E60 error that i cant get rid of.
Has anyone got a clue on how to fix this ?
Suggestion from DMG is to replace the E/R module but its very expensive and i want to... | s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296945472.93/warc/CC-MAIN-20230326111045-20230326141045-00128.warc.gz | CC-MAIN-2023-14 | 291 | 5 |
https://alex.bouma.me/about-me/ | code | About the entrepreneur part
I work (and founded) @Simulise where I am the lead developer and sysadmin.
Simulise, the portfolio platform in which students show who they are and what they stand for. Pupils, students, teachers and the business community work together and identify how students have come to their results. Simulise allows students to present their talents and use social media in their work. Gamification elements and 21st Century Skills, skills that students of today must meet to be fully embraced. Pupils, students, teachers and the business community are encouraged and inspired to learn from each other and work together. — Simulise
On the side I run a
little small hosting company founded by myself called Alboweb. I host a large variety of sites like the @Simulise website and web application, this blog, some very small blogs, but some as big as >30k visitors per day and loads of other sites and apps.
We provide shared and managed hosting services on dedicated or virtual private servers. It is a great way to keep my sysadmin skills up-to-date and pet my ego when I look at our beautiful uptime reports 🤓.
About the developer part
In my few free hours I do some consulting and work on a freelance basis as Devalex.
Currently I worked as resident code monkey @iCulture, the largest (and best of course) Dutch Apple focused news site. Here I work worked to make WordPress less awkward and better/faster/stronger for the writers and readers. The site is built on WordPress, but also uses the Laravel Lumen framework (to make our iOS apps blazing fast 🔥) and Elasticsearch (as our awesome search backbone).
About the artisan part
I love the Laravel PHP framework and have built quite some applications (private and public) with it (since version 3 all the way up to 5). Have any questions? Hit me up on the Larachat Slack group (@stayallive), shoot me an email or maybe ping me on Twitter @stayallive if you can fit it in 140 chars 😉. | s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917123632.58/warc/CC-MAIN-20170423031203-00438-ip-10-145-167-34.ec2.internal.warc.gz | CC-MAIN-2017-17 | 1,965 | 11 |
https://www.otto.de/jobs/de/technology/techblog/artikel/microservices-ci-with-lambdacd-current-architecture-and-vision-for-the-future-3-3_2015-07-23.php | code | Abstract:In the last two months, we started our journey towards a new microservices architecture. Among other things, we found that our existing CD tools were not ready to scale with new requirements. So we tried a new approach, defining our pipelines in code using LambdaCD In combination with a Mesos cluster we can deploy new applications after a few minutes to see how they fit into our architecture by running tests against existing services.
Part 1: The underlying infrastructure
Part 2: Microservices and continuous integration
Part 3: Current architecture and vision for the futureCurrent Architecture
LambdaCD is an open-source project initiated by Florian Sellmayr in August 2014 and Otto is the first company which trusts in this work and uses it in production. It's a good feeling to explore a new world but we had to work out how to use this tool to get the best out of it. We gained practical experience and adapted the tool to our needs. Now we have a solution which fits better in our architecture than any other CD tool.
Defining your pipelines in code is a big advantage but we had to find a way to control this power. Because of that we started with the most obvious approach by creating one LambdaCD instance for every application. This sounds to be harder as creating a Jenkins pipeline but we automated this step and so it is possible to have a production-ready pipeline within a few minutes.
Because we have one LambdaCD instance for each project the respective structure is very straightforward. An instance has two separated pipelines whereby the first one is responsible for building and deploying the code of the project and the second one for the self-deployment. That is why we call it the meta-pipeline. That means, if you change the code (configuration) of one of these two pipelines the meta-pipeline will be triggered by your commit and deploy a new version of this LambdaCD instance.
But how can we do our first deployment? Do we have a bootstrapping problem because only the instance knows how it has to be deployed? No, not really. I told you in the last part of this post that you have to define your pipelines in Clojure because LambdaCD itself is written in this functional language. The advantage is that you can extend the tool and interact with its internal components in a very impressive way. But the point is, a LambdaCD instance is a normal piece of code why you can just execute it locally to make your first deployment.
In addition, each instance has a web UI which lets you check the state of your pipelines or the output of a single step. Because all of our microservices are stateless we have the problem that the build history is lost every time we redeploy an instance. Fortunately, the definition of the pipeline isn't changed that often.
Over the time we added pipelines for new services to existing LambdaCD instances because the services are very small and we make changes to them very rarely. If we had not done that, we would have had many instances which would have run the whole day and consume resources unnecessarily.
All LambdaCD instances are based on the tesla-microservice which uses the component framework and provides some nice features like health check, status page, metrics, loading configuration files and a graceful shutdown. It is a good starting point if you don't want to reinvent the wheel every time. Check it out! Maybe you can use it to create your own microservices or you can make a fork to adapt it to your needs.
Current Architecture - Build-Monitor
Our pipelines use the LambdaCD cctray extension The cctray.xml format is widely used by CI tools to report the state of pipelines and their steps. At first, we tried out nevergreen which only displays running and sick steps. But this open-source tool has two disadvantages: You can only display one cctray and the configuration is stored in the browser cache. The second point is impractical because every developer has to configure the monitor on his local machine.
At the moment, the monitor isn't perfect because the font isn't scaled dynamically and if you have too many running or sick pipelines your screen could be too small. But I will publish it within the next weeks and maybe somebody has a good idea how to fix these problems.
Current Architecture - Graphite
To know which LambdaCD instance needs more or less resources we use Graphite With a quick view you can detect instances running out of memory, disk space or CPU power.
These graphs are very good to scale a pipeline corresponding to its consumption. Moreover, if you look at the spikes of these graphs you can see how often a pipeline is triggered or restarted.
Current Architecture - Disadvantages
The current architecture is grown over the last weeks and we collect a few things for improvement:
The Second Approach
Over the next few weeks, I'm going to implement some new LambdaCD components to get rid of these disadvantages. I love the flexibility of LambaCD which lets me extend the tool in any direction. I can't show you how you can build the best LambdaCD infrastructure because at the moment I don't know it. But I want to give a sense how easy it is to build a system which adapts your needs and is ready for further improvements.
Let's have a look at the overview:
The Pipeline-Builder, the Pipeline-Spawner and the Pipeline-State-Controller were added and I will introduce them in the next paragraphs.
The Second Approach - Pipeline-Builder
The Pipeline-Builder is a place for all of our meta-pipelines. You don't have to create such a pipeline in every project anymore. Just add the Git URL to the trigger of the Pipeline-Builder and you are done.
If you don't use the Pipeline-Spawner you have to add a step to deploy your pipeline.
The Second Approach - Pipeline-Spawner
If the code of the project is changed the Pipeline-Spawner is triggered by this commit and it deploys the corresponding pipeline which was built by the Pipeline-Builder. In addition, the service injects the commit hash into the pipeline to guarantee it uses the right version of the code.
You don't have to use this spawner but it is good way to save resources because you run a pipeline only when you need it.
The Second Approach - Pipelines
Pipelines don't have a Git trigger anymore in front of the other steps because they already know the commit hash which was injected by the Pipeline-Spawner. The other steps are the same as in the current architecture. But a pipeline may only be executed once why it has to shutdown itself after the last step.
The Second Approach - Pipeline-State-Controller
The Pipeline-State-Controller acts as a proxy between all other components and a database, e.g. mongoDB. It stores the state of these components and it provides two different views
If the Pipeline-Builder or Pipeline-Spawner restarts they could miss a commit because they are stateless and don't know the last commit they have seen. To avoid this you can use a Git hook instead of a pulling mechanism. With this approach you can add a load balancer and a second instance of both components. So it is possible to share the builds over these instances and to guarantee you don't miss a commit anymore.
Now you know our infrastructure, current architecture and plans for the next weeks. But all these ideas base on two months experience with microservices and our new Marathon/Mesos infrastructure. So it is likely that our plans will change and we will develop new services. But one big advantage of microservices is that you develop them within a few hours or days, you can test them and then you can throw them away to create new, more powerful services.
We have received your feedback. | s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296949644.27/warc/CC-MAIN-20230331144941-20230331174941-00518.warc.gz | CC-MAIN-2023-14 | 7,680 | 36 |
https://www.hostgator.com/help/article/do-you-offer-exchange-server-windows-dedicated | code | Do you offer Exchange Server? - Windows dedicated
Built to deliver the enterprise-grade security and reliability that businesses require, Microsoft Exchange provides email, calendar and contacts on your PC, phone and web browser.
Available Directly from Microsoft
Microsoft Exchange Server is not available directly from HostGator, however you are welcome to purchase and obtain Microsoft Exchange directly from Microsoft or one of their resellers, and install it on your Windows Dedicated Server.
You Can Install It Yourself
Microsoft Exchange does not require an operating system (OS) upgrade to be installed, and you should be able to install Exchange yourself without intervention from HostGator.
Installation service from HostGator is not available for Microsoft Exchange, however, you or your system administrator can install it yourself.
For more information on Microsoft Exchange, please visit Microsoft's website:
- How to purchase MS Exchange (Microsoft.com) | s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764499891.42/warc/CC-MAIN-20230131222253-20230201012253-00621.warc.gz | CC-MAIN-2023-06 | 968 | 9 |
https://dev.to/suesmith/a-primer-on-the-reality-of-working-with-apis-as-a-new-developer-ej | code | The reality of being a software developer today makes integrating data and services a primary concern. If you’ve just completed a coding or computer science course, when you start working on a real-world project, you’ll likely find yourself dealing with APIs. Unfortunately, in education contexts, we sometimes create a false impression of what being a developer involves on a daily basis - APIs are a prime example of this. In this post, we’ll touch on some of the issues you may face when you start to work on real applications, and provide tips for navigating the API ecosystem.
First, a clarification: the term API is used to refer to lots of different things, and its emphasis has shifted a great deal over the years. If you’ve learned anything about Object Oriented development, you may be familiar with APIs as code components that have well-defined interfaces, allowing “customer” code to access the features and functionalities within a system. These APIs usually involve objects and methods / functions. This is not the type of API we’re going to talk about in this article. 😅
In this article, we’re dealing with the kind of API you use to manage access to data and services over the web. If you’ve come across the terms HTTP API or REST API, that’s what we’re talking about. With this type of API, client apps make requests to endpoints to carry out operations on data. An example would be a database for a shop that has a web app and a mobile app - with an API managing access to the data from both apps.
APIs can support a range of operations, to retrieve, insert, update, and delete data (and more generally to provide services). In most cases, API requests need to be authenticated, with various authentication models to choose from. APIs sometimes provide support resources to aid integration, such as documentation, specifications, and definitions (each of which satisfies slightly different criteria 😩).
The chances are, if you work as a software developer, you’ll consume APIs, and depending on the kind of development you do, you might also build and publish APIs. By utilizing data and services from external sources, development teams can create complex products more quickly and efficiently. If someone has made it their business to be really good at messaging for example, it makes sense to plug into their service (which will hopefully continually improve) and focus more of your own efforts on the unique parts of the system you’re working on.
You’ll also potentially work with microservices, which are related to APIs - but where microservices are about dividing up the services in an application, APIs are more about how you access the services as a developer. Okay, let’s leave this semantic rabbit hole and move on to more practical concerns. 🎉
In education, we usually have pretty rigid constraints, like learning outcomes, that shape the student experience. This lets us hit on the desired objectives and help learners acquire a specific set of tech skills. The downside is that it can make learning experiences quite unlike the reality of acquiring and applying new coding skills in the wild.
This isn’t just a problem for new coders coming from bootcamps and CS courses, it’s a general issue in education for developer software tools, however we’re slowly getting better at creating more realistic learning experiences:
Integrating services is one of the defining characteristics of developing software today - it’s not just an activity, it can determine the entire approach to a product. The field of Developer Relations (DevRel) has emerged and grown enormously over the past few years for this reason.
Where in the past a typical software developer might have built apps for end users who were not developers themselves, there’s a strong chance now, that at least some of your users will be other developers looking to integrate whatever projects they’re working on with your own - often via APIs, but also via SDKs, extensions, open source initiatives, and so on.
All of this means that navigating a network of dependencies and connections is going to be a vital part of the job for most developers (not to mention other members of product and engineering teams, such as QA engineers, and even PMs to some extent).
So, what is working with APIs going to involve, that you might not have encountered before working in the software industry? Please feel free to share your own horror stories too… 😉
At a granular level, you might find yourself building an API or consuming one - but in fact, if you work on any kind of substantial software system you’ll probably be integrating with multiple external services. Making the pieces all play nicely with one another can be quite a task - and a frustrating one, since you only really have immediate control (or even influence) over the parts of your implementation that are being developed within your team.
In theory all of this integration should be powered by automation, with the data completely interoperable between services, but sadly this is not often the case.
As soon as you start working with external services, whether from a developer tool exposed by another organization, or even just the data brought by a client you might be building an application for, you’ll find the situation tends to get messy. (If you work for a larger organization this might even happen with internal APIs. 🙊)
As developers, we love automating things, especially repetitive tasks, but when you get stuck into real data from business contexts, you’ll often find yourself wrestling with an unpredictable muddle of information that makes automation extremely challenging.
If there is documentation available - and often there isn’t - you’ll frequently find that it’s incomplete or inaccurate.
This was a particular issue for an ex-employer of mine, where we used the OpenAPI specification to automate integration with client data, but more often than not, there were discrepancies between what the spec indicated and how the API requests actually behaved. From the perspective of software that consumed rather than exposed APIs, it was fascinating to see the rapid growth of DevRel fueled in part by the need to address these problems in developer engagement and adoption.
When it comes to working with clients, add to these challenges the fact that you might not even be dealing with the person who built the API in the first place - it could be someone who has inherited it, or is integrating it from a third party source, and their understanding / control over it may be minimal.
It’s worth pointing out here that this messy data issue is analogous to another missing ingredient from many coding learning experiences - the reality of integrating, not with data, but with people. Many of the greatest challenges you’ll face working as a developer will relate to how you engage with your team, community, clients, partners, and so on. Operating in a business context with competing / shifting priorities means delivering your work in an ever-changing, often very dynamic environment.
Just like we pretend not to google everything during engineering job interviews 🙄, in most developer education resources, we behave as though we're operating in a vacuum. The truth is that you’ll need to integrate your tasks within a system that has all sorts of parameters outside your control.
The good news is that devs successfully deal with this stuff all the time - we wouldn’t have many of the current apps we use on a daily basis otherwise. With any luck you’ll be on a team with other people who have more experience wading through integration difficulties. Watching how a senior developer deals with dependency hell is invaluable if you get the opportunity.
However, as a developer you will inevitably spend lots of time working on your own trying to troubleshoot problems - so here are some tips and tools for defeating any API development and integration demons that trip you up.
Only joking, but a bit of healthy skepticism is in order when dealing with APIs. You can’t place too much faith in documentation (even the best teams struggle to keep these resources 100% up to date). When your app depends on data from another source, testing becomes increasingly important.
In some cases you might even be working with a spec or definition that has been automatically output from a backend system, in which case you might think it’s likely to match the actual behavior of the API - sadly not always. That unexpected null value coming back might derail your application.
Thankfully there are some great dev tools that can help with various parts of the API development, testing, and publishing process:
- Postman, most associated with testing but supports various workflows for different parts of the API development lifecycle, including collaboration and documentation.
- The Swagger toolset which includes multiple utilities, such as the ability to start from a spec and codegen stubs in a range of languages for both API server implementations and client library builds.
- Stoplight, particularly if your API development project is specification-oriented, e.g. around OpenAPI.
There are loads of API tools out there, these are just the ones I've used most - please share yours in the comments!
It’s actually worth spending a bit of time investing in your learning around API development and testing tools as you would when you e.g. learn a new language or framework - these are skills you’ll find yourself calling on again and again. In terms of upcoming proficiencies, it’s likely worth looking into GraphQL, as its popularity seems to be growing.
As implied earlier, another confusion point awaits you if you deal with API documentation, specifications, and definitions - all of which are related, but perform slightly different functions. They all focus on indicating what an API does, but differ in the relative extent to which the info is being conveyed to humans or machines.
- Documentation is intended for human consumption and essentially comprises your API user guidance.
- You can think of a specification as a contract, operating as a kind of shared description of how an API will behave. The OpenAPI spec is a commonly used standard for describing APIs in this way, in either JSON or YAML format.
- Definitions also describe an API, but are intended specifically for machine processing.
However, although there have been a lot of efforts to advance standardization around APIs, there is no real consensus to speak of (at this stage anyway). Add to this the fact that authoring specifications etc is not necessarily a trivial task, and you can see the benefit of API tools that are flexible and that support differing documentation types / formats.
If you’re exposing an API or developer service, you’ll find yourself in the position of treating other developers as your users. This means that you’ll be in the world of DX (Developer Experience), which comes with its own set of challenges that are not reserved for front-end or UX, as they come into play from the API design and structuring phase forward.
Note that even if you’re developing an API for internal use within your team or company, it pays to consider DX (much like code comments, you might be glad you thought of DX when you attempt to use a service you developed a while ago and your memory is not so clear). 🤓
DX is a whole field in itself, but since dev education is my thing, here are a few quick takeaways:
- Developer backgrounds vary wildly - there is no such thing as a normal skillset that can be assumed.
- Developer context is also extensively varied - from people working in enterprises to freelancers. You may have a huge range of projects integrating with your API.
- With developer tools, community becomes an important component, and onboarding needs to be tailored to developers. Again, these are whole areas of specialism in their own right, hence DevRel, but if you happen to be involved in building developer portals or learning resources, here are some key points:
- Support “quick start” pathways letting new users try requests quickly without having to e.g. sign up and wait for an API key.
- If your API supports lots of different use cases, create pathways to help people from different backgrounds and with different needs get started.
- Try to provide full walkthroughs for sample implementations using your API - a common failing is only including reference documentation that explains endpoints but doesn’t convey how the pieces fit together in practice, so context is often missing.
- It might seem obvious to you but make sure it’s clear what your API does. 😲 The same goes for explaining any domain-specific terms.
- Capture feedback and include contribution pathways for your API users - being able to have an impact is usually important to developers.
- Although it’s essential to be developer-oriented, bear in mind that other stakeholders might be engaging with your resources - you might come across business language relevant to APIs, like “digital transformation.” With dev products the developer might be the user, but someone else in an org might be the buyer.
What we’ve touched on in this post is really just the tip of the iceberg when it comes to how integral APIs are to contemporary software development, but hopefully it’s given you a heads-up in terms of what to expect. The good thing is that these integrations let you maximize on your own development efforts to create innovative applications.
With integration such a key element in the developer landscape, it’s likely that we’ll also see more tools and products dedicated to facilitating those integrations, not to mention a continued increase in companies paying attention to developer experience. On that note, if you find yourself interested in doing something other than writing code all day every day, you might want to consider a career in DevRel yourself! 🚀 | s3://commoncrawl/crawl-data/CC-MAIN-2023-40/segments/1695233506646.94/warc/CC-MAIN-20230924123403-20230924153403-00002.warc.gz | CC-MAIN-2023-40 | 14,044 | 50 |
https://perifery.atlassian.net/wiki/spaces/KB/pages/37136678 | code | This really depends upon the applications that will use the Swarm cluster. A general guideline is to use 1GB of RAM per 1TB storage, or per two disk devices in a node. Factors that affect this include the average size of the objects being stored, the usage profile (read/write rates), whether overlay index will be used, and Erasure Coding settings (if configured). As of Swarm 9.0, there is a minimum of 2GB per node process otherwise the console will show a warning. As of Swarm 14.0, 4GB per node process is required. | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947476432.11/warc/CC-MAIN-20240304065639-20240304095639-00289.warc.gz | CC-MAIN-2024-10 | 520 | 1 |
https://forum.arduino.cc/t/arduino-ide-1-0-6-or-ide-1-5-8-thats-the-question/272231 | code | Im tinkering with Arduino for a while now and wanted to upgrade my IDE to the latest version. Im a bit confused since there are actually 2 different versions available!?
IDE 1.0.6 and IDE 1.5.8, why!?
Ive read that the IDE 1.5.8 supports the new Yun and Due but, to be honest, having 2 IDEs is really confusing. Why not only one version v1.1.0 that supports the new boards and no confusion!?
I dont get it.
Is there anybody to enlighten me? What version should I actually use for my UNO and direct ATMega & ATTiny programming?
Thanks in advance!
Out of curiosity I recently switched to 1.5.8 for my UNO and I found several advantages:
- the editor optionally displays line numbers
- find & replace over several tabs
- compiler gives an estimate of RAM usage
- best of all: my sketch size dropped from 27k to 21k for the same source code
I am programming a UNO and standalone 328 using an FTDI cable and an ICSP programmer and did not experience problems so far.
One disadvantage for me is the lack of compiler warnings e. g.
warning: "/*" within comment
warning: suggest parentheses around assignment used as truth value
warning: control reaches end of non-void function
I don't know how I can get these back | s3://commoncrawl/crawl-data/CC-MAIN-2022-27/segments/1656103646990.40/warc/CC-MAIN-20220630001553-20220630031553-00312.warc.gz | CC-MAIN-2022-27 | 1,208 | 17 |
http://www.dbasupport.com/forums/printthread.php?t=32328&pp=10&page=1 | code | I'm writing a script that I want to run in SQLPLUS. The firts part of the script produce an output that I want to use later in the script to make DDL changes.
My problem: I want to "pause" the process after the first .sql so that the user can have a look at the results before he/she continues....this is very important because of the ddl procedure that will continue "on enter"
Q:what is the correct syntex for a "pause" in a sqlplus script?
Thnx a mil | s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917121752.57/warc/CC-MAIN-20170423031201-00269-ip-10-145-167-34.ec2.internal.warc.gz | CC-MAIN-2017-17 | 453 | 4 |
https://www.chimaho.com/drill-rod-upsetting-press-2856775.html | code | |Home||» Products||» Drill Rod Upsetting Press||» Drill Rod Upsetting Press|
Drill Rod Upsetting Press finds application for construction, oilfield, and bridge constructing sectors. It is required for forging steel & drill pipe and sucker rod with high precision. This press comprises thermostat-based precise temperature control system which heats the rod & helps in delivering required shape. It is completely automatic in nature and ensures long service life. Before being approved fit for use, Drill Rod Upsetting Press is tested on several rigorous parameters for ensuring excellent performance & complete reliability. | s3://commoncrawl/crawl-data/CC-MAIN-2020-05/segments/1579251802249.87/warc/CC-MAIN-20200129194333-20200129223333-00377.warc.gz | CC-MAIN-2020-05 | 626 | 2 |
https://mathematicalmysteries.org/number-theory-2/ | code | Number theory is a branch of mathematics which helps to study the set of positive whole numbers, say 1, 2, 3, 4, 5, 6,. . . , which are also called the set of natural numbers and sometimes called “higher arithmetic”.
Number theory helps to study the relationships between different sorts of numbers. Natural numbers are separated into a variety of times.1
Number theory is the study of the integers (e.g. whole numbers) and related objects. Topics studied by number theorists include the problem of determining the distribution of prime numbers within the integers and the structure and number of solutions of systems of polynomial equations with integer coefficients. Many problems in number theory, while simple to state, have proofs that involve apparently unrelated areas of mathematics. A beautiful illustration is given by the use of complex analysis to prove the “Prime Number Theorem,” which gives an asymptotic formula for the distribution of prime numbers. Yet other problems currently studied in number theory call upon deep methods from harmonic analysis.2
Number theory is a vast and fascinating field of mathematics, sometimes called “higher arithmetic,” consisting of the study of the properties of whole numbers. Primes and prime factorization are especially important in number theory, as are a number of functions such as the divisor function, Riemann zeta function, and totient function. Excellent introductions to number theory may be found in Ore (1988) and Beiler (1966). The classic history on the subject (now slightly dated) is that of Dickson (2005abc).
The great difficulty in proving relatively simple results in number theory prompted no less an authority than Gauss to remark that “it is just this which gives the higher arithmetic that magical charm which has made it the favorite science of the greatest mathematicians, not to mention its inexhaustible wealth, wherein it so greatly surpasses other parts of mathematics.” Gauss, often known as the “prince of mathematics,” called mathematics the “queen of the sciences” and considered number theory the “queen of mathematics” (Beiler 1966, Goldman 1997). 3
What careers use number theory?
- Electrical Engineering
- Machine Learning
- Artificial Intelligence
- Programming Languages
- Molecular Biology
- Mechanical Engineering
- Systems Engineering
The most important application of number theory is that it is the key foundation of cryptography. Our strong encryption algorithms and systems have developed because of the impetus provided by number theory. For example, your data cannot be easily accessed by anyone because of the strong encryption system. Moreover number theory is useful in the study of binary codes and other related concepts. This is the main real life applications of number theory. Other than those, there are myriad of applications which are useful for applied mathematicians and physicists. For example, the q series is extremely useful in the study of strings. Then supersymmetric functions like the mock theta functions and theta functions are used for a large number of advanced purposes. Over-all number theory is extremely useful for applied mathematicians and physicists. But to understand those applications you must have a sound knowledge in both. 4
Number theory is used to find out if a given integer ‘m’ is divisible with the integer ‘n’ and this is used in many divisibility tests. This theory is not only used in Mathematics, but also applied in cryptography, device authentication, websites for e-commerce, coding, security systems, and many more. 5
Very basic number theory (like modular arithmetic or finding the solution to a linear Diophantine equation), has a ton of applications, but mostly we do not even realize we are doing math, like when you need to decide how many 6-pack of frankfurters and how many 8-pack of hot dog buns you want to buy to have no orphans.
Intermediate number theory had found application in cryptography. 6
See Theoretical Knowledge Vs Practical Application.
Many of the References and Additional Reading websites and Videos will assist you with understanding number theory.
As some professors say: “It is intuitively obvious to even the most casual observer.“
1 “Number Theory (Definition, Basics, Examples)”. 2022. BYJUS. https://byjus.com/maths/number-theory/.
2 “Number Theory | Department Of Mathematics”. 2022. math.duke.edu. https://math.duke.edu/research/number-theory.
3 “Number Theory — From Wolfram MathWorld”. 2023. mathworld.wolfram.com. https://mathworld.wolfram.com/NumberTheory.html.
4 “Real-Life, Every Day Applications Of Number Theory?” 2021. Mathematics Stack Exchange. https://math.stackexchange.com/a/3975948.
5 “Number Theory – Definition, Examples, Applications”. 2023. CUEMATH. https://www.cuemath.com/numbers/number-theory/.
6 “Number Theory and its applications to the real world”. 2023. reddit.com. https://www.reddit.com/r/math/comments/fqeuto/comment/flq6mrs/.
“1.1: What Is Number Theory?”. 2022. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Elementary_Number_Theory_(Barrus_and_Clark)/01%3A_Chapters/1.01%3A_What_is_Number_Theory.
“1.4: Combinatorics and Number Theory”. 2022. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Applied_Combinatorics_(Keller_and_Trotter)/01%3A_An_Introduction_to_Combinatorics/1.04%3A_Combinatorics_and_Number_Theory.
“1.4: Definitions of Elementary Number Theory”. 2019. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Mathematical_Logic_and_Proof/Gentle_Introduction_to_the_Art_of_Mathematics_(Fields)/01%3A_Introduction_and_Notation/1.04%3A_Definitions_of_Elementary_Number_Theory.
“2.1: A Taste Of Number Theory”. 2022. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Mathematical_Logic_and_Proof/An_Introduction_to_Proof_via_Inquiry-Based_Learning_(Ernst)/02%3A_New_Page/2.01%3A_New_Page.
“5: Number Theory”. 2020. Mathematics LibreTexts. https://math.libretexts.org/Courses/College_of_the_Canyons/Math_130%3A_Math_for_Elementary_School_Teachers_(Lagusker)/05%3A_Number_Theory.
“5.1: Number Theory- Divisibility And Congruence”. 2021. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Mathematical_Logic_and_Proof/Proofs_and_Concepts_-_The_Fundamentals_of_Abstract_Mathematics_(Morris_and_Morris)/05%3A_Sample_Topics/5.01%3A_Number_theory-_divisibility_and_congruence.
“5.2: Introduction to Number Theory”. 2019. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Discrete_Mathematics_(Levin)/5%3A_Additional_Topics/5.2%3A_Introduction_to_Number_Theory.
“6: Number Theory”. 2020. Mathematics LibreTexts. https://math.libretexts.org/Courses/Las_Positas_College/Math_27%3A_Number_Systems_for_Educators/06%3A_Number_Theory.
“6.2: Introduction to Number Theory”. 2019. Mathematics LibreTexts. https://math.libretexts.org/Courses/Saint_Mary’s_College_Notre_Dame_IN/SMC%3A_MATH_339_-_Discrete_Mathematics_(Rohatgi)/Text/6%3A_Additional_Topics/6.2%3A_Introduction_to_Number_Theory.
“8: Number Theory”. 2021. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Applied_Mathematics/Understanding_Elementary_Mathematics_(Harland)/08%3A_Number_Theory.
“8: Other Topics In Number Theory – Mathematics LibreTexts”. 2023. math.libretexts.org. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Elementary_Number_Theory_(Raji)/08%3A_Other_Topics_in_Number_Theory.
“8: Topics In Number Theory”. 2017. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Mathematical_Logic_and_Proof/Book%3A_Mathematical_Reasoning__Writing_and_Proof_(Sundstrom)/08%3A_Topics_in_Number_Theory.
“8.5: Applications in Number Theory”. 2019. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Mathematical_Logic_and_Proof/Proofs_and_Concepts_-_The_Fundamentals_of_Abstract_Mathematics_(Morris_and_Morris)/08%3A_Proof_by_Induction/8.05%3A_Applications_in_number_theory.
“9: Number Theory”. 2021. Mathematics LibreTexts. https://math.libretexts.org/Courses/Hartnell_College/Mathematics_for_Elementary_Teachers/09%3A_Number_Theory.
“An Introduction to Number Theory (Veerman) – Mathematics LibreTexts”. 2023. math.libretexts.org. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/An_Introduction_to_Number_Theory_(Veerman).
“An Introduction to the Theory of Numbers (Moser)”. 2019. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/An_Introduction_to_the_Theory_of_Numbers_(Moser).
“C: Elementary Number Theory”. 2021. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Abstract_and_Geometric_Algebra/Elementary_Abstract_Algebra_(Clark)/02%3A_Appendices/2.03%3A_Elementary_Number_Theory.
“Elementary Number Theory (Barrus And Clark)”. 2021. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Elementary_Number_Theory_(Barrus_and_Clark).
“Elementary Number Theory (Clark)”. 2021. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Elementary_Number_Theory_(Clark).
“Elementary Number Theory (Raji)”. 2018. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Elementary_Number_Theory_(Raji).
“Number Theory – Wikipedia”. 2023. en.wikipedia.org. https://en.wikipedia.org/wiki/Number_theory.
Rothschild, Ephraim. “What Are The Applications Of Number Theory In Computer Science Other Than Programming Problems On Online Judges?” 2023. Quora. https://qr.ae/promxg.
“Yet Another Introductory Number Theory Textbook – Cryptology Emphasis (Poritz)”. 2019. Mathematics LibreTexts. https://math.libretexts.org/Bookshelves/Combinatorics_and_Discrete_Mathematics/Yet_Another_Introductory_Number_Theory_Textbook_-_Cryptology_Emphasis_(Poritz).
Number theory (or arithmetic or higher arithmetic in older usage) is a branch of pure mathematics devoted primarily to the study of the integers and integer-valued functions. Number theorists study prime numbers as well as the properties of objects made out of integers (for example, rational numbers) or defined as generalizations of the integers (for example, algebraic integers). | s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296948765.13/warc/CC-MAIN-20230328042424-20230328072424-00533.warc.gz | CC-MAIN-2023-14 | 10,488 | 50 |
https://redwoodenergy.org/greenhouse-gas-emissions/ | code | Many of our daily activities generate greenhouse gas (GHG) emissions, such as driving a car, disposing of waste, turning on the lights, mowing our lawns, or heating our homes. It can be difficult to understand and measure how these daily activities result in GHG emissions. With this in mind, RCEA developed a user-friendly GHG calculator to help our customers measure and better understand the GHG emissions that result from the electricity consumed to power their homes and businesses.
The calculator provides the average annual GHG emissions based on consumed electricity and the GHG emissions intensity of RCEA’s mix of resources used to provide electricity over the course of an entire calendar year. This calculator does not take into consideration hourly and/or daily changes to electricity consumption and generation.
Be advised that your PG&E billing cycle may not match the calendar year. For example, a years’ worth of PG&E bills might provide your electricity usage from 12/15/2020 – 12/15/2021. If you’re calculating your GHG emissions for reporting or compliance purposes, we recommend contacting our staff so we can provide you with your electricity usage for the calendar year.
Enter your electricity usage. Your electricity usage will be measured in kilowatt-hours (kWh). Here are a few options for gathering your electricity usage:
- Get your electricity usage from your PG&E bills (see sample #1). You can also get a breakdown of your usage by calendar month by looking at the “Electric Delivery Charges” page on your bill (see sample #2).
- Download your electricity usage by logging into your PG&E account
- Give our staff a call at (707) 269-1700
Select the year that the electricity was used. Please be aware that every September, RCEA publishes its GHG emissions from the previous year. For example, by September 2023, RCEA will have published its 2022 GHG emissions, allowing our customers to calculate their GHG emissions for 2022.
Select the RCEA electricity service option that you receive. Not sure what electricity product you receive? Here are a few options to find out:
- Find out by looking at your PG&E bill (see sample)
- Give our staff a call at (707) 269-1700
Select whether you want your greenhouse gas emissions measured in pounds (lbs) or metric tons (MT).
Are Your Emissions Above or Below Average?
Now that you know the GHG emissions from your electricity usage, how do they compare with the 2021 RCEA average? Using the table below, simply compare your GHG emissions to the annual average emissions for different customer classes. How do your electricity usage and GHG emissions compare with the RCEA average for your customer class?
per Customer (kWh)
per Customer (lbs CO2e)
per Customer (MT CO2e)
The data presented in the table above is based on RCEA’s 2022 power mix and customer usage, and intended to give customers a benchmark for their GHG emissions.
RCEA Annual Procurement
RCEA’s sources of electricity include renewable and nonrenewable suppliers that can vary seasonally and year to year depending on factors such as market and weather conditions.
Click here to learn more information about RCEA’s power resources and electricity portfolio.
Greenhouse Gas Emissions
GHGs absorb and trap heat in Earth’s atmosphere, making the planet’s overall temperature warmer. There are three common GHGs that result from the energy sector, including:
- Carbon Dioxide (CO2)
- Methane (CH4)
- Nitrous Oxide (N2O)
Each of these GHGs has a unique ability to absorb heat and a period of time in which they remain in Earth’s atmosphere. Therefore, one pound of CO2 has a different effect than one pound of CH4. Although each of these GHGs is measured and monitored separately, Carbon Dioxide Equivalent (CO2e) is used to represent and bundle GHGs based on their Global Warming Potential (GWP), allowing them to be expressed as a single number rather than representing each of these GHGs separately. GWP is the relative potency of a GHG compared to CO2. Therefore, RCEA’s GHG calculator includes CO2, CH4, and N2O emissions; however, they’re aggregated and represented as CO2e for alignment with common industry practice.
Click here to learn more about CO2e and GWP from the California Air Resources Board.
How You Can Reduce Your Greenhouse Gas Emissions
As an RCEA customer, there are several ways you can minimize your GHG emissions from your electricity consumption: | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947473871.23/warc/CC-MAIN-20240222225655-20240223015655-00008.warc.gz | CC-MAIN-2024-10 | 4,435 | 30 |
https://www.j2made.com/friday-finds-inspirations-june-3-2016/ | code | Stop. Listen to this StartUp podcast episode.
Ok, now continue on to our bi-weekly inspirations…
- What are you doing this weekend?
- Is this the coolest interactive website ever?
- Need fonts?
- Why does Branding World Heritage City PHL have us thinking about San Francisco Heritage?
- Also, did you hear that Philadelphia now has a World Heritage Day?
- Is the modular phone going to replace your iPhone?
- Need to know the color palettes of the world’s most famous paintings?
- Did you listen to that podcast? If so, you’ll know A Hundred Monkeys.
- Are you excited about the Rio Olympics? If yes (or even if not), check out how their logo was created.
- Trying to sleep better?
- Looking for a new Instagram account to follow? Check out Josh Jefferson
- Why do we love Philly?
- Want to tattoo your kid?
- Have you ever created a design language? We did for the Center for Architecture and Design. | s3://commoncrawl/crawl-data/CC-MAIN-2021-31/segments/1627046154500.32/warc/CC-MAIN-20210804013942-20210804043942-00370.warc.gz | CC-MAIN-2021-31 | 907 | 16 |
https://github.com/HenrikBengtsson | code | Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 28 million developers.
🚀 R package: future: Unified Parallel and Distributed Processing in R for Everyone
🚀 R package future.batchtools: A Future API for Parallel and Distributed Processing using batchtools
🔧 R package: startup - Friendly R Startup Configuration
R package: Methods that Apply to Rows and Columns of Matrices (and to Vectors)
🎨 R package: Unified Handling of Graphics Devices
Features and tweaks to R that I and others would love to see - feel free to add yours!
in the last year
Moving what @graft wrote in #4 (comment) to a new issue:
An issue I have been having lately with openconnect on some of my machines is a strange na…
in private repositories
Aug 1 – Aug 13
Press h to open a hovercard with more details. | s3://commoncrawl/crawl-data/CC-MAIN-2018-34/segments/1534221214538.44/warc/CC-MAIN-20180819012213-20180819032213-00203.warc.gz | CC-MAIN-2018-34 | 892 | 14 |
https://softwareengineering.stackexchange.com/questions/307763/best-way-to-get-push-notifications-to-server-from-ms-sql-server | code | I partially found a solution to my question, but I'm not really satisfied with the result.
My application consists of ASP.NET MVC + MS SQL Server.
The case is as follows:
- An external application saves data periodically to the SQL Database. In one tenth of a second, 20 to 100 records can be saved.
- SQL should be polled from the back-end, or there should be push notifications after each save, in order to update (for example) a running total of saved items.
- The back-end will push notifications to the UI (this will be done using SignalR)
I followed this tutorial http://venkatbaggu.com/signalr-database-update-notifications-asp-net-mvc-usiing-sql-dependency/ to set it up.
SqlDependency with broker service is used to get push notifications from SQL firing the OnChange Event. The problem is that this solution is very slow. There is only one record saved every second for a small database, and the events fire with pretty big delays.
Is there another technology to get data changes from SQL? Or maybe the solution I'm using requires some kind of optimization? | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947474671.63/warc/CC-MAIN-20240227053544-20240227083544-00320.warc.gz | CC-MAIN-2024-10 | 1,067 | 9 |
https://nrsl.duschtyp.de/ekd.biool.de/how-to-create-an-sii-file.html | code | splatoon 3d print models
alan greenspan health today
unblocked movies sites google
Choose the best option for your specific needs based on maximum length of recording, available languages, and exporting options.
wall street drug test
- Select a language or have it auto detect it.
how to fit multiple logistic regression in r
Step 2: Open any app that you want to add the text, such as Gmail or Keep.
seven fallen angels
puerto plata airport news
retail to wholesale calculator
Choose the area to enter the text. | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296817073.16/warc/CC-MAIN-20240416062523-20240416092523-00039.warc.gz | CC-MAIN-2024-18 | 512 | 12 |
http://robert-puskas.info/2019/06/review-learning-opencv3.html | code | Learning OpenCV 3: Computer Vision in C++ with the OpenCV Library by Adrian Kaehler
My rating: 3 of 5 stars
This is yet another review, hopefully one of the last for a while, as it is high time to start a small project of some sort based on the stuff I read in these past many many months. I’m still guessing what exactly the project should be, but obviously it should involve OpenCV, Qt or maybe even some embedded somehow. While I’m still thinking about it and something starts to brew, here’s the review:
The reason I chose this book is because it seemed it has an in-depth explanation of the many features of the OpenCV library, and I was right. So in-depth in fact, that it doesn’t just explain what individual functions or classes do, but in many cases the theoretical background of the underlying mechanisms is also explained in detail. So much detail, that sometimes it feels like it is an academic research paper and not a book trying to introduce the reader to the concepts in a usable way. To be honest, these explanations get tiresome and hard to comprehend occasionally, so much, that I found myself looking up other resources to understand what is exactly going on.
Make no mistake, OpenCV is not a toy library, and perhaps it really does deserve such deep explanations, but I’m not sure if the amount of that was chosen correctly. This becomes evident when considering, that despite the fact that the text tries really hard to help comprehend certain topics and how different components work together, sometimes it is still far from being evident how and what should be used for certain tasks. The included code examples and code walkthroughs help in this regard a lot, but sometimes even after getting through those, the reader might remain puzzled. As mentioned before, reading additional online resources seems to be a necessity with this book, which is surprising considering the length of it (about a thousand pages).
As mentioned above, the book has a lot of explanations, and fortunately enough they are organized into different subjects of computer vision, like filters, image transforms, histograms, keypoints and descriptors, tracking, background subtraction, camera models and so on. Obviously, without a firm understanding of the library structure, basic data types and operations it would be impossible to write any sort of CV application, thus the book dedicates about a quarter of its entirety to these subjects as well. It is quite comprehensive in this regard, as Chapter 5 alone is nothing but detailed explanations of most available array operations, but this sort of approach can get really boring and tiresome (again), so should you pick this book up, expect a long and very bumpy ride.
Overall, this book is very comprehensive, gives a ton of details about just about any topics it touches, but I still couldn’t stop feeling that there is something lacking. Despite the fact that there is no shortage of explanations and examples, and there are even some pretty good exercises at the end of chapters, the book still feels like it is just a very detailed library documentation and doesn’t add too much of its own to the whole topic, or in other words, there was no sense of guidance at all. Don’t get me wrong, it is still worth picking this up, but perhaps this shouldn’t be the first piece one reads on the subject. In my opinion it is better suited to be used as a reference book that is read in parallel with another one when some questions arise. Because of these, I just can’t recommend it to be read without at least having something else on the subject as well, hence the 3 stars. | s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296945144.17/warc/CC-MAIN-20230323100829-20230323130829-00729.warc.gz | CC-MAIN-2023-14 | 3,644 | 7 |
https://github.community/t/i-sent-massage-to-contact-for-my-account/437 | code | And i reply this:
Now, i clearly deleted that gist which was causing this issue, and i clearly didnot knew anything about it & I never intended to break the T.O.S of Github Inc. My little brother was searching for the license key and he found that on github and accidently create a gist with it for remember he said that. Sir, i’m a web Developer & moreover i’m a php developer & i use phpstorm with a free student license key, so i dont need another text editor besides phpstorm as it is an IDE. and sublime text comes with a unlimited trial, why would i wanted to crack it , or wanted to get a pirate software. I am also a developer & if i do so, people will do the same with my product future.
So, that would be kind enough to grant my prayer & please unflagged my account asap. i deleted that gist as soon as i noticed that. and before support team reply me.
i hope github will consider my conditions. | s3://commoncrawl/crawl-data/CC-MAIN-2020-29/segments/1593655882634.5/warc/CC-MAIN-20200703153451-20200703183451-00393.warc.gz | CC-MAIN-2020-29 | 909 | 4 |
https://forum.ukuleleunderground.com/index.php?threads/tus-hms-communication-issue-resolved-by-andrew.154162/page-4#post-2329403 | code | There are many modes of communication that can be used and some online chat bot is likely most unreliable. If you can't walk into the store for a talk then phone call is probably second best.Perhaps HMS communication isn't what it should be but it's time to move on. Ultimately this is all meaningless so why prolong things? What is it going to accomplish? It's not like they are a lying or cheating lover which might actually warrant such bruised feelings. | s3://commoncrawl/crawl-data/CC-MAIN-2022-33/segments/1659882571847.45/warc/CC-MAIN-20220812230927-20220813020927-00478.warc.gz | CC-MAIN-2022-33 | 457 | 1 |
https://community.deeplearning.ai/t/feature-normalization-in-algorithmes-based-trees/150228 | code | Do we need to normalize features when we use boosting algorithms( like xgboost , catboost, lightbgm…) for regression problems and classification?
and when we use these algorithms do we need to normalize the target in regression problems?
I think you are asking about continuous features. It depends on how the algorithm finds split, but I guess the “greedy” algorithm is the basic for any boosting trees packages.
The greedy algorithm considers feature-by-feature, and it generally first sorts the samples by the values within a feature, and then decide the splitting point. For example, any samples with feature values less than the splitting point will go to the left leaf, and the rest to the right leaf.
Because what matters is how the samples are sorted, as long as the ordering won’t be changed by our feature normalization method (which is true for the methods we have learnt), the method has no effect to the outcome of the splitting, and therefore, we don’t need to normalize our features.
We also don’t need to normalize the continous target, but if we do normalize it, depending on the loss function we choose, we might need to adjust some hyperparamters accordingly such as the regularization parameters. Normalizing the target will not bring us a better model, but searching for the best set of hyperparameters will. | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947474690.22/warc/CC-MAIN-20240228012542-20240228042542-00158.warc.gz | CC-MAIN-2024-10 | 1,341 | 6 |
http://www.retrogamer.net/forum/viewtopic.php?p=759565 | code | Seemed to miss this topic, but will add this anyway, my first contact with the spectrum was during an after school computer club around 1983, our school did not have the BBC B, as they thought them too expensive, they had clung on to several Texas TI-99 machines, which absolutely no-one, not even the computer teacher knew how to program, they had a couple of Vic 20 machines, and to keep a bit up to date they purchased a couple of Spectrums, a 16K machine and a 48K one, as long as you made a concerted attempt to program something into the machines for the first half of the club, you were then able to load whatever you like into it in the second hour.
A mate of mine bought Pssst in, and we were bowled over by it, the colour, the speed of the game, it was an incredible sight back then, on the 48k machine we loaded in Urban Upstart, and used to play it week in and week out, until the teacher took a very dim view of it's 'adult' content and banned it.
I did not get my own machine for another year or so, I had convinced myself my parents had bought one for my birthday in 1983, and hid my crushing disappointment when they unveiled a new bike instead.
Finally got hold of one in 1984, just after the Plus had come out, the local electronics store had a clear out of the older models, so my trusty old rubber keyed machine arrived.
My brother bought a 128K Sinclair model, which eventually made it's way into my hands, I bought a plus 2 the year after, and a few years ago my colleague at work was clearing out his loft, he just walked up to me and said 'you collect old computers don't you' and gave me his fully boxed mint +3, refusing to take any money for it, as 'it was only going in the skip if I did not take it', Happy days!!
All of them still work flawlessly, the rubber key machine has had a couple of capacitors replaced, and both the Sinclair Amstrad machines have had new belts fitted. | s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368696382705/warc/CC-MAIN-20130516092622-00093-ip-10-60-113-184.ec2.internal.warc.gz | CC-MAIN-2013-20 | 1,907 | 6 |
https://triplebyte.com/company/public/gatherly | code | Our spatial video chat platform simulates movement in an online space, allowing customers to host engaging online events with multiple parallel conversations.
Why join us?
We're cashflow positive and growing fast.
You'll help shape and deliver a brand new digital experience.
We relentlessly dogfood our product, using it for all of our meetings.
Engineering at Gatherly
Our engineering team operates on a weekly cycle, with a sync at the beginning of each week to give assignments and estimate deadlines. We use PRs in Github for code reviews, and we typically launch features weekly. The team is still small and therefore very collaborative, with many team members offering feedback and a UX designer consolidating everything into a cohesive direction. You will have ultimate ownership of your tasks, and we encourage engineers to step out of their comfort zone to take on new challenges.
We're building what is essentially a multiplayer video game with video chat layered in, and not only are there challenges scaling the service to a broader base of customers, there are also unique design challenges as our users may have never played video games before.
You would build full stack features for our highly interactive spatial video chat platform.
You would build a scalable infrastructure for delivering our service.
If devOps is up your alley, you would help lay the devOps foundation for our engineering team.
Working at Gatherly
Our team is scrappy and eager to learn; we highly value ownership and communication.
As an all remote company, you're free to set your hours; we only care that the work gets done.
We contribute $300 / month to a group medical care plan for eligible employees.
Work from Home
Our company is all-remote: we were founded in the midst of the coronavirus pandemic, so remote is in our DNA.
We host frequent digital team socials to facilitate connection and bonding with your remote team!
Interested in this company?
Skip straight to final-round interviews by applying through Triplebyte. | s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296948756.99/warc/CC-MAIN-20230328011555-20230328041555-00534.warc.gz | CC-MAIN-2023-14 | 2,019 | 20 |
https://dojo.domo.com/main/discussion/35270/heatmap-shows-duplicate-rows | code | Heatmap Shows Duplicate Rows
I'm on a roll with asking questions here so I figure I'll keep going. I'm trying to create a heatmap to show the number of hours by group for a large set of projects but I'm running into an issue where the project name is creating a duplicate line for each group that has hours in the project. See example below.
The columns currently missing hours are ones I just haven't added yet. I'm getting the columns from the groups by a beast mode that looks like this and using each one as a column.
(CASE WHEN `GROUP` LIKE 'Network Engineering' THEN `Proposed Hours` END)
Any thoughts on how to get these to show up on a single row for each project name? | s3://commoncrawl/crawl-data/CC-MAIN-2022-49/segments/1669446711368.1/warc/CC-MAIN-20221208215156-20221209005156-00027.warc.gz | CC-MAIN-2022-49 | 677 | 5 |
https://play.google.com/store/apps/details?id=com.TrignometricApp&hl=en | code | CHANGING THE NAME I didn't open it after installation because the name itself isn't grammatically correct. You shouldn't have named it 'formulas' as the correct plural of 'formula' is 'FORMULAE'
Good but needs improvement This app is very good and easy to use but I personally want the interface to be improved and frequency of ad also is very high so reduce it.
Good But need to be improved. You try to explain practically. That makes it easier to get the best way of learning something. Try to gain more information about trigonometry.
Nice app Helped me alot in my integrals portions and ofcourse in inverse trigonometry portions.. Thank you!!
UNUSEFUL APP NOT INCLUDED ALL FORFULA
Poor presentation..not upto the mark..displays ads..
Fixed minor bugs. | s3://commoncrawl/crawl-data/CC-MAIN-2017-09/segments/1487501170521.30/warc/CC-MAIN-20170219104610-00260-ip-10-171-10-108.ec2.internal.warc.gz | CC-MAIN-2017-09 | 755 | 7 |
https://www.intec.co.uk/need-advice-for-collabsphere-contest/ | code | Recently Richard Moy announced the Collabsphere 2019 Beauty Contest, a competition to enhance a yet-to-be-decided database for use on DMA. I don't intend to be involved on a specific team. However, I do intend to make myself available to offer advice and experience to anyone looking to get involved. As well as technical experience, I can help you through the steps involved to package up your final application for OpenNTF (though it's quite straightforward). I will also be willing (time permitting) to review applications and documentation, offering constructive feedback. I'm not intending to offer myself up for the judging panel though, so feedback will be restricted to my understanding of the judging criteria.
Some initial thoughts are:
@Platform = "iOS"can be used to determine DMA access, I don't know what will be used for differentiation to iPhone or Android though.
- Designs can be previewed in Notes Client to speed up development, but be aware of screen sizes.
- DMA and traditional development approaches are not responsive. As far as I'm aware there's not a function available for identifying the device orientation at the moment, although that may come in the future.
- Be innovative. Think about what works well on mobile devices in other applications and leverage that. Think about what works well in other platforms and development frameworks, is it relevant? Think about strengths of the Notes Client and what might be leveraged from that.
- Do you want to include error handling? What is the best option for error handling, particularly for DMA applications?
- Integration with maps is easy, will that be relevant, and where?
- Certain images fit in with the device UI, but are device-specific.
- What level of customisability do you want and could you provide?
- Think about your strengths and weaknesses, and where others on your team could enhance your submission.
- Think about best use of new tabs vs dialog boxes.
- Think about what is possible with views vs embedded views.
- Think about how help is made available, if appropriate.
The value of a good application is in its longevity. My first open source application, XPages Help Application, is pretty unremarkable and stuck with a OneUI look and feel that is now very dated. But it included an XPages Java implementation of OpenLog, which evolved into a separate applications (XPages OpenLog Logger), extended into being an OSGi plugin, and became the first bit of functionality I was able to provide into ODA. That functionality has been enhanced many times and is also the bedrock of many applications I've built in my day job. It's not something I'd use outside of Domino, but when adding it to ODA I was encouraged to also add a standard Java logger. That learning has provided relevance beyond a single platform.
With a little bit of thought, a small amount of effort can contribute great things. | s3://commoncrawl/crawl-data/CC-MAIN-2021-49/segments/1637964362571.17/warc/CC-MAIN-20211203000401-20211203030401-00045.warc.gz | CC-MAIN-2021-49 | 2,887 | 16 |
https://blog.orneling.se/links/ | code | This is the place where you can find great SCOM links and other related product sites.
Check out these links for great information on SCOM, from the product team and from TechNet.
Below are some of the best blogs that i know of. If you think I´ve missed your blog in the list or any other blog, let me know.
The Operations Management Suite Blog (Official blog)
Here´s a collection of blogs that i find interesting other than the OpsMgr blogs above
SCOM Build numbers, a blog where you can find build numbers on SCOM and many other Microsoft products. The blog includes all patch levels, like UR3, 4 and 5 etc. | s3://commoncrawl/crawl-data/CC-MAIN-2020-05/segments/1579251687958.71/warc/CC-MAIN-20200126074227-20200126104227-00401.warc.gz | CC-MAIN-2020-05 | 611 | 6 |
https://coinpaprika.com/zh/coin/pit-pitbull/ | code | Pitbull is a self-staking token abandoned by its creator, raised by the community. Created on March 17, 2021 on the Binance Smart Chain network, Pitbull has grown into a fully functional, decentralized, 100% community-driven project that has continued to realize organic growth on a daily basis.
It has become a social experiment in which the investors have integrated into the community both from a community and development standpoint.
The project is currently being built and improved upon by the community by volunteers with various skill sets. Multiple members of the community contribute to the project by dedicating their talents of various fields and professions from designers, technical & software engineers, front‐end/full‐stack developers, web designers to language translators, social media contributors, writers, followers, data analysts, and so on.
Pitbull has morphed into an international melting pot of different backgrounds across the globe. The token, regardless of distance and by ways of the community, has enabled individuals to interact, network, and develop together, forming a formidable community and achieving solid milestones at a rapid pace in this exciting age of the Social Blockchain Era.
✔️ 2% fee redistributed to all holders including black hole
✔️ 2% fee on sell trades added to the liquidity pool by smart contract locked forever
✔️ 50% burnt to the black hole, getting bigger from the fees
✔️ 100,000,000,000,000,000 total supply
✔️ 500,000,000,000,000 Pit max limit for per trade
Pitbull [PIT] 是一 代币基于 Binance Coin 区块链. 最准确的价格 Pitbull [PIT] is ¥0.000000. Pitbull 展示在3个交易所,共有5个活跃市场。 24H交易量 [PIT] 是 ¥441.86, 同时 Pitbull 市值为 ¥0 让它排名#4047 所有加密货币 您可以查看更多关于Pitbull [PIT]的信息,就在 | s3://commoncrawl/crawl-data/CC-MAIN-2021-39/segments/1631780057199.49/warc/CC-MAIN-20210921070944-20210921100944-00401.warc.gz | CC-MAIN-2021-39 | 1,869 | 10 |
https://www.weareallmadeofstories.com/blog/tags/stories-and-storytelling | code | We read them, watch them, hear them, LIVE them.
I write stories, mainly for kids (but hey, anyone is allowed to read them!)
I help people find their stories - especially but not only - older people. I share stories because they are the threads that connect us, weaving the tapestry of our existence, because they are the way we make meaning out of our world, and because they bring me joy. I hope they bring you joy, too.
See, I can't tell you how to live your life, but I can tell you a story.
Maybe it's just the one you need ... | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947476413.82/warc/CC-MAIN-20240304033910-20240304063910-00004.warc.gz | CC-MAIN-2024-10 | 531 | 5 |
https://vaughntan.org/research_teaching | code | I investigate how individuals and businesses respond to true uncertainty in causation and environment. My focus is on design principles that make organizations innovative, adaptable, and resilient to uncertainty.
The uncertainty mindset: innovation insights from the frontiers of food. This book analyzes some of the world’s most innovative culinary R&D teams to describe the uncertainty mindset—which acknowledges uncertainty and incorporates it in decisions about action—and argue that such a mindset modifies how individuals and organizations work in ways that make them more innovative and adaptable. (Columbia University Press, 2020.)
“Using negotiated joining to construct and fill open-ended roles in elite culinary groups.” This paper updates conventional hiring theory and practice and suggests that what I call negotiated joining is a more appropriate approach to hiring for innovation teams where job descriptions cannot be fully defined in advance. I show how active negotiation and testing of explicitly provisional roles allows individuals to build roles tailored to their strengths and inclinations, while enabling organizations to build flexible and adaptable teams. (In Administrative Science Quarterly 60(1), p103-132. 2015.)
Strategy and Design
MSIN0134; University College London, 2013-present.
Doctoral seminar exploring connections and complementarities between strategic management theory and design theory (broadly construed). You can find the 2020/21 syllabus here, and the reading list here. I developed and currently teach this seminar.
Strategy by Design
MSIN0020; University College London, 2013-present.
Undergraduate lecture and case-based module using design thinking and structured analytical writing to motivate and update conventional strategic theory and practice. You can find the main readings here. I developed and teach this course.
Qualitative Research Methods for Management
MSIN0046; University College London, 2020
Doctoral seminar covering qualitative research methods used in organization and management studies, including ethnography and observation, case studies, and grounded theory building. I developed and taught the interview and observation/ethnography sections of this team-led seminar.
Executive education module; Singapore Management University, 2017.
1-day module for senior managers at a major technology firm on recognizing and managing uncertainty in their work portfolios. I developed and delivered this module. | s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679099942.90/warc/CC-MAIN-20231128183116-20231128213116-00742.warc.gz | CC-MAIN-2023-50 | 2,483 | 14 |
https://1000projects.org/hardware-enhanced-association-rule-mining-with-hashing-and-pipelining-project.html | code | Hardware enhanced association rule mining with hashing and pipelining project Description:
Hardware enhanced association rule mining with hashing and pipelining project is a 2008 cse project which is implemented in visual studio asp.net platform. In this project we will study about how data mining technology can be useful for knowing behavior of customers and provide effective solution using algorithms for capturing users interests in to data base and merging that data in to hardware using algorithms and also analyze different problems caused due to existing hardware systems for merging data from database when large amount of data from database doesn’t match with the memory on the hardware.
In this paper we propose hashing and pipelining methods for dealing with this problem.
Detailed explanation about this project is explained in project base paper and project report.
download hardware enhanced association rule mining with hashing and pipelining base paper pdf, project report with ppt. | s3://commoncrawl/crawl-data/CC-MAIN-2020-34/segments/1596439737319.74/warc/CC-MAIN-20200808080642-20200808110642-00146.warc.gz | CC-MAIN-2020-34 | 1,003 | 5 |
https://capitalissues.co/2015/09/ | code | It is that time of the year: the Basel III monitoring reports are out. The Basel report can be found here. The EBA report can be found here. Highlights from the EBA report: CET1 ratios are steadily increasing – Compared with the previous exercise (reference date June 2014), the average CET1 ratio of Group 1 banks increased by 0.5… Read More Jay, the EBA and BCBS Basel III monitoring results are out!
The Chicago Fed offers great data on bank holding companies, click here for the full page, and here for the download page. The data is big, deep, large. The number of variables is stunning (more than 3,000). The format is a flat text file with a typical delimiter: a caret (^) separates the data fields. How to… Read More A python script to manage regulatory data of U.S. Bank Holding Companies | s3://commoncrawl/crawl-data/CC-MAIN-2018-51/segments/1544376823339.35/warc/CC-MAIN-20181210123246-20181210144746-00320.warc.gz | CC-MAIN-2018-51 | 803 | 2 |
https://help.noibu.com/hc/en-us/articles/12381344980493-Correlated-Issues-Overview | code | When investigating an issue, developers often examine issues that occur in parallel. Issues rarely occur in a vacuum, and you can often trace two or more issues back to the same root cause, or gain context for one issue by examining another. For example, you may have multiple issues that occur on the same page, result from the same server failure, or always occur one after the other. Furthermore, sometimes one issue is caused by another, and fixing one may fully or partially resolve the other.
To accommodate this flow, we’ve added the Correlated Issues tab. As the name suggests, this tab identifies issues with similar properties to the issue you’re examining. Good developers spend a lot of time working out whether two or more issues are related. The Correlated Issues tab eliminates this guesswork and gets your team that much closer to resolving the issue.
Noibu considers two issues correlated if they meet at least one of the following criteria:
- The issues occur on the same URL. This may indicate the two issues stem from the same faulty code.
- Users experience the issues at similar times. This may indicate the two issues stem from a problem in the same flow or process, or that one issue causes the other.
- The issues have similar error signatures. This may indicate the two issues are the same, but Noibu’s error signature algorithm falsely separated them.
Click on an error signature to open the issue in a new tab. | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296818474.95/warc/CC-MAIN-20240423095619-20240423125619-00641.warc.gz | CC-MAIN-2024-18 | 1,444 | 7 |
https://softwareengineering.stackexchange.com/questions/94540/what-to-do-if-a-team-member-misses-a-sprint-planning | code | Planning is about doing commitment and about splitting committed user stories to tasks.
have a planning session with him after he is back.
Definitely no. Planning session after he is back doesn't make sense because commitment had to be already done.
have a planning session with him before he goes on annual leave i.e. before sprint planning.
Definitely no. There should be no planning when current sprint is not completed = result of current sprint is unknown and nobody knows if all user stories will be completed and customer will be satisfied with them on review.
don't schedule him for any task and assign him on non sprint tasks e.g. spikes etc
Definitely no. He will be back and his capacity should be used for sprint target.
have his peers plan on his behalf during sprint planning and absent person can then add tasks when he is back and if he cannot do all the work he can descope.
This is correct. The team does commitment - not particular team member. Team commits to set of user stories because they know their velocity and based on their professional guess they can modify commitment for the next sprint based on available capacity. There should be no tasks assigned to single developer upfront. Developers should be cross functional even it is not always possible, they should still be able to at least split user story to tasks. There can be problem with estimating tasks but in my opinion it is not needed at all.
have him sit with another developer and do pair programming for a while.
Definitely no. Pair programming should be covered by velocity itself. If you don't count with developer it is same like saying that he will be away whole sprint. Why should customer pay time of developer who did nothing during the sprint? | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296818711.23/warc/CC-MAIN-20240423130552-20240423160552-00689.warc.gz | CC-MAIN-2024-18 | 1,742 | 11 |
http://christianconservativedaily.com/covid-19-tory-mp-who-said-nhs-figures-were-being-manipulated-refuses-to-apologise/ | code | The following video is brought to you courtesy of the Sky News YouTube Channel. Click the video below to watch it now.
Sir Desmond Swayne said the comments, made in November to Save our Rights UK and obtained by Sky News, were “perfectly legitimate at the time”.
SUBSCRIBE to our YouTube channel for more videos: http://www.youtube.com/skynews
Follow us on Twitter: https://twitter.com/skynews
Like us on Facebook: https://www.facebook.com/skynews
Follow us on Instagram: https://www.instagram.com/skynews
For more content go to http://news.sky.com and download our apps:
Sky News videos are now available in Spanish here/Los video de Sky News están disponibles en español aquí https://www.youtube.com/channel/UCzG5BnqHO8oNlrPDW9CYJog” | s3://commoncrawl/crawl-data/CC-MAIN-2021-10/segments/1614178377821.94/warc/CC-MAIN-20210307135518-20210307165518-00226.warc.gz | CC-MAIN-2021-10 | 744 | 8 |
http://os.inf.tu-dresden.de/pipermail/l4-hackers/2011/004704.html | code | L4Re: C++ or DICE for IPC
Valery V. Sedletski
_valerius at mail.ru
Thu Feb 24 02:49:09 CET 2011
thanks for answering my question so quickly
On Tue, 22 Feb 2011 11:52:11 +0100, Bj rn D bel wrote:
>> Is DICE discontinued? And how can I do something with communication code if not using IDL?
>Yes, Dice has been discontinued and is no longer supported in L4Re.
>For the moment, you can use the C++ IPC streams provided by L4Re for
>communication. You can also directly use the C system call bindings for
>IPC, which requires you to write the marshalling/unmarshalling code
Yes, of course, I knew of such a possibility. I can manually call IPC syscall of L4,
but here is so much handwork and so it is not desirable.
>For other programming languages it would for now be necessary to provide
>some kind of bindings to the C or C++ interfaces. Difficulty varies
>depending on the language. We're using Lua for configuration purposes
>and it's easy to call C functions from Lua code.
I just prefer using C+IDL than C++ because I believe that OOP must be a property of an OS but not a
single language, like an approach in IBM's SOM/DSOM. In SOM, applications can be written on
any language with IDL bindings, and class hierarchy can use a cross-language inheritance (classes
are encapsulated, so you doesn't have to have a class source for using it, and you can use a C++ class
from a a C program and inherit a C-written class from a
I think, hiding the IPC under C++ iostreams is an interesting approach, but with my point of view,
not good because it ties a programmer to a single language. (But maybe, someone will make the bindings
for C somehow?)
More information about the l4-hackers | s3://commoncrawl/crawl-data/CC-MAIN-2018-43/segments/1539583511744.53/warc/CC-MAIN-20181018063902-20181018085402-00337.warc.gz | CC-MAIN-2018-43 | 1,680 | 26 |
http://sharepoint.stackexchange.com/questions/tagged/calculated-column+incoming-email | code | 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
set several list columns based on portions of document name seperated by an underscore
If I have a docuent library that has a documents in it using the following format: Region_Division_Store.pdf ...notice the underscores. I also have three columns named Region, Division, Store. ...
Jun 8 '12 at 18:38
newest calculated-column incoming-email questions feed
Hot Network Questions
Does CSRF prevention also prevent reflected XSS attack?
Why does flight training usually start with (unsafe?) propeller planes and not with (safer?) jets?
What could be a single word or phrase for the one who helps people to achieve their goals?
Using expressions in the SELECT list to thin down a CASE statement
How to find number of days since beginning of fiscal month?
Identifying what caused a server reboot
Possibly quit your job with a polyglot
Problem with i:0#.w|/domain name
What is the probability of my sum reaching exactly 10?
Why doesn't T.TryParse return a Nullable<T>
The lake monster
Value cannot be empty. Parameter name: userName
How to copy a certain file several times with a regular ending?
What is the Doctor not quite remembering?
Too-high / too-low guessing game in Swing
Cat5 wire connector does not appear to be continuous
How long can a Timelord hold his breath?
Alternative to Windows Media Player that supports all video/audio files
`seq` and bash brace expansion failing
Run multiple servers on the same port
Is it better to describe the main character's physical appearance early on in the story?
Why should any physicist know, to some degree, experimental physics?
In the word "Scent", is the S or the C silent?
How can "purely" electrical circuits emit sound?
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-35/segments/1408500829421.59/warc/CC-MAIN-20140820021349-00089-ip-10-180-136-8.ec2.internal.warc.gz | CC-MAIN-2014-35 | 2,311 | 52 |
http://www.droidforums.net/threads/i-knew-it-was-too-good-to-last.49895/ | code | If anyone's noticed on the site, I've made several references to the fact that when I went to v1.0, I gained probably twice the battery life. WHen I went to v1.1 I didn't notice a difference meaning I'm still very happy with the new performance. Then I thought I'd try to drop the "bling" SetCPU and see if it improved further as I usually left SetCPU at 800 which is what the ROM runs at. Only with a couple days in, I noticed a slight increase in life and was even happier yet. Then while at work (when I should've been working) I was going through the apps and uninstalling those that I just wasn't using. When I got to Home++ I uninstalled it and that's when all hell broke loose. I'm running LauncherPro and really like it. Have modded it a bit for that personalization, but when I deleted the Home++ I got the "choose launcher" and LauncherPro was not an option. So being that I'm at work I opted not to go through and reinstall and make all my changes, so I just booted in to recovery and restored to my last back up (only a few days prior). Everything looks good, but I quickly notice that the battery life that I was so excited about, has dropped off considerably. Where I'd charge it to 100% and if on standby, it would be 2 hours before seeing 90%, now it's at 90% at about 15 minutes. Anyone have any idea what could have changed? The only thing I had to change after the restore, was uninstalling setCPU again. Thoughts? | s3://commoncrawl/crawl-data/CC-MAIN-2019-04/segments/1547583659056.44/warc/CC-MAIN-20190117163938-20190117185938-00331.warc.gz | CC-MAIN-2019-04 | 1,433 | 1 |
http://www.webreference.com/programming/java_24/3.html | code | How to Create Interactive Web Programs with Java | 3
How to Create Interactive Web Programs with Java
Java Web Start
One of the issues you must deal with as a Java programmer is how to make your software available to the people who will be using your work.
Applications require a Java interpreter, so one must either be included with the application, or users must install an interpreter themselves. The easiest solution is to require that users download and install the Java Runtime Environment from Sun's web site at http://java.com.
Regardless of how you deal with the requirement for an interpreter, you distribute an application like any other program, making it available on a CD, website, or some other means. A user must run an installation program to set it up, if one is available, or copy the files and folders manually.
Applets are easier to make available, because they can be run by web browsers. There are several drawbacks to offering applets instead of applications, most importantly the default security policy for applets, which makes it impossible for them to read and write data on a user's computer, among other restrictions.
Java supports another way to make applications available to users: Java Web Start, a method of downloading and running applications by clicking links on web pages. Java Web Start, which requires the Java Plug-in, offers a way to install and run applications as if they were applets. Here's how it works:
To see it in action, visit Sun's Java Web Start site at http://java.sun.com/products/ javawebstart/demos.html. The Web Start Demos page contains pictures of several Java applications, each with a Launch button you can use to run the application, as shown in Figure 17.4.
Click the Launch button of one of the applications. If you don't have the Java Runtime Environment yet, a dialog box opens asking whether you would like to download and install it.
The runtime environment includes the Java Plug-in, a Java interpreter that adds support for the current version of the language to browsers such as Internet Explorer and Mozilla. The environment can also be used to run applications, whether or not they make use of Java Web Start.
When an application is run using Java Web Start, a title screen will be displayed on your computer briefly and the application's graphical user interface will appear.
Figure 17.5 shows one of the demo applications offered by Sun, a military strategy game in which three black dots gang up upon a red dot and attempt to keep it from moving into their territory.
As you can see in Figure 17.5, the application looks no different than any of the applications you created during the preceding 16 hours. Unlike applets, which are presented in conjunction with a web page, applications launched with Java Web Start run in their own windows, as if they were run from a command line.
One thing that's different about a Java Web Start application is the security that can be offered to users. When an application attempts to do some things such as reading and writing files, the user can be asked for permission.
For example, another one of the demo programs is a text editor. When you try to save a file with this application for the first time, the Security Advisory dialog box opens (see Figure 17.6).
If the user does not permit something, the application will be unable to function fully. The kinds of things that would trigger a security dialog are the same things that are not allowed by default in applets: reading and writing files, loading network resources, and the like.
Once an application has been run by Java Web Start, it is stored in a cache, enabling you to run it again later without installation. The only exception is when a new version of the application has become available. In this circumstance, the new version will be downloaded and installed in place of the existing one automatically.
Using Java Web Start
Any Java application can be run using Java Web Start, as long as the web server that will offer the application is configured to work with the technology. To prepare an application to use Java Web Start, you must save the application's files in a Java Archive (JAR) file, create a special Java Web Start file for the application, and upload the files to the web server.
The special file that must be created uses Java Network Launching Protocol (JNLP), an XML file format that specifies the application's main class file, its JAR archive, and other things about the program.
The next project you will undertake is to use Java Web Start to launch and run the
LottoMadness application from Hour 15, "Responding to User Input." To get ready,
put a copy of that project's files in your main Java programming folder. The files
you need are
LottoMadness.class, though you might also
LottoMadness.java, in case you decide to make any
changes to the application.
The first thing you must do is package all of an application's class files into a Java Archive (JAR) file along with any other files it needs. If you are using the Software Development Kit, you can create the JAR file with the following command:
jar -cf LottoMadness.jar LottoEvent.class LottoMadness.class
A JAR file called
LottoMadness.jar is created that holds both of the class files.
Next you should create an icon graphic for the application, which will be displayed when it is loaded and used as its icon in menus and desktops. The icon can be in either GIF or JPEG format, and should be 64 pixels wide and 64 pixels tall.
For this project, if you don't want to create a new icon, you can download
lottobigicon.gif from the book's website. Go to http://www.java24hours.com and
open the Hour 17 page. Right-click the
lottobigicon.gif link and save the file to
the same folder as your
The final thing you must do is to create the JNLP file that describes the application. Listing 17.5 contains a JNLP file used to distribute the LottoMadness application. Open your word processor and enter the text of this listing, then save the file as LottoMadness.jnlp.
The structure of a JNLP file is similar to the HTML markup required to put a Java applet on a web page. Everything within marks is a tag, and tags are placed around the information the tag describes. There's an opening tag before the information and a closing tag after it.
For example, Line 7 of Listing 17.5 contains the following text:
In order from left to right, this line contains the opening tag
<title>, the text LottoMadness Application, and the closing tag
</title>. The text between the tags—
LottoMadness Application— is the title of the application, which will be displayed when it is loaded and used in menus and shortcuts.
Created: March 27, 2003
Revised: February 13, 2006 | s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917123046.75/warc/CC-MAIN-20170423031203-00228-ip-10-145-167-34.ec2.internal.warc.gz | CC-MAIN-2017-17 | 6,720 | 47 |
https://ifs.swufe.edu.cn/info/1012/1601.htm | code | 作者:George J. Jiang (Washington State University), Bing Liang (University of Massachusetts Amherst),张华丞(西南财经大学金融研究院)
Using a novel style identification procedure, we show that style-shifting is a dynamic strategy commonly used by hedge fund managers. Three quarters of hedge funds shifted their investment styles at least once over the period from January 1994 to December 2013. We perform empirical tests of two hypotheses for the motivations of hedge fund style-shifting, namely backward-looking and forward-looking hypotheses. We find no evidence that style-shifting funds are backward-looking. Instead, we show evidence that managers of style-shifting funds exhibit both style-timing ability and the skill of generating abnormal returns in new styles. The new styles that hedge funds shift to on average outperform their old styles by 0.76% and style-shifting funds on average outperform their new style benchmark by 1.10% over the subsequent 12-month horizon. Finally, we show that small funds, winner funds, and fundswith net inflows aremore likely to shift styles.
关键词:hedge funds • style-shifting • fund manager skill • fund performance • fund flow | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296817790.98/warc/CC-MAIN-20240421163736-20240421193736-00001.warc.gz | CC-MAIN-2024-18 | 1,209 | 3 |
http://search.cpan.org/dist/Yote/lib/Yote/WebAppServer.pm | code | Yote::WebAppServer - is a library used for creating prototype applications for the web.
my $server = new Yote::WebAppServer();
This starts an appslication server running on a specified port and hooked up to a specified datastore. Additional parameters are passed to the datastore.
The server set up uses Net::Server::Fork receiving and sending messages on multiple threads. These threads queue up the messages for a single threaded event loop to make things thread safe. Incomming requests can either wait for their message to be processed or return immediately.
Write the message to the access log
Return a 404 not found page and exit.
Write the message to the error log
Writes to an IO log for client server communications
Returns a new WebAppServer.
Sets up Initial database server and tables.
This implements Net::Server::HTTP and is called automatically for each incomming request.
Shuts down the yote server, saving all unsaved items.
Copyright (C) 2011 Eric Wolf
This module is free software; it can be used under the same terms as perl itself. | s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368702900179/warc/CC-MAIN-20130516111500-00054-ip-10-60-113-184.ec2.internal.warc.gz | CC-MAIN-2013-20 | 1,051 | 14 |
http://www.classifiedscalgary.ca/ads/calgary-how-to-set-up-tplink-wifi-router-ad-739524/ | code | The connection between the computer and your tplink router is required either wired or wireless. The web-management of the tplink router does not require an internet connection but the connection is necessary. You wont be able to perform tplink router setup without establish a connection. Go to tplinkwifi.net login page to complete the tplink router installation and configuration. For more details you can visit our website http://tplink-wifi.com/. | s3://commoncrawl/crawl-data/CC-MAIN-2021-17/segments/1618038067400.24/warc/CC-MAIN-20210412113508-20210412143508-00069.warc.gz | CC-MAIN-2021-17 | 451 | 1 |
https://communityforums.rogers.com/t5/Internet/Hitron-CODA-4582-Device-Filtering/td-p/387734/highlight/true/page/4 | code | That is most definitely an odd occurrence. I haven't encountered this myself on any available firmware. Can you confirm your modem's firmware revision for us? Does this only occur with this feature specifically, or are there any other settings within the GUI that cause the same issue?
Hitron CODA 4582 Device Filtering does not work when you switch between different wifi connections
Currently I have Hitron CODA-4582U , I have 2 wifi names one for 2.4G and another for 5G. When I setup a device to be BLOCKED under Security --> Device Filter, it works first , then if you switch the device within the same modem to use a different wifi connection or direct LAN connection this filter will no longer be working. Any help , I dont want to use the filter under wifi setting because I want to block the device no matter if its connected via wifi or Ethernet (direct connect). | s3://commoncrawl/crawl-data/CC-MAIN-2021-04/segments/1610703519923.26/warc/CC-MAIN-20210120054203-20210120084203-00561.warc.gz | CC-MAIN-2021-04 | 873 | 3 |
http://www.agiledeveloper.com/iphonedev.html | code | |iPhone Application Development
Developing applications for iPhones is a lot of fun. On one hand you get to create applications that use the cool features of the iPhone. On the other hand, however, you are constrained by the device and the environment. This course will help you create high performing, great looking applications on the iPhone.
Experienced programmers interested in learning how to program for the iPhone.
- Learn how to program the iPhone
- Learn how to work with the iPhone constraints
- Learn the iPhone SDK and build tools
- Learn how to improve performance and how to do Test Driven Development
- Readily apply practical techniques you learn in the course
- Developing for the iPhone
- Quick introduction to Objective-C and Memory Management
- Development Tools
- Application Structure
- Test Driven Development
- UI Controls and interactions
- Orientation, Rotation, Sizing, and Drawing
- Working with Data, networking, location,...
- Multitasking, Push notification,...
- What is new in iPhone?
|Our other courses | s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368707437545/warc/CC-MAIN-20130516123037-00027-ip-10-60-113-184.ec2.internal.warc.gz | CC-MAIN-2013-20 | 1,037 | 19 |
http://www.blackberryforums.com/developer-forum/214592-looking-someone-do-bb-port-pretty-iphone-game-print.html | code | Looking for someone to do BB port of pretty iPhone game
Long story short, I'm a professional video game artist that designed and published an iPhone game this year (spent 8 months on artwork and had a programmer code it for me.) After it hit the App Store I sold the iPhone rights off, but part of the deal was I kept the rights to publish on other platforms. I'm now looking into both BlackBerry and Android. Doesn't seem to be a lot of professional-looking games on App World so seems a good move.
It's a very pretty game and not a lot of code to it (I was told 3 to 6 man-weeks for Android, I assume similar for BB.) All the artwork is ready for BB screensizes. The problem was when I advertised it, I got crazy 5 figure quotes from development companies for something that a guy could work on part-time (as what happened with the iPhone version.) It's not a demanding game so if you've done business apps/utilities/etc this might be within your abilities.
If this is something you might be interested in, email me at gameport9001 at gmail dot com with your rate and your past app experience. Location isn't a problem but please be able to speak English.
|All times are GMT -5. The time now is 11:39 AM.|
Powered by vBulletin® Version 3.6.12
Copyright ©2000 - 2018, Jelsoft Enterprises Ltd. | s3://commoncrawl/crawl-data/CC-MAIN-2018-26/segments/1529267864740.48/warc/CC-MAIN-20180622162604-20180622182604-00242.warc.gz | CC-MAIN-2018-26 | 1,295 | 7 |
https://support.freshservice.com/support/discussions/topics/314888 | code | I have developed an app, and published it on developer portal as my custom app. I wanted to update the code, but that didn't work (tried to replace file and publish with no luck).
Now I'd like to delete an old app with outdated code, but I have no way to do that . All I see is a red padlock icon.
Is there no way to delete apps? And if not, then how do I update code on these apps
It's 2019 and I still share the same issue. Was this solved meanwhile?
There is no option to delete the app. However, you can at least differentiate the app.
You need to save and submit the app. In the next step you should cancel submission.
The app will have a grey line on top, an indication that the app is abandoned.
Could you elaborate on that?
I can only find two options "Add new version" or "Publish"
The Delete option is now added, Allard.
On a side note,
We have recently launched forum for Freshworks developer community (https://community.developers.freshworks.com). We encourage all the developers to discuss queries, ambiguities, know-hows, and points of interest with fellow app developers and Freshworks’ engineers on the forum. We will involve the stakeholders directly on the forum topic to help you get your answers quicker. | s3://commoncrawl/crawl-data/CC-MAIN-2021-43/segments/1634323585322.63/warc/CC-MAIN-20211020152307-20211020182307-00067.warc.gz | CC-MAIN-2021-43 | 1,227 | 12 |
https://vox.veritas.com/t5/NetBackup/NetBackup-8-Optimized-Duplication-to-COFC-duplication-target/m-p/828297/highlight/true | code | I am running NBU 8 on Windows Server 2016 with Optimized Duplication and have run into a problem. I have 2 HPE StoreOnce systems, a primary and a secondary. I have setup my SLP where the backup operation goes to the primary StoreOnce using a CoFC target. And the SLP duplication operation goes to the secondary StoreOnce using a CoFC target. The backup operation completes successfully but the duplication operation gets stuck running forever. NetBackup logs report the duplication operation starts writing but it never actually starts writing to the COFC target on the secondary StoreOnce system. The duplication operation should take about 10 minutes. Does NetBackup support the duplication operation to a CoFC target? I have been successful using the duplication operation when going to a CoE target on the secondary StoreOnce system. I cannot find any documentation on these compatibility questions.
Thanks in advance...
Is this a push (1 media server with storage units of both StorOnce Pools) or a pull configuration (2 media servers with multiple storage units StorOnce Pools)?
If its a push config, have you sent the backup directly to the secondary to see it works? The duplication of course doesn't go via the media server but this would show if there are any issues with accessing / managing the second StorOnce Pool.
I believe this would be a push. The NBU Master/Media server (only 1 server) has the storage units/disk pools/storage servers. Yes, I have backed up directly to the secondary StoreOnce and it works fine with CoE and CoFC Catalyst stores. But my question though was does NetBackup support the SLP duplication operation to a CoFC target? This is what is not working for me.
Take a look in this document on how to configure:
Seems like you need to configure CATALYST_COPY_REDIRECT_ADDRESS in HPE catalyst plugin for this to work. | s3://commoncrawl/crawl-data/CC-MAIN-2022-21/segments/1652662658761.95/warc/CC-MAIN-20220527142854-20220527172854-00741.warc.gz | CC-MAIN-2022-21 | 1,854 | 7 |
https://socratic.org/questions/would-the-nutrition-levels-and-dietary-habits-e-g-high-fat-diets-high-cholestero | code | Would the nutrition levels and dietary habits (e.g. high fat diets, high cholesterol levels, protein or low carb diets, vegetarian, vegan, normal eater, etc.) of people in a survey be considered either Discrete or Continuous data?
It would be Discrete as you can not have
Continuous data is more like things like distance and such, as there are infinitely many different answers you could get, for example, how long is a banana? (your data wont be 5cm or 6cm... you would get like 5.003cm and 5.025cm and so on) | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296819089.82/warc/CC-MAIN-20240424080812-20240424110812-00387.warc.gz | CC-MAIN-2024-18 | 511 | 3 |
https://www.cnx-software.com/2024/01/25/arduino-alvik-is-a-3-wheel-robot-designed-for-steam-education/ | code | Arduino Education’s Arduino Alvik is an upcoming 3-wheel educational robot that was just unveiled at the Bett 2024 show in London and designed to teach robotics, programming, and other STEAM subjects.
The robot is based on an Arduino Nano ESP32 board and will come with a set of nineteen lessons designed by Arduino Education’s team in collaboration with teachers so that students can learn the basics of IoT, get started with MicroPython, and get themselves familiar with various physics and engineering concepts.
The company has yet to provide the full specifications for the Alvik robot, but here’s what we know at this stage:
- Mainboard – Arduino Nano ESP32
- 2x wheels plus 1x ball wheel
- Sensors – “High-quality sensors” that include a ToF ranging sensor, line-following sensors, a 6-axis accelerometer & gyroscope, a proximity sensor, and color sensors.
- 2x Grove I2C connectors
- 2x Qwiic connectors
- 6-pin servo motor header for up to 2x micro servos (as shown in the photo above)
- Capacitive touch buttons (D-Pad, OK, cancel)
- On/off switch
- Compatible with LEGO Technic and M3 screws
- “3D printing and laser cutting design-compatible” although I’ve yet to fully understand what that means 🙂
- Power Supply – Rechargeable battery rechargeable through USB-C port on Arduino Nano ESP32
While Arduino Education will initially support MicroPython, work is being done to bring block-based programming and Arduino C lessons to the Arduino Alvik robot. The kit will be suitable for primary school students up to advanced learners with lessons covering interactive game design, IoT, and AI projects.
The Arduino Alvik is not available just yet, but you can check out a demo at Bett 2024, at ExCel London, from 24 to 26 January 2024. Educators can also register to join a waiting list and get notified when they can do a “bulk purchase for their school” once the robot becomes available. This could also mean the robot won’t be sold to individuals (TBC). More details may be found on the product page.
Jean-Luc started CNX Software in 2010 as a part-time endeavor, before quitting his job as a software engineering manager, and starting to write daily news, and reviews full time later in 2011. | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947474659.73/warc/CC-MAIN-20240226094435-20240226124435-00762.warc.gz | CC-MAIN-2024-10 | 2,234 | 17 |
http://cuwise.blogspot.com/2010/11/santas-dirty-socks.html | code | This original story introduces the idea of a divide-and-conquer algorithm using a narrated picture-book verse about the serious problem of finding a pair of dirty socks that have been accidentally wrapped with a child's present. The idea is that this can be played or read to students, and then can be used as the basis for a follow-up discussion. A set of discussion starter questions is available (http://csunplugged.org/divideAndConquer) to encourage students to engage in computational thinking and think about algorithm analysis in the story 1024 presents are searched in 10 steps, and students can be asked to extend this to other cases, and generally think about the implications of having an algorithm with logarithmic complexity.Check out all the videos.
Tuesday, November 2, 2010
CS Unplugged is a series of activities designed to teach computer science without a computer. I've used them many times for outreach activities and even in an undergraduate course I taught. The creators have been uploading some great videos relating to computer science topics, and I wanted to share this one: | s3://commoncrawl/crawl-data/CC-MAIN-2017-17/segments/1492917119838.12/warc/CC-MAIN-20170423031159-00443-ip-10-145-167-34.ec2.internal.warc.gz | CC-MAIN-2017-17 | 1,099 | 3 |
https://michaelstoica.com/powercli-invalid-server-certificate/ | code | I just finished installing vCenter in my homelab and I wanted to start configuring the environment using PowerCLI.
When I tried to connect to vCenter I received the following error:
As you can see in the error message, Set-PowerCLIConfiguration can be used to ignore the certificate warning. To get more info about the command run Get-Help Set-PowerCLIConfiguration and you will see in the description the link to VMware Code as well
So all you have to do is to run Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false
Be First to Comment | s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296950528.96/warc/CC-MAIN-20230402105054-20230402135054-00198.warc.gz | CC-MAIN-2023-14 | 560 | 5 |
https://cornishlab.cfaes.ohio-state.edu/search/site/publications%20rubber?page=96&f%5B0%5D=hash%3Apr1wnh&f%5B1%5D=hash%3Am7cmlj&f%5B2%5D=hash%3Avx80q9&f%5B3%5D=hash%3Altcll7&f%5B4%5D=hash%3A2phugs | code | - Did you mean
- public rubber
1924-2003 The Oxford companion to food S441.N76 2014 Nordahl, Darrin Public produce: cultivating our parks, ...
The horse arena at GDLL would be expanded to provide classroom space and public seating for community ...
For more information related to this video, please visit the full article here. ... | s3://commoncrawl/crawl-data/CC-MAIN-2023-06/segments/1674764500904.44/warc/CC-MAIN-20230208191211-20230208221211-00765.warc.gz | CC-MAIN-2023-06 | 332 | 5 |
http://www.ucsc.cmb.ac.lk/wiki/index.php/Main_Page | code | From UCSC Wiki
Welcome to the University of Colombo School of Computing Wiki
This is the wiki of the University of Colombo School of Computing (UCSC). This simple collaborative platform is intended for creating a knowledge base by accumulating the vast amount of knowledge of individuals within the UCSC. We invite all members of the UCSC including students to contribute to the development of this knowledge base.
Any logged in user of the can edit an existing page or create a new page in the wiki. If you do not already have an account please send an e-mail to Hakim and he will create one for you.
Note: I think we need ONE exremely important ground rule - no posting URL's alone without at least a summary of what the linked page contains. The focus in a Wiki like this is to distill our own learning and understanding and summarize it for others, using URL's only if absolutely necessary (a good example of proper use of URL's is the way Wikipedia uses them - very sparingly!).
Things we do
Let's start a list of things we can do using this platform (please feel free to add):
- UCSC Internal Procedures and Processes: The purpose of this is to clarify, preserve and disseminate our corporate knowledge pertaining to internal procedures
- Forum for Ideas: This is a platform for generating and expressing new ideas (even half-baked ones)
- Technology Update: This is an area where we can share recent key technologies we think are important with each other
- Educational Technology: This is a dedicated area for sharing experiences in our core business - teaching and learning
- New Courses: This is where newly proposed courses can be collaborated on
- Research Interests: Here we can open up discussion to others of our research interests - the core of our core business!
- ICTer Journal: UCSC managed International Journal
- Humour and other Tidbits: There has to be something to make us laugh... :-D
- Lunch time seminar: The weekly research seminar of UCSC.
- Sinhala Terms: Try to plug in all the Sinhala Terms used in CS and ICT
- Tech-Support: Specially for things like Sinhala Unicode support
- Project Ideas: Project Ideas for Undergraduates & Postgraduates
- UCSC Futures: Ideas for how to develop UCSC
- Scratch Pad: This space is a kind of sandbox to practice wiking doing rough work!
- UCSC.Tv: To extend our reach beyond the campus limits!
- PerformOMeter: Stats that we all should know
- External Extension Programmes: Stats on all Extension & External Programmes of UCSC
- Archive: To put stuff that we may need to refer to in the future...
- GSoc: Potential projects for the Google Summer of Code
- HowTos : How to do certain technical things (e.g. Install, configure or modify software)
- HowTos Processes : Sharing experience on how certain task were done so that someone can take over later
- Postgraduate Study Overseas: Pointers for securing places for overseas postgraduate study
- Review of Teaching-Learning-Assessment: Sharing ideas and experiences of Teaching-Learning and Assessment to address graduate Quality | s3://commoncrawl/crawl-data/CC-MAIN-2013-20/segments/1368708142388/warc/CC-MAIN-20130516124222-00089-ip-10-60-113-184.ec2.internal.warc.gz | CC-MAIN-2013-20 | 3,045 | 30 |
https://software-empathy.pl/page/3/ | code | I tried to write my own blog 3 times so far. Each time after publishing a few posts I found out that I don’t have enough time for it. Probably my main problem was that I always wanted to write everything from the scratch – so I have never used… Read more »
Usually I don’t have time 🙂 Last year almost every month I tried to attend Agile Silesia meetings. But every month something happened and I just postponed my “first time”. So I decided to change my strategy. I sent an email if they want me to give them a talk… Read more »
Second time I was able to talk about distributed teams in agile oriented companies (First time I have this talk on InfoMeet event in Kraków). This particular talk is mostly my personal story of mistakes and problems that I had to face on my daily basis at work. IT Career… Read more »
Slides (in Polish) from my presentation about introducing Continuous Delivery in old legacy projects. I was very proud to give this talk three times so far: Infomeet Kraków 2014, Infomeet Wrocław 2014, CareerCon Kraków 2015 This talk was mostly about basic steps that can be very easily missed if you… Read more »
BulletJournal is a simple yet very powerful method for organisation of daily and monthly tasks using just a regular paper notes. What I really like about it that by using it one can get very easy personal solution for regular retrospective. Just look at this video:
Video (unfortunately recorded by smartphone) and Slides from my talk about efficient maintaining your own IDE and personal developer toolbox. Video and slides are in Polish. This talk was prepared for IT HappyHours event (Wroclaw University of Technology) – 2.06.2014.
I conducted this talk three times: IT Happy Hours, Czestochowa University of Technology, 03.04.2014 (Fb event), SKN IPIJ (Students organization), Silesian University of Technology, 10.04.2014 (event), Private talk, 29.05.2014 Here is very first version for this talk (used even before first version described in this article during some my academical… Read more »
Slides from my talk (BIT Festival, Silesian University of Technology, 23.11.2012) about Google Guava library with some live coding.
About three months ago I came across a tool (thanks to the Silesian JUG!) that promised to accelerate and facilitate searching and browsing over server logs. Sceptical as I was, I had a quick look at the short tutorial: Youtube Video – Retrospective Tutorial . I decided to have a closer look… Read more » | s3://commoncrawl/crawl-data/CC-MAIN-2023-40/segments/1695233506045.12/warc/CC-MAIN-20230921210007-20230922000007-00853.warc.gz | CC-MAIN-2023-40 | 2,504 | 9 |
https://kongsberggeospatial.com/company/blog/135-working-out-the-kinks-handling-error-messages-diagnostic-information | code | Working Out the Kinks – Handling Error Messages and Diagnostic Information
Handling error and diagnostic information in real-time systems is a delicate balance. You don’t want to execute code that unnecessarily bogs a system down and impacts runtime performance. Critical applications can’t stop due to errors, and while they can continue through some exceptional conditions such as the inability to load a data file, this could lead to an operator unknowingly working with a degraded system.
For these reasons, logging warnings and error conditions is the preferred approach in maintaining a complex real-time system. Since runtime errors and exceptions can be a serious risk to crashing an application, they must be captured and logged wherever possible. The TerraLens Geospatial SDK is designed to keep running, while providing the diagnostic information necessary to address runtime issues.
In order to maintain sufficient detail for diagnosing the system, any such logging system must be highly efficient. With the TerraLens SDK, log messages can be filtered in various ways, based on their type, severity and source. Multiple filters can be used, directing different sets of messages to different locations.
Applications can direct critical errors and information to the user, while simultaneously recording a more complete stream to disk, or across the network with a real-time network-based system such as Syslog. Applications can also log their own messages using the same system to maintain a coherent log of all runtime events, all with little to no performance impact for messages which are discarded.
As runtime performance is a key concern for real-time applications, diagnostics should not be limited to just logging. TerraLens provides an internal diagnostic tracing capability to gather information about the runtime performance of your application in exceptional detail. This enables applications to look beyond the typical “blackbox”, and visualize the impact of their application’s use of the SDK, and its interaction with the system graphics drivers and hardware.
Using this detailed view inside, challenging performance issues can be easily identified and addressed. Tracing is highly optimized for minimal impact, and can be enabled at runtime even during the most complex visualizations, providing the insight and information necessary to enable the performance tuning which is so critical for real-time applications. | s3://commoncrawl/crawl-data/CC-MAIN-2022-05/segments/1642320303779.65/warc/CC-MAIN-20220122073422-20220122103422-00192.warc.gz | CC-MAIN-2022-05 | 2,453 | 7 |
http://gta5onlinemoneyhack.net/gta-v-usb-mod-tool-xbox-ps3-2015/ | code | Here is the new updated USB Mod Tool for GTA 5 on both Xbox 360 and PS3, these mods consist of godmode, max money, car mods, weapon mods and much, much more! You can download these mods but clicking the link below!
This is definitely worth downloading, its the best mod tool I have ever used.
A lot more mods have been added to the tool since I made my last video so I hope you guys enjoy all of the new mods included. This does not work on PS4 or Xbox One!!
GTA V Save Editor By: XB36Hazard
If you felt this video was informative or a bit decent give the video a good old like!
Royalty free music by: https://player.epidemicsound.com/
► MORE VIDEOS HERE: https://www.youtube.com/user/lucozade321 ◄
If you have any problems with this be sure to comment below or on my Facebook Page!
ツ Subscribe Here: https://www.youtube.com/user/lucozade321?sub_confirmation=1
◄ Links ►
GTA 5 Mod Tool: http://www.x3t-infinity.com/DownloadGTAV.php
◄ Social Media ►
Facebook Page: https://www.facebook.com/LUCOZADE321
My Twitter. https://www.twitter.com/lucozade321
(Follow me on Twitter)
(Will be streaming very soon depending if you guys want me to)
►Want a partnership? Check out Maker Gen: http://awe.sm/r5oY9
Video Rating: / 5 | s3://commoncrawl/crawl-data/CC-MAIN-2021-43/segments/1634323587659.72/warc/CC-MAIN-20211025092203-20211025122203-00147.warc.gz | CC-MAIN-2021-43 | 1,230 | 18 |
https://www.veritas.com/content/support/en_US/doc/15263389-127350397-0/v69553510-127350397 | code | Veritas NetBackup™ Commands Reference Guide
- Appendix A. NetBackup Commands
vnetd — The NetBackup communication daemon
-standalone | -terminate
On UNIX systems, the directory path to this command is /usr/openv/netbackup/bin/
On Windows systems, the directory path to this command is install_path\NetBackup\bin\
vnetd is the NetBackup network communications service (daemon) used to create firewall-friendly socket connections. It allows all socket communication to take place while it connects to a single port. Start vnetd as a continuously running service (daemon). Note that inetd no longer launches vnetd.
When you install NetBackup on a client, the installation process typically adds entries for vnetd to the following:
The following options are available for vnetd:
Instructs vnetd to run continuously. -standalone is the default condition for NetBackup startup.
Stop the running vnetd service. | s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100286.10/warc/CC-MAIN-20231201084429-20231201114429-00498.warc.gz | CC-MAIN-2023-50 | 906 | 11 |
https://addons.thunderbird.net/it/thunderbird/addon/tb-import-export-wind-li-port/reviews/1100813/ | code | Assegnate 1 su 5 stelle
In the filter management window, it adds a buttons to enable export of filters, however import doesn't seem to work. It can only import from "Becky internet mail".
It hijacks your internet browser to a .ru-based site, but it seems to have been resolved after removing the add-on and reinstalling the browser. Still too risky and cumbersome to just get half the solution. Considering abandoning Thunderbird, as it's not a long term viable solution. :( | s3://commoncrawl/crawl-data/CC-MAIN-2021-17/segments/1618039603582.93/warc/CC-MAIN-20210422100106-20210422130106-00467.warc.gz | CC-MAIN-2021-17 | 474 | 3 |
https://www.readthistwice.com/book/space-settlements | code | A Design Study
N. A. S. A.
This report grew out of a 10-week program in engineering systems design held at Stanford University and the Ames Research Center of the National Aeronautics and Space Administration during the summer of 1975. The project brought together nineteen professors of engineering, physical science, social science, and architecture, and two co-directors. Th... | s3://commoncrawl/crawl-data/CC-MAIN-2021-10/segments/1614178362133.53/warc/CC-MAIN-20210301060310-20210301090310-00076.warc.gz | CC-MAIN-2021-10 | 380 | 3 |
https://studiofriction.com/ | code | Studio Friction is a rope-centered, non-normative, safe, welcoming, polished and modern environment for learning, exploration, practice, play, and performance. We create a place of trust, freedom, and connection where you can open new awareness, develop mastery, and engage the body, mind, and emotions. Come co-create the future of rope artistry, craft, and play with us.
We have a large, and bold vision for Studio Friction... we see this as the beginning of something new in the Denver rope community - a place to incubate the future of the art of Kinbaku, where, truly, all enthusiasts of rope are welcome. We will be consciously creating a culture of inclusion and openness. | s3://commoncrawl/crawl-data/CC-MAIN-2018-13/segments/1521257647498.68/warc/CC-MAIN-20180320150533-20180320170533-00796.warc.gz | CC-MAIN-2018-13 | 679 | 2 |
https://openjaus.com/openjaus-releases-sdk-v5-0-0/ | code | OpenJAUS is proud to announce the release of our latest software development kit, OpenJAUS v5.0.0!
JAUS has established itself as a key technology in the US Army & US Navy’s Unmanned Ground Vehicle programs of record. In conjunction with the RAS-G Interoperability Profiles standard, JAUS based systems have seen significant opportunity over the past several years.
OpenJAUS’ SDK is the only commercially available implementation of the JAUS standard. As such, OpenJAUS is constantly working to improve our products to meet the needs of our customers and their programs as well. Today OpenJAUS is announcing the immediate release of a significant upgrade to our product, OpenJAUS SDK v5.0.0.
This latest release gives you all of the features you need to be SAE JAUS and IOPv2 standards compliant. With this release OpenJAUS has made significant changes to its product to address issues identified by its users and improve the quality of life for developers. Highlights of the new features include:
- Improved Config File format and New Configuration Editing Tool
- Addition of a default “User Configuration” file for storage and use of custom configuration options
- Change to versioning numbers to follow Semantic Versioning rules
- Updated and Improved Buffer API classes
- Addition of ‘Auto’ Network Interface option
- Ability to specify TTL value for multicast messages
- Addition of 64-bit version of premake4 (for Ubuntu x64)
If you are a customer with a current OpenJAUS license, you can get the update now at the OpenJAUS Client Portal. If you are not a customer, request a quote today to find out more. Check out the OpenJAUS SDK webpage for a full list of changes and improvements in OpenJAUS v5.0.0. | s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100529.8/warc/CC-MAIN-20231204115419-20231204145419-00539.warc.gz | CC-MAIN-2023-50 | 1,722 | 12 |
https://howtocode.net/2015/09/creating-endless-colored-text/ | code | I need to generate endless text running on the console, but I need it to be in both different foreground and background colors and show up in random locations on the console. I'm new to C# and could use some help. I know it will involve a while loop and the use of a random class in multiple instances… THANKS!!
by michiganmaude via /r/csharp | s3://commoncrawl/crawl-data/CC-MAIN-2019-30/segments/1563195525009.36/warc/CC-MAIN-20190717021428-20190717043428-00427.warc.gz | CC-MAIN-2019-30 | 344 | 2 |
https://kingcenter.stanford.edu/people/emanuele-colonnelli | code | Emanuele Colonnelli is a PhD candidate in Economics at Stanford University. His main research focuses on corporate finance and development economics, with a special interest in innovation and the constraints to firm productivity and growth. He is currently working on research projects in Brazil, Ghana, Uganda, and the U.S, he has research and work experience in several other countries including Bangladesh, Malawi, and India, and he is the recipient of a number of grants and awards. He holds a BSc in Economics from the University of Siena, an MSc in Economics from Bocconi University, and he spent an academic year visiting Pembroke College, Oxford University. Prior to joining Stanford, he worked as a researcher at IGIER (Bocconi University) and as director and founder of a non-profit organization.
The goal of this exploratory project is to shed light on a specific source of market frictions, namely low levels of corporate transparency, which is particularly relevant for low-income countries. First, we will conduct a mix of extensive face-to-face and phone interviews with managers of firms in the construction sector in Uganda, and all other agents and sub-contractors operating in their supply chain, to produce three main datasets to be linked to each other: 1) a dataset that describes all the links among firms and other agents, and measures of their strength, so as to create the full business network; 2) a novel dataset that will contain unique information about a set of variables related to corporate transparency at the establishment level; 3) a dataset that contains management practices and balance sheet- type of information to construct measures such as productivity, investment, innovation, wages, and employment. Second, we aim to provide preliminary evidence on the causal impact of firm transparency on firm performance, supply chain relationships and contractual terms, and market entry and exit. Our empirical strategy also allows us to analyze the relationship between network characteristics and firm’s level of productivity and management practices, and between network position and perceptions about firm transparency. We hope this research can generate interest in what we consider to be an ambitious but fundamental policy and research question, that of better understanding the role that soft information, trust, and transparency play for the growth of enterprises in developing countries.
Business corruption is pervasive in the economy. Public procurement in developing countries represents a prime example of this, especially in relation to the construction sector. Government agencies and public officials around the world spend substantial resources in purchasing goods and services, and investing in large construction projects. Yet, these investments are often plagued by corruption and inefficiency, which are considered to be one of the major barrier to the functioning of a competitive private sector and the growth of less developed economies. This project aims to estimate the extent of such frictions, and to understand the main causes behind them. A special emphasis is on evaluating a novel anti-corruption mechanism and studying its direct and spillover effects on the private sector. The goal of this project is to study an experimental anti-corruption program where the monitoring and punishment for the misconduct of public officials is randomly varied. | s3://commoncrawl/crawl-data/CC-MAIN-2019-22/segments/1558232257259.71/warc/CC-MAIN-20190523143923-20190523165923-00094.warc.gz | CC-MAIN-2019-22 | 3,415 | 3 |
https://ubuntu-mate.community/t/strange-problem-with-gtk-themes-window-border-theme-not-applying-with-compiz/2828 | code | Hi there people!
I am using the latest Ubuntu Mate desktop with Compiz enabled, in the previous distro i could easily use gtk themes with Compiz, everything applies fine except for the window borders… Some theme window borders work and others just fail…
Here´s an example of what happens when i log out and log back in:
I did not have this issue with the previous version of Mate…
How do i resolve this? | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296817650.14/warc/CC-MAIN-20240420122043-20240420152043-00543.warc.gz | CC-MAIN-2024-18 | 410 | 5 |
https://coderanch.com/t/397733/java/URL-butchering | code | but when you navigate to a page and you want to get to a higher level on the same site, you edit the URL, hack off the end to see if you can get to some kind of menu for the section of the site you are looking at.
Because we know that users try to understand URLs, we have an obligation to make them understandable. In particular, all directory names should be human-readable and should be either words or compound words that explain the meaning of the site structure. Also, your site structure should support URL- butchering where users hack off trailing parts of a URL in the hope of getting to an overview page at a higher place in the site hierarchy. Of course, it is better if users can navigate your site structure using your navigation buttons, but we know that a lot of users use URL-butchering as a shortcut: Such users should get reasonable results (typically a table-of-contents-like page listing the information available at the desired level of the hierarchy).
Thank you for triggering my curiosity enough that I looked up "URL Butchering" in google and found this nice explanation.
but if you mean pulling values from a url such as
the value of ubb, f, t. Then I might be able to lead you in the right direction.
i'm going to assume your using jsp's and the code is pretty simple..
String ubb = request.getParameter("ubb");
now how to do that. Well i'm not sure. I'd guess something along the lines of using substring and going from the start to the "?" maybe there is something in the api that can help ya out as well? java.sun.com | s3://commoncrawl/crawl-data/CC-MAIN-2018-13/segments/1521257647519.62/warc/CC-MAIN-20180320170119-20180320190119-00033.warc.gz | CC-MAIN-2018-13 | 1,546 | 8 |
https://community.spotify.com/t5/Desktop-Mac/Create-New-Playlist-Now-Leads-With-Album-Name-Not-Artist-Name/m-p/4574437/highlight/true | code | I've noticed that in the past two weeks or so, when saving an album or track as a new playlist (using Spotify desktop for Mac), the new playlist is created in the following format: Album/Track Name - Artist.
For the past... oh, I don't know, many years, new playlists were created with the following format: Artist - Album/Track Name.
Small nuisance, but really, really screws with the user's experience if that user has her or his playlists ordered by artist. Ya dig?
It's the little things, kids. Don't **bleep** with the little things. | s3://commoncrawl/crawl-data/CC-MAIN-2023-14/segments/1679296946584.94/warc/CC-MAIN-20230326235016-20230327025016-00388.warc.gz | CC-MAIN-2023-14 | 538 | 4 |
https://knowledge.broadcom.com/external/article/34943/no-acls-are-available-in-accountadmin-po.html | code | When I go to the AccountAdmin
portlet in UMP to add new users or accounts, the dropdown list of ACLs is empty, and the Edit ACL
button will be missing. ?In some (but not all) cases, a "green bug" icon will also appear in the portlet.
In Infrastucture Manager
the ACLs and user/account creation will appear to be fine and users will have no trouble logging in.
This is caused by a corrupted security.cfg
Most commonly, the problem is this line:
ldap_group = <none>
If you see this line in security.cfg, take the following steps to correct the issue:
1. Go into security.cfg and find which ACL has the line: ldap_group = <none> ?(e.g. Administrator)
2. Log into IM, go to Security->Manage ACLs?
3. Click 'New' to create a new ACL
4. Choose to Copy From the 'broken' ACL (e.g. Administrator) and give it a new name (e.g. Administrator_2)
5. Click OK to exit ACL management and save the ACLs
6. Now go back to Security->Manage ACLs in IM once more
7. delete the old, broken ACL (e.g. Administrator)
8. Create a new ACL again
9. Copy from the "new" ACL, (Administrator_2) and name it back to the same as the old ACL (e.g. Administrator)?
10. Check the box which says "make ACL permissions available to account/contacts"?
11. Delete the unneeded ACL (e.g. Administrator_2)
When you copy an ACL the "ldap_group" line is not copied - this therefore corrects the problem.
keywords: Failure loading debug payload: TypeError | s3://commoncrawl/crawl-data/CC-MAIN-2021-31/segments/1627046152156.49/warc/CC-MAIN-20210726215020-20210727005020-00378.warc.gz | CC-MAIN-2021-31 | 1,413 | 22 |
https://community.playstarbound.com/resources/sparkz.117/ | code | NOTICE: This mod is no longer being updated, but the content is still available (along with much more!) in my new collaborative mod, Starfoundry. Come check it out!
This mod was created to add wiring and logic functionality above and beyond that which is available in the vanilla game, by adding a variety of wire-interactive sensors, logic blocks, and actuators.
Sparkz comes in two release versions: a survival release which includes (more or less) balanced recipes for Sparkz items, and a creative release which allows any Sparkz or vanilla wiring items to be crafted for free from the Wiring Station or a Tabula Rasa. For the creative version simply use the download link above.
Download Sparkz 'Survival'
Tile Manipulating Objects
New in 2.1: Freeform Survey Markers to define areas of blocks for scanning and swapping. Areas can also be stored in Memory Cells.
New in 2.1: Layer Swapper swaps the foreground and background layers in a defined area
New in 2.1: Block Scanner and Block Printer for replicating structures! Scanned data can be sent directly to a printer or stored in Memory Cells.
Check out this simple demo video showing the Survey Markers, Layer Swapper, Block Scanner and Block Printer in action:
Numeric Wired Objects
Linked Displays (in two sizes and unlimited width!) to display numeric data:
3 types of sensors (Light Sensor, Wind Sensor, Thermometer) to monitor the world:
Liquid Sensor detects and identifies liquids (thanks to Synthlight for the suggestion!)
Scanner to collect data about nearby entities (interact to switch between Current HP and Max HP):
Counter can be incremented, decremented, or reset using binary signals, and outputs a numeric value:
(also added a Quick Wall Button with a fast pulse for incrementing counters)
Comparator performs logical operations (interact to switch modes):
Operator performs basic arithmetic operations (interact to switch modes):
Memory Cell stores data. Bottom nodes are for data in and out, top nodes are for binary signals to lock input and output
...and of course, you can still ruin your ship with 3 kinds of liquid Source Pipes!
I'm working on putting together some example machines to show some of the possible ways to use Sparkz. If you build something interesting, send me a screenshot and explanation so I can include it here!
This machine tracks the highest measurement of a sensor as well as the time since that measurement was recorded. A Light Sensor (1) sends data to one side of Comparator (2), which compares it to the value stored in a Memory Cell (3). If the measured value is greater than the stored value, then the Comparator sends the new value to the Memory Cell as data, and also sends a binary signal to reset a Counter (5) using a Binarizer (6) to strip the numerical data and prevent the counter value from being replaced with the sensor data. The latest total count is stored in a second Memory Cell (4). To reset the record, a Button and NOT gate are used to briefly unlock the output on another Memory Cell (7) which contains a 0 data and will overwrite the record Memory Cell (3).
If you have any feedback or suggestions about this mod, please let me know! I'm working on improving documentation, so I apologize if some of the objects aren't very well explained right now.
- Mod Pack Permissions:
- Anyone can use this mod in their mod compilation without the author's consent.
- Mod Assets Permissions:
- Anyone can alter/redistribute the mod's assets without the author's consent.
Welcome to the official Starbound Mod repository, Guest! Not sure how to install your mods? Check out the installation guide or check out the modding help thread for more guides.Dismiss Notice
Outdated Mods have been moved to their own category! If you update your mod please let a moderator know so we can move it back to the active section.
Outdated Sparkz v2.1d
A fresh variety of wired objects: sensors, displays, numeric logic, scanners, printers, and more! | s3://commoncrawl/crawl-data/CC-MAIN-2020-45/segments/1603107880401.35/warc/CC-MAIN-20201022225046-20201023015046-00198.warc.gz | CC-MAIN-2020-45 | 3,951 | 31 |
https://forum.duolingo.com/comment/2264640/Problem-I-can-no-longer-see-the-sentence-versions-in-Immersion | code | Problem: I can no longer see the sentence versions in Immersion
I use Duolingo in Safari on an iPad (NOT the app version). When I click on a sentence in Immersion and click the arrow to see the previous versions for that sentence, it now only shows me the username for each previous version, but NOT the actual sentence translation. (didn't use to have this problem)
I can refresh the webpage, click on a sentence and see the sentence versions, but this only works for ONE sentence. To see the next sentence, I have to refresh the page - again - to see the sentence versions. BUT this only works for the first sentence and I have to refresh AGAIN! Quite aggravating!
I tried completely closing Safari and re-opening the Safari app, but it did not help.
Please help! Any ideas? | s3://commoncrawl/crawl-data/CC-MAIN-2021-17/segments/1618038069133.25/warc/CC-MAIN-20210412175257-20210412205257-00375.warc.gz | CC-MAIN-2021-17 | 776 | 5 |
https://forum.solidworks.com/thread/39986 | code | I have just been given a new workstation that i thought would cure all my problems, right, and I am still having extreamly long rebuild times with some of my models so I thought I would ask your opinion on our machines. Maybe we are overlooking something.
SW 2010 sp4
Dell workstation running windows 7 pro
Xeon CPU X5650 with 2 2.67 GHz processors
24 GB RAM
Nvida Quadro 5000 card with 14592 MB
I have an assembly with about 10 configurations and maybe 1500 parts. As I typed this message I was switching from one configuration with several items suppressed to the default with nothing suppressed and it took aaround 7 min. for the model to regenerate. Seems very slow to me. Is there something I should look at? I do have this assembly speedpaked for when it goes into the next assembly up and that helps but sometimes we need the full model. | s3://commoncrawl/crawl-data/CC-MAIN-2020-50/segments/1606141204453.65/warc/CC-MAIN-20201130004748-20201130034748-00420.warc.gz | CC-MAIN-2020-50 | 844 | 7 |
https://jazzoklahoma.com/product/m81462-lv-side-up-card-holder-brown/ | code | The LV Side-Up Card Holder features a stylish and functional design in Monogram and Monogram Reverse canvas. There are multiple vertical card compartments and large horizontal compartments inside, suitable for storing bills, banknotes, credit cards, business cards and transportation cards, adding a practical choice for daily life.
11.7 x 8.5 x 0.7 cm
(length x height x width)
Monogram and Monogram Reverse coated canvas
Grained calfskin lining
6 card compartments: 3 large horizontal compartments, 3 medium vertical compartments | s3://commoncrawl/crawl-data/CC-MAIN-2024-18/segments/1712296818474.95/warc/CC-MAIN-20240423095619-20240423125619-00326.warc.gz | CC-MAIN-2024-18 | 531 | 6 |
https://www.petrockblock.com/forums/reply/31818/ | code | Yes!!!! Okay so I have had a little success. It appears that the issue is down to the
/opt/retropie/emulators/uae4rpi/startAmigaDisk.sh not creating the
If you first navigate to the emula/tor directory using:
… then when in the directory create the symbolic link so it is in the correct location with:
ln -s /home/pi/RetroPie/roms/amiga/<your .ADF> df0.adf
… this creates a symbolic link to the .adf called df0.adf in the emulators directory where the emulator is looking for it!
You can then run the emulator with the command:
PHEW! Right so next up is to figure out why that script isn’t working. As it is it is creating the symbolic link to the rom directory and not to a specific file.
I realise this might not be news to some but I figured it might help if I document as I go from my complete noob prospective.
… that’s it for tonight! | s3://commoncrawl/crawl-data/CC-MAIN-2022-33/segments/1659882572063.65/warc/CC-MAIN-20220814173832-20220814203832-00516.warc.gz | CC-MAIN-2022-33 | 850 | 10 |
https://www.gamedev.net/blogs/entry/1358331-untitled/ | code | 1) its for the forced tutorial you go through when you start the game. includes explanations of the game mechanics and stuff, basically answers all the questions I've been asked before by other people etc.
2) no it can't be accessed yet lols. I need a day or two more (lol, discovered I didn't code the script wizard yet, and I needs it) before its all done. should be nice.
3) lol that picture is gonna break my margins [sad] | s3://commoncrawl/crawl-data/CC-MAIN-2018-43/segments/1539583517495.99/warc/CC-MAIN-20181023220444-20181024001944-00458.warc.gz | CC-MAIN-2018-43 | 426 | 3 |
https://embruns.net/logbook/2006/04/27.html | code | And guess what software Osama Bin Laden uses on his laptop?
If you guessed it was Linux you would be 100% right. Osama uses Linux because he knows designed to counterfit DVDs, curcumventing the Digital Millenium Copyright Act, and defraud companies like Disney.
Next time somebody asks you how Al Queda agents pay for their rifles and rocket launchers, you can tell them that foreign hackers make software called Linux which helps them steal from Americans.
This Linux problem is a growing issue, and one that conservative Americans cannot afford to ignore. Fortunately Microsoft have prepared a great deal of information to help computer users get away from this menace. But there is something you can do to help keep American #1 in the computer business:
If one of your friends is using Linux or may be tempted to try it show them this article. Explain that Linux is a genuine threat and that by using it they may be opening their computer to Chinese hackers.
If you see a company using Linux, it may be that they have not paid for this software. Report them to the Business Software Alliance who have the legal authority to inspect any company’s computers for illegal programs like Linux.
[ShelleyTheRepublican.com : “Linux: A European threat to our computers (by Tristan)”.]
Bref, Linux est un virus marxiste. Vous aurez été prévenus. | s3://commoncrawl/crawl-data/CC-MAIN-2023-50/segments/1700679100227.61/warc/CC-MAIN-20231130130218-20231130160218-00404.warc.gz | CC-MAIN-2023-50 | 1,347 | 8 |
https://circuits.io/circuits/203375 | code | Update your browser to view this website correctly. Update my browser now
Intended to provide a high, but variable current from a battery to power a section of nichrome wire. Idea is to step down the voltage from a 9v battery in order to multiply the current. Multiplied current would circumvent the inherent internal resistance of the battery and seeks to limit power loss at the point of the battery. | s3://commoncrawl/crawl-data/CC-MAIN-2018-34/segments/1534221209884.38/warc/CC-MAIN-20180815043905-20180815063905-00444.warc.gz | CC-MAIN-2018-34 | 402 | 2 |
https://opendata.stackexchange.com/questions/13147/beijing-traffic-data | code | I'm looking for a reliable source for traffic data in Beijing. In some papers that I've read, a particular dataset is mentioned. From the articles:
"The traffic network is located between the Second Ring Road and Third Ring Road in Beijing."
" 2-min travel speed data collected from three remote traffic microwave sensors located on a southbound segment of a fourth ring road in Beijing City."
" a dataset consisting of probe vehicle data collected in the urban network of Beijing, China, during one week from June 1st (Monday) to 7th (Sunday), 2015"
"north-east transportation network of Beijing"
I've searched the internet to find this dataset of vehicle speed in Beijing and found the following links in Chinese:
Unfortunately, Chinese is not my native language and I cannot explore these sites easily.
Can someone fluent in Chinese explore these sites and see if I can request traffic speed data of previous months? Can I email them and request this data?
Also, here is a contact and some emails in this link: http://www.bjjtgl.gov.cn/jgj/96629/index.html | s3://commoncrawl/crawl-data/CC-MAIN-2022-33/segments/1659882572198.93/warc/CC-MAIN-20220815175725-20220815205725-00643.warc.gz | CC-MAIN-2022-33 | 1,059 | 9 |
https://en.wikipedia.org/wiki/C-- | code | This article needs additional citations for verification. (April 2016) (Learn how and when to remove this template message)
|Designed by||Simon Peyton Jones and Norman Ramsey|
|Typing discipline||static, weak|
C-- (pronounced cee minus minus) is a C-like programming language. Its creators, functional programming researchers Simon Peyton Jones and Norman Ramsey, designed it to be generated mainly by compilers for very high-level languages rather than written by human programmers. Unlike many other intermediate languages, its representation is plain ASCII text, not bytecode or another binary format.
C-- is a "portable assembly language", designed to ease the task of implementing a compiler which produces high quality machine code. This is done by having the compiler generate C-- code, delegating the harder work of low-level code generation and optimisation to a C-- compiler.
Work on C-- began in the late 1990s. Since writing a custom code generator is a challenge in itself, and the compiler back ends available to researchers at that time were complex and poorly documented, several projects had written compilers which generated C code (for instance, the original Modula-3 compiler). However, C is a poor choice for functional languages: it does not guarantee tail call optimization, or support accurate garbage collection or efficient exception handling. C-- is a simpler, tightly-defined alternative to C which does support all of these things. Its most innovative feature is a run-time interface which allows writing of portable garbage collectors, exception handling systems and other run-time features which work with any C-- compiler.
The language's syntax borrows heavily from C. It omits or changes standard C features such as variadic functions, pointer syntax, and aspects of C's type system, because they hamper certain essential features of C-- and the ease with which code-generation tools can produce it.
The name of the language is an in-joke, indicating that C-- is a reduced form of C, in the same way that C++ is basically an expanded form of C. (In C-like languages, "--" and "++" are operators meaning "decrement" and "increment".)
C-- is a target platform for the Glasgow Haskell Compiler. Some of C--'s developers, including Simon Peyton Jones, João Dias, and Norman Ramsey, work or have worked on the Glasgow Haskell Compiler.
The C-- type system is deliberately designed to reflect constraints imposed by hardware rather than conventions imposed by higher-level languages. In C--, a value stored in a register or memory may have only one type: bit vector. However, bit vector is a polymorphic type and may come in several widths, e.g., bits8, bits32, or bits64. In addition to the bit-vector type, C-- also provides a Boolean type bool, which can be computed by expressions and used for control flow but cannot be stored in a register or in memory. As in an assembly language, any higher type discipline, such as distinctions between signed, unsigned, float, and pointer, is imposed by the C-- operators or other syntactic constructs in the language.
- Nordin, Thomas; Jones, Simon Peyton; Iglesias, Pablo Nogueira; Oliva, Dino (1998-04-23). "The C– Language Reference Manual".
- Reig, Fermin; Ramsey, Norman; Jones, Simon Peyton (1999-01-01). "C–: a portable assembly language that supports garbage collection".
- "An improved LLVM backend". | s3://commoncrawl/crawl-data/CC-MAIN-2019-35/segments/1566027315936.22/warc/CC-MAIN-20190821110541-20190821132541-00523.warc.gz | CC-MAIN-2019-35 | 3,385 | 13 |
https://archive.sap.com/discussions/thread/1797047 | code | My report is made up of several column, none of which are fully populated, how can I get a count of how many entries there are in my report? Every time I do a count of a specific column it does not count the blank entries so doesn't reflect the number of rows. I need a running count and final count as my report is hundreds of pages long.
if it is a webi report use the below forumla =Count([any object name]; IncludeEmpty)
it will also count blank rows | s3://commoncrawl/crawl-data/CC-MAIN-2019-13/segments/1552912207146.96/warc/CC-MAIN-20190327000624-20190327022624-00100.warc.gz | CC-MAIN-2019-13 | 454 | 3 |
https://resource.payrix.com/resources/merchant-recurring-payments | code | The Recurring Payments page shows information about recurring payments that occur through subscriptions or other repeated scheduled transactions.
Navigate to the Recurring Payments page by clicking Recurring Payments under Payments in the left-hand navigation panel.
Recurring Payments Features
Recurring Payments Table
Locate individual recurring payments in the main table on the Recurring Payments page. Individual recurring payments are listed by row. The default view includes the following information:
Recurring Payments Table Column Name
The customer ID.
Active or Inactive. Hover over the icon to view details about the status.
The total dollar amount of the recurring payment.
How often the recurring payment occurs.
The date that the first payment was made.
The date of the last scheduled payment.
When selected, the grey triangle expands the row to display additional information about the recurring payment.
Recurring Payments Table Action
Access more information about a specific recurring payment by clicking any information for an individual payment in the table to open the Subscription Details page.
Recurring Payments Table Customization Options
You can customize your view using the options found at the top of the table. View the Table Search and Sort Instructions for instructions on customizing, sorting, or searching tables.
Expand the section below to view a complete list of the data that you can display on the Recurring Payments table:
Max. Consecutive Failures
Merchant Entity ID
Custom TIN Status
DBA - Statement Descriptor
Last Transaction Date
Annual Card Sales
Click the links or items on the Recurring Payments page to access any of the following pages: | s3://commoncrawl/crawl-data/CC-MAIN-2024-10/segments/1707947475701.61/warc/CC-MAIN-20240301193300-20240301223300-00029.warc.gz | CC-MAIN-2024-10 | 1,687 | 25 |
http://www.newgrounds.com/portal/view/569146?footer_feature=channels | code | Exercise your mind with these challenging negotiation games!
Saving your school from gun-toting goth kids is just the tip of this iceburg!
In the year of 20XX, the world has been destroyed. These guys are all that is left.
This is my first flash game and I'm just getting started with flash. Try to beat my record of 28 seconds :) | s3://commoncrawl/crawl-data/CC-MAIN-2014-23/segments/1405997894319.36/warc/CC-MAIN-20140722025814-00226-ip-10-33-131-23.ec2.internal.warc.gz | CC-MAIN-2014-23 | 330 | 4 |
https://jackomix.neocities.org/archive/rocketmix/junk/index.html | code | I have a folder on my site full of complete junk. For some reason I like to go to other peoples sites and explore their junk folder, I also like the idea of having my own junk folder. So it all works out. Now since i'm lazy of course this page will probably miss a file or two. Anyways, explore! (Note: Not all folders have been added, folders will have no dots beside them as well.)
wiisettings - A mirror of thisisawebsite.xyz. Which hosts the HTML dump of the Wii settings menu, crazy huh? Also the original website might be a bit more updated.
∀ - AAAA∀∀∀∀∀∀AAAAAA
- my site - requested by lancer502
- aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.txt - aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
- achivements.txt - Stuff I done that i'm proud of.
- ahk.txt - I was messing around with trying to bypass the file type restrictions by renaming them to text files (actually works but just upload to like catbox.moe or something) but ahk is just a text file that the program AutoHotKey and run. So it's just the default text. :/
- epikprank.txt - I watched a video and they messed around with chat support, the website used a thing called Livechat, I was able to get to a site that used it and pranked them, not the best but it was a funny start. By the way, the website was a car selling thing.
- epikpranktoo.txt - Another chat support prank, but I did it for fitbit. It's pretty funny and the best prankcall I ever done in my life! :D
- gianttext.txt - The program ShareX (get it) has a QR code generator, I decided I would test its limits and type a giant paragraph. It then wouldn't work and I had to close and open the QR code generator. This includes a link to the picture of the QR code and the text it shows.
- html.html - There's this guy who made a page where it's like a giant cool text string basically, you can also put in your own text. But I guess my clipboard is dumb and doesn't paste the spaces and what not, so it's just giant wall of the string.
- index.html - This page ya doofus.
- nintelascii.txt - My friend closed down his site (he came back btw :D) and I really liked his ascii page, I made a archive of his site before he could delete it and copied the ascii code to this text file.
- thanks bob ross.png - I followed 14 minutes of bob ross doing it all in MS paint. | s3://commoncrawl/crawl-data/CC-MAIN-2021-21/segments/1620243991514.63/warc/CC-MAIN-20210518191530-20210518221530-00112.warc.gz | CC-MAIN-2021-21 | 2,379 | 14 |
https://www.programmableweb.com/sdk/satori-javascript-sdk-satori/comments | code | April 28, 2017
View all 1 Followers
View all 963 Related Articles
Related Articles (963)
The Cloud Foundry Foundation built a team to develop a new Service Broker API. The team includes individuals from tech industry leaders who will come together to build a single API that provides services to apps running on cloud native platforms. The project hopes for a new industry standard.
Microsoft as expected last week announced that it would be integrating its Yammer social networking and Skype unified communications services with Microsoft Dynamics CRM software. This week Microsoft took that effort a step further via an alliance with Moxie Software under which another social networking application for the enterprise is being integrated within Microsoft Dynamics.
Amazon this week announced that it has added support for S3 Select in the AWS SDK for Ruby. Amazon S3 Select allows developers to retrieve subsets of data from objects stored in S3 using simple SQL expressions. The AWS SDK for Ruby now allows developers to use the S3 #select_object_content API. | s3://commoncrawl/crawl-data/CC-MAIN-2021-21/segments/1620243988774.96/warc/CC-MAIN-20210507025943-20210507055943-00150.warc.gz | CC-MAIN-2021-21 | 1,062 | 7 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.